1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-07-01 08:21:22 +00:00
morpheus/pkgs/busybox
2013-09-25 19:40:40 +01:00

55 lines
978 B
Plaintext

url=$mirror/busybox
fetch() {
wget -c $url -O src/busybox
}
install() {
# Install package
pushd src/
chmod +x busybox
cp busybox $root/bin
pushd $root
ln -s bin/busybox init
popd
pushd $root/bin
ln -s busybox addgroup
ln -s busybox adduser
ln -s getty agetty
ln -s busybox bzip2
ln -s busybox delgroup
ln -s busybox deluser
ln -s busybox diff
ln -s busybox du
ln -s busybox dd
ln -s busybox ed
ln -s busybox find
ln -s busybox fsck
ln -s busybox fuser
ln -s busybox getty
ln -s busybox gzip
ln -s busybox hexdump
ln -s busybox hwclock
ln -s busybox ifconfig
ln -s busybox kbd_mode
ln -s busybox killall5
ln -s busybox less
ln -s busybox login
ln -s busybox nc
ln -s busybox passwd
ln -s busybox ping
ln -s busybox pkill
ln -s busybox poweroff
ln -s busybox reboot
ln -s busybox sysctl
ln -s busybox tac
ln -s busybox telnet
ln -s busybox tftp
ln -s busybox tftpd
ln -s busybox top
ln -s busybox vi
ln -s busybox wget
popd
popd
}