diff options
Diffstat (limited to 'recipes/update-rc.d/update-rc.d_0.7.bb')
-rw-r--r-- | recipes/update-rc.d/update-rc.d_0.7.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes/update-rc.d/update-rc.d_0.7.bb b/recipes/update-rc.d/update-rc.d_0.7.bb new file mode 100644 index 0000000000..dd370e6ff8 --- /dev/null +++ b/recipes/update-rc.d/update-rc.d_0.7.bb @@ -0,0 +1,23 @@ +SECTION = "base" +PRIORITY = "standard" +DESCRIPTION = "Manage symlinks in /etc/rcN.d" +LICENSE = "GPL" +S = "${WORKDIR}/update-rc.d" +PR = "r1" + +SRC_URI = "${HANDHELDS_CVS};module=apps/update-rc.d;tag=r0_7 \ + file://add-verbose.patch;patch=1" + +PACKAGE_ARCH = "all" + +do_compile() { +} + +do_stage() { + install -m 0755 ${S}/update-rc.d ${STAGING_BINDIR_NATIVE}/ +} + +do_install() { + install -d ${D}${sbindir} + install -m 0755 ${S}/update-rc.d ${D}${sbindir}/update-rc.d +} |