diff options
author | Mike Westerhof <mwester@dls.net> | 2006-05-25 05:24:21 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-25 05:24:21 +0000 |
commit | f0b2f4dbe65e29fe5d2acabdfdb3478271939823 (patch) | |
tree | d104767ea53d477789f2454db61b471484011012 /packages/nslu2-binary-only/unslung-rootfs_2.3r63.bb | |
parent | 2e3d6f2d0fe091f0b3442ad217e18d07026125a8 (diff) | |
parent | cb1f96f7355f53add6ca196a078b577c3d7f07f5 (diff) |
merge of 6d9a6d263913c8c725780872fe2f13329fcfb1b8
and e974c19c3971f18d2c208cce51bc722e476920be
Diffstat (limited to 'packages/nslu2-binary-only/unslung-rootfs_2.3r63.bb')
-rw-r--r-- | packages/nslu2-binary-only/unslung-rootfs_2.3r63.bb | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/packages/nslu2-binary-only/unslung-rootfs_2.3r63.bb b/packages/nslu2-binary-only/unslung-rootfs_2.3r63.bb index 1c805a6975..ff0172d84d 100644 --- a/packages/nslu2-binary-only/unslung-rootfs_2.3r63.bb +++ b/packages/nslu2-binary-only/unslung-rootfs_2.3r63.bb @@ -1,6 +1,6 @@ SECTION = "base" -PR = "r12" +PR = "r13" DEPENDS = "nslu2-linksys-libs nslu2-linksys-sambacodepages" @@ -31,6 +31,7 @@ SRC_URI = "http://nslu.sf.net/downloads/nslu2-linksys-ramdisk-2.3r63-2.tar.bz2 \ file://rc.reset_usrgrpshare-diversion.patch;patch=1 \ file://rc.rstimezone-diversion.patch;patch=1 \ file://rc.samba-diversion.patch;patch=1 \ + file://rc.samba-syntaxfix.patch;patch=1 \ file://rc.sysinit-diversion.patch;patch=1 \ file://rc.thttpd-diversion.patch;patch=1 \ file://rc.xinetd-diversion.patch;patch=1 \ @@ -43,6 +44,7 @@ SRC_URI = "http://nslu.sf.net/downloads/nslu2-linksys-ramdisk-2.3r63-2.tar.bz2 \ file://mount_usbdevfs.patch;patch=1 \ file://security-fixes.patch;patch=1 \ file://rc.sysinit-clean_var.patch;patch=1 \ + file://rc.sysinit-cpbug.patch;patch=1 \ file://rc.modules-nls.patch;patch=1 \ file://telnet-passwd.patch;patch=1 \ file://upgrade.htm \ @@ -144,6 +146,19 @@ do_compile () { # 950 (Chinese BIG-5) rm -f ${S}/etc/samba/codepages/codepage.950 # ISO8859-1 (Latin 1) - keep + + # /bin/killall and /usr/bin/killall are both symlinks to busybox. This + # is a problem if killall is ever replaced by slingbox or a native utility. + # Fix by making /bin/killall (the wrong place) a symlink to /usr/bin/killall. + rm -f ${S}/bin/killall + ln -s ../usr/bin/killall ${S}/bin/killall + + # There are two identical binary copies of "date" on the image. Replace + # the one in /usr/sbin with a symlink to the one in /bin. This saves a + # bit of flash space, and makes it possible to replace the date binary with + # a link to busybox or slingbox at some point. + rm -r ${S}/usr/sbin/date + ln -s ../../bin/date ${S}/usr/sbin/date } do_install () { |