summaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-02-19 05:27:36 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-02-19 05:27:36 +0000
commitcc9443e4a7091af6efa86094573a4bb203c7f909 (patch)
treea47e9a2f1e8f30591af3cffae97fc0b6144a1290 /package/base-files
parent8ec0044b32d2fe4f657609ae9f6d6cccc2ee8124 (diff)
[package] base-files: allow option dns to override dhcp assigned dns servers
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14562 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rw-r--r--package/base-files/Makefile2
-rwxr-xr-xpackage/base-files/files/usr/share/udhcpc/default.script33
2 files changed, 25 insertions, 10 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile
index 41dc31067..437952d72 100644
--- a/package/base-files/Makefile
+++ b/package/base-files/Makefile
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=base-files
-PKG_RELEASE:=14
+PKG_RELEASE:=15
PKG_FILE_DEPEND:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
diff --git a/package/base-files/files/usr/share/udhcpc/default.script b/package/base-files/files/usr/share/udhcpc/default.script
index 0eb044c51..198ef13c0 100755
--- a/package/base-files/files/usr/share/udhcpc/default.script
+++ b/package/base-files/files/usr/share/udhcpc/default.script
@@ -14,12 +14,21 @@ hotplug_event() {
config_get proto $ifc proto
[ "$proto" = "dhcp" ] || continue
[ ifup = "$1" ] && {
+ config_get userdns "$ifc" dns
+ [ -n "$userdns" ] && {
+ for i in $userdns; do
+ echo "custom dns $i"
+ echo "nameserver $i" >> "${RESOLV_CONF}.tmp"
+ done
+ dns="$userdns"
+ }
uci_set_state network "$ifc" ipaddr "$ip"
uci_set_state network "$ifc" netmask "${subnet:-255.255.255.0}"
uci_set_state network "$ifc" dnsdomain "$domain"
uci_set_state network "$ifc" dns "$dns"
uci_set_state network "$ifc" gateway "$router"
}
+
env -i ACTION="$1" INTERFACE="$ifc" DEVICE="$ifname" PROTO=dhcp /sbin/hotplug-call iface
done
}
@@ -45,16 +54,9 @@ case "$1" in
echo "deleting old routes"
$(route -n | awk '/^0.0.0.0\W{9}('$valid')\W/ {next} /^0.0.0.0/ {print "route del -net "$1" gw "$2";"}')
}
-
- [ -n "$dns" ] && {
+
+ [ -n "$dns" ] && \
echo -n > "${RESOLV_CONF}.tmp"
- ${domain:+echo search $domain} >> "${RESOLV_CONF}.tmp"
- for i in $dns ; do
- echo "adding dns $i"
- echo "nameserver $i" >> "${RESOLV_CONF}.tmp"
- done
- mv "${RESOLV_CONF}.tmp" "$RESOLV_CONF"
- }
if [ "$1" = "renew" ]; then
hotplug_event update
@@ -62,6 +64,19 @@ case "$1" in
hotplug_event ifup
fi
+ [ -n "$dns" ] && {
+ [ -s "${RESOLV_CONF}.tmp" ] || {
+ for i in $dns ; do
+ echo "adding dns $i"
+ echo "nameserver $i" >> "${RESOLV_CONF}.tmp"
+ done
+ }
+
+ ${domain:+echo search $domain} >> "${RESOLV_CONF}.tmp"
+
+ mv "${RESOLV_CONF}.tmp" "$RESOLV_CONF"
+ }
+
# user rules
[ -f /etc/udhcpc.user ] && . /etc/udhcpc.user
;;