diff options
-rw-r--r-- | meta-skeleton/recipes-skeleton/service/service_0.1.bb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meta-skeleton/recipes-skeleton/service/service_0.1.bb b/meta-skeleton/recipes-skeleton/service/service_0.1.bb index a3ad6ccb2f..c5cd7a97bc 100644 --- a/meta-skeleton/recipes-skeleton/service/service_0.1.bb +++ b/meta-skeleton/recipes-skeleton/service/service_0.1.bb | |||
@@ -2,16 +2,12 @@ SUMMARY = "The canonical example of init scripts" | |||
2 | SECTION = "base" | 2 | SECTION = "base" |
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYRIGHT;md5=349c872e0066155e1818b786938876a4" | 4 | LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYRIGHT;md5=349c872e0066155e1818b786938876a4" |
5 | RDEPENDS_${PN} = "initscripts" | ||
6 | PR = "r0" | ||
7 | 5 | ||
8 | SRC_URI = "file://skeleton \ | 6 | SRC_URI = "file://skeleton \ |
9 | file://skeleton_test.c \ | 7 | file://skeleton_test.c \ |
10 | file://COPYRIGHT \ | 8 | file://COPYRIGHT \ |
11 | " | 9 | " |
12 | 10 | ||
13 | CONFFILES_${PN} += "${sysconfdir}/init.d/skeleton" | ||
14 | |||
15 | do_compile () { | 11 | do_compile () { |
16 | ${CC} ${WORKDIR}/skeleton_test.c -o ${WORKDIR}/skeleton-test | 12 | ${CC} ${WORKDIR}/skeleton_test.c -o ${WORKDIR}/skeleton-test |
17 | } | 13 | } |
@@ -30,3 +26,6 @@ do_install () { | |||
30 | install -m 0755 ${WORKDIR}/skeleton-test ${D}${sbindir}/ | 26 | install -m 0755 ${WORKDIR}/skeleton-test ${D}${sbindir}/ |
31 | } | 27 | } |
32 | 28 | ||
29 | RDEPENDS_${PN} = "initscripts" | ||
30 | |||
31 | CONFFILES_${PN} += "${sysconfdir}/init.d/skeleton" | ||