diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-10-16 15:01:15 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:03 +0200 | 
| commit | 6d0f6bcf337c5261c08fabe12982178c2c489d76 (patch) | |
| tree | ae13958ffa9c6b58c2ea97aac07a4ad2f04a350f /net/bootp.c | |
| parent | 71edc271816ec82cf0550dd6980be2da3cc2ad9e (diff) | |
| download | olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.tar.xz olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.zip | |
rename CFG_ macros to CONFIG_SYS
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'net/bootp.c')
| -rw-r--r-- | net/bootp.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/net/bootp.c b/net/bootp.c index c2078c6c8..83465e41a 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -912,11 +912,11 @@ DhcpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len)  		 * OFFER from a server we want.  		 */  		debug ("DHCP: state=SELECTING bp_file: \"%s\"\n", bp->bp_file); -#ifdef CFG_BOOTFILE_PREFIX +#ifdef CONFIG_SYS_BOOTFILE_PREFIX  		if (strncmp(bp->bp_file, -			    CFG_BOOTFILE_PREFIX, -			    strlen(CFG_BOOTFILE_PREFIX)) == 0 ) { -#endif	/* CFG_BOOTFILE_PREFIX */ +			    CONFIG_SYS_BOOTFILE_PREFIX, +			    strlen(CONFIG_SYS_BOOTFILE_PREFIX)) == 0 ) { +#endif	/* CONFIG_SYS_BOOTFILE_PREFIX */  			debug ("TRANSITIONING TO REQUESTING STATE\n");  			dhcp_state = REQUESTING; @@ -926,9 +926,9 @@ DhcpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len)  			NetSetTimeout(TIMEOUT, BootpTimeout);  			DhcpSendRequestPkt(bp); -#ifdef CFG_BOOTFILE_PREFIX +#ifdef CONFIG_SYS_BOOTFILE_PREFIX  		} -#endif	/* CFG_BOOTFILE_PREFIX */ +#endif	/* CONFIG_SYS_BOOTFILE_PREFIX */  		return;  		break; |