diff options
Diffstat (limited to 'net/bootp.c')
| -rw-r--r-- | net/bootp.c | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/net/bootp.c b/net/bootp.c index ccf9ee667..cd5c5dd1d 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -535,9 +535,14 @@ static int BootpExtended(u8 *e)  	*e++ = (576 - 312 + OPT_FIELD_SIZE) & 0xff;  #endif -#ifdef CONFIG_BOOTP_VCI_STRING +#if defined(CONFIG_BOOTP_VCI_STRING) || \ +	(defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_NET_VCI_STRING)) +#ifdef CONFIG_SPL_BUILD +	put_vci(e, CONFIG_SPL_NET_VCI_STRING); +#else  	put_vci(e, CONFIG_BOOTP_VCI_STRING);  #endif +#endif  #if defined(CONFIG_BOOTP_SUBNETMASK)  	*e++ = 1;		/* Subnet mask request */ |