commit 358b629e5675c012269db9b8f2ed2e55ecc860f7 parent d510ab199c1eea3fa4ad764e9a8e601458134acb Author: sin <sin@2f30.org> Date: Thu, 5 Sep 2013 13:28:34 +0100 Move from toybox to busybox Until we have all the commands we need in sbase + ubase, use busybox for the extra commands. Diffstat:
A | pkgs/busybox | | | 14 | ++++++++++++++ |
D | pkgs/toybox | | | 12 | ------------ |
2 files changed, 14 insertions(+), 12 deletions(-)
diff --git a/pkgs/busybox b/pkgs/busybox @@ -0,0 +1,14 @@ +url=$mirror/$pkg + +# Fetch package +wget -c $url -O src/$pkg + +# Install package +pushd src/ +chmod +x $pkg +cp $pkg $root/bin +pushd $root/bin +ln -s busybox ifconfig +ln -s busybox nc +popd +popd diff --git a/pkgs/toybox b/pkgs/toybox @@ -1,12 +0,0 @@ -# Fetch package -wget -c http://www.landley.net/toybox/bin/toybox-x86_64 -O src/$pkg - -# Install package -pushd src/ -chmod +x $pkg -cp $pkg $root/bin -pushd $root/bin -ln -s toybox ifconfig -ln -s toybox nc -popd -popd