From: Koen Kooi Date: Mon, 23 Mar 2009 16:26:37 +0000 (+0100) Subject: busybox: fix linuxrc link and put it in a seperate package X-Git-Tag: Release-2010-05/1~3796^2~52^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5261978d6f9600640c1ea4f1393e18772d4f9657;p=openembedded.git busybox: fix linuxrc link and put it in a seperate package * runtime tested on a beagleboard --- diff --git a/recipes/busybox/busybox.inc b/recipes/busybox/busybox.inc index cb8eb53216..acf47f2178 100644 --- a/recipes/busybox/busybox.inc +++ b/recipes/busybox/busybox.inc @@ -142,10 +142,10 @@ pkg_postinst_${PN} () { # so the update-alternatives script will get the utilities it needs # (update-alternatives have no problem replacing links later anyway) test -n 2> /dev/null || alias test='busybox test' - if test "x$D" = "x"; then while read link; do if test ! -h "$link"; then case "$link" in /*/*/*) to="../../bin/busybox";; /bin/*) to="busybox";; /*/*) to="../bin/busybox";; esac; busybox ln -s $to $link; fi; done