Add support to udhcpc.scripts for default route and DNS servers/domain

cleanup-cruft
agaffney 17 years ago
parent d1cac89e98
commit 2f1aaf4995

@ -2,6 +2,9 @@
# 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

@ -9,6 +9,21 @@ case ${1} in
#[ -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

Loading…
Cancel
Save