# Copyright 1999-2008 Gentoo Foundation; 2008 Chris Gianelloni
# Distributed under the GPL v2
+ 29 Jul 2008; Andrew Gaffney <agaffney@gentoo.org> defaults/udhcpc.scripts:
+ Add support to udhcpc.scripts for default route and DNS servers/domain
+
29 Jul 2008; Andrew Gaffney <agaffney@gentoo.org> defaults/initrd.scripts:
Remove check for >=2.6 for mounting sysfs
#[ -n "$dns" ] && echo "$dns" > /dns
busybox ifconfig $interface $ip $BROADCAST $NETMASK
+ if [ -n "${router}" ]
+ then
+ for i in ${router}
+ do
+ busybox route add default gw ${i}
+ done
+ fi
+ [ -n "$domain" ] && echo "domain ${domain}" >> /etc/resolv.conf
+ if [ -n "${dns}" ]
+ then
+ for i in ${dns}
+ do
+ echo "nameserver ${i}" >> /etc/resolv.conf
+ done
+ fi
;;
deconfig)
busybox ifconfig $interface 0.0.0.0