mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-27 17:01:05 +02:00
This adds dhcp-boot support to dnsmasq-init:
option name "virt0" option filename "pxelinux.0" option servername "mainframe0.dev" option serveraddress "9.3.2.1" closes #3529 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11663 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
e2e6168015
commit
465c4ee863
@ -169,6 +169,27 @@ dhcp_mac_add() {
|
|||||||
dhcp_option_add "$cfg" "$name"
|
dhcp_option_add "$cfg" "$name"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dhcp_boot_add() {
|
||||||
|
local cfg="$1"
|
||||||
|
|
||||||
|
config_get name "$cfg" name
|
||||||
|
[ -n "$name" ] || return 0
|
||||||
|
|
||||||
|
config_get filename "$cfg" filename
|
||||||
|
[ -n "$filename" ] || return 0
|
||||||
|
|
||||||
|
config_get servername "$cfg" servername
|
||||||
|
[ -n "$servername" ] || return 0
|
||||||
|
|
||||||
|
config_get serveraddress "$cfg" serveraddress
|
||||||
|
[ -n "$serveraddress" ] || return 0
|
||||||
|
|
||||||
|
append args "--dhcp-boot=net:$name,$filename,$servername,$serveraddress"
|
||||||
|
|
||||||
|
dhcp_option_add "$cfg" "$name"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
dhcp_add() {
|
dhcp_add() {
|
||||||
local cfg="$1"
|
local cfg="$1"
|
||||||
config_get net "$cfg" interface
|
config_get net "$cfg" interface
|
||||||
@ -239,6 +260,7 @@ start() {
|
|||||||
args=""
|
args=""
|
||||||
config_foreach dnsmasq dnsmasq
|
config_foreach dnsmasq dnsmasq
|
||||||
config_foreach dhcp_host_add host
|
config_foreach dhcp_host_add host
|
||||||
|
config_foreach dhcp_boot_add boot
|
||||||
config_foreach dhcp_mac_add mac
|
config_foreach dhcp_mac_add mac
|
||||||
config_foreach dhcp_vendorclass_add vendorclass
|
config_foreach dhcp_vendorclass_add vendorclass
|
||||||
config_foreach dhcp_userclass_add userclass
|
config_foreach dhcp_userclass_add userclass
|
||||||
|
Loading…
x
Reference in New Issue
Block a user