diff options
author | Bruno Randolf <br1@subnet.at> | 2004-09-23 09:55:31 +0000 |
---|---|---|
committer | Bruno Randolf <br1@subnet.at> | 2004-09-23 09:55:31 +0000 |
commit | 5bac22ce6fe95c9608604d5a91a923fdf5777b5e (patch) | |
tree | f2d8b2530cae0218f22216041e1da231dfad1233 /busybox/busybox_1.00-rc3.oe | |
parent | 8a20381d18a348fb5445be117cda24241f2fc3ea (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into null.(none):/data/mtx/oe/oe.write/packages
2004/09/23 11:55:05+02:00 (none)!br1
moved nylon defconfig into busybox-1.00-rc3
added init scripts for cron and httpd
moved init scripts into files/
BKrev: 41529d931m_9LTwcHDj4AF1Og5T-BQ
Diffstat (limited to 'busybox/busybox_1.00-rc3.oe')
-rw-r--r-- | busybox/busybox_1.00-rc3.oe | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/busybox/busybox_1.00-rc3.oe b/busybox/busybox_1.00-rc3.oe index 318cb761df..2c84dc0c9f 100644 --- a/busybox/busybox_1.00-rc3.oe +++ b/busybox/busybox_1.00-rc3.oe @@ -10,7 +10,7 @@ system." LICENSE = "GPL" SECTION = "base" PRIORITY = "required" -PR = "r2" +PR = "r3" # file://busybox-1.00-pre10-fuser.patch;patch=1 SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \ @@ -18,9 +18,13 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz \ file://add-getkey-applet.patch;patch=1 \ file://bb-iproute-iftunnel.patch;patch=1 \ file://defconfig \ - file://syslog \ + file://cron \ + file://httpd \ + file://syslog \ file://hwclock.sh" + S = "${WORKDIR}/busybox-${PV}" + export EXTRA_CFLAGS = "${CFLAGS}" EXTRA_OEMAKE_append = " CROSS=${HOST_PREFIX}" FILES_${PN} += " ${datadir}/udhcpc" @@ -43,6 +47,8 @@ do_compile () { do_install () { install -d ${D}/etc/init.d oe_runmake 'PREFIX=${D}' install + install -m 0755 ${WORKDIR}/syslog ${D}/etc/init.d/cron + install -m 0755 ${WORKDIR}/syslog ${D}/etc/init.d/httpd install -m 0755 ${WORKDIR}/syslog ${D}/etc/init.d/syslog install -m 0755 ${WORKDIR}/hwclock.sh ${D}/etc/init.d/hwclock.sh install -d ${D}${datadir}/udhcpc |