diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-12-22 07:20:24 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-12-22 07:20:24 +0000 |
commit | 93d22b0af880c93352f9a232565fc467ca7f8e95 (patch) | |
tree | 59050b0ab9952a5c6001bf15f12a90af4948875a /package/base-files/files | |
parent | ca93116b8d8097330d718e820c26ade1343622dd (diff) |
[package] base-files: implement "reqopts" parameter for dhcp interfaces to specify additional dhcp options to request
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24780 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files')
-rwxr-xr-x | package/base-files/files/lib/network/config.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 2ef8cda9d..449d252ab 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -347,7 +347,7 @@ setup_interface() { local pidfile="/var/run/dhcp-${iface}.pid" service_kill udhcpc "$pidfile" - local ipaddr netmask hostname proto1 clientid vendorid broadcast + local ipaddr netmask hostname proto1 clientid vendorid broadcast reqopts config_get ipaddr "$config" ipaddr config_get netmask "$config" netmask config_get hostname "$config" hostname @@ -355,6 +355,7 @@ setup_interface() { config_get clientid "$config" clientid config_get vendorid "$config" vendorid config_get_bool broadcast "$config" broadcast 0 + config_get reqopts "$config" reqopts [ -z "$ipaddr" ] || \ $DEBUG ifconfig "$iface" "$ipaddr" ${netmask:+netmask "$netmask"} @@ -370,6 +371,7 @@ setup_interface() { ${clientid:+-c $clientid} \ ${vendorid:+-V $vendorid} \ -b -p "$pidfile" $broadcast \ + ${reqopts:+-O $reqopts} \ ${dhcpopts:- -O rootpath -R &} ;; none) |