wok-current view busybox/stuff/zcip.script @ rev 6928
Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Oct 22 22:36:22 2010 +0000 (2010-10-22) |
parents | 72fa50265748 |
children |
line source
1 #!/bin/sh
3 [ "$1" = "init" ] && exit 0
4 [ -n "$ip" ] || exit 1
5 case "$1" in
6 config) ifconfig $interface $ip netmask 255.255.0.0 up
7 for i in /etc/ipup.d/*; do
8 [ -e $i ] && . $i $interface $ip
9 done
10 ;;
11 deconfig) ifconfig $interface down
12 for i in /etc/ipdown.d/*; do
13 [ -e $i ] && . $i $interface
14 done
15 ;;
16 *) exit 1;;
17 esac