mirror of https://github.com/ipxe/ipxe.git
[iscsi] Include DHCP server address in iBFT
Signed-off-by: Michael Brown <mcb30@ipxe.org>pull/52/head
parent
f8e1678b84
commit
97c3f6e55a
|
@ -260,6 +260,7 @@ static int ibft_fill_nic ( struct ibft_nic *nic,
|
|||
ibft_set_ipaddr_setting ( NULL, &nic->dns[0], &dns_setting,
|
||||
( sizeof ( nic->dns ) /
|
||||
sizeof ( nic->dns[0] ) ) );
|
||||
ibft_set_ipaddr_setting ( parent, &nic->dhcp, &dhcp_server_setting, 1 );
|
||||
DBG ( "iBFT NIC DNS = %s", ibft_ipaddr ( &nic->dns[0] ) );
|
||||
DBG ( ", %s\n", ibft_ipaddr ( &nic->dns[1] ) );
|
||||
if ( ( rc = ibft_set_string_setting ( NULL, strings, &nic->hostname,
|
||||
|
|
|
@ -462,6 +462,8 @@ extern const struct setting
|
|||
asset_setting __setting ( SETTING_HOST_EXTRA, asset );
|
||||
extern const struct setting
|
||||
board_serial_setting __setting ( SETTING_HOST_EXTRA, board-serial );
|
||||
extern const struct setting dhcp_server_setting __setting ( SETTING_MISC,
|
||||
dhcp-server );
|
||||
|
||||
/**
|
||||
* Initialise a settings block
|
||||
|
|
Loading…
Reference in New Issue