diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2006-02-25 09:17:02 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-25 09:17:02 +0000 |
commit | 093295ccf292b34e7a9a5d4a5bc5a5198e1c5853 (patch) | |
tree | 5b3184d2c015a1724a00cb03825144b8a393d221 /packages/busybox/busybox_1.01.bb | |
parent | f64674d824f94bfac71bc9768e7052614a1a41d8 (diff) |
Add sysctl applet to slugos
Diffstat (limited to 'packages/busybox/busybox_1.01.bb')
-rw-r--r-- | packages/busybox/busybox_1.01.bb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/busybox/busybox_1.01.bb b/packages/busybox/busybox_1.01.bb index 3173294398..693ead532a 100644 --- a/packages/busybox/busybox_1.01.bb +++ b/packages/busybox/busybox_1.01.bb @@ -10,7 +10,7 @@ HOMEPAGE = "http://www.busybox.net" LICENSE = "GPL" SECTION = "base" PRIORITY = "required" -PR = "r7" +PR = "r8" SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \ file://udhcppidfile.patch;patch=1 \ @@ -39,6 +39,7 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \ file://syslog.conf \ file://mount.busybox \ file://umount.busybox" +SRC_URI_slugos += " file://sysctl.conf " S = "${WORKDIR}/busybox-${PV}" @@ -130,6 +131,11 @@ do_install () { install -m 0644 ${S}/busybox.links ${D}${sysconfdir} } +do_install_append_slugos() +{ + install -m 0644 ${WORKDIR}/sysctl.conf ${D}${sysconfdir} +} + pkg_postinst_${PN} () { # If we are not making an image we create links for the utilities that doesn't exist # so the update-alternatives script will get the utilities it needs |