board/BuR: simplify default IP-setup on B&R boards.
To simplify and having a common default IP-setup on all B&R boards we
introduce an environment variable "brdefaultip" which does following.
Test if ${ipaddr} is empty, if yes it set's up some defaults:
- ipaddr : 192.168.60.1
- netmask : 255.255.255.0
- gatewayip: 192.168.60.254
- serverip : 192.168.60.254
This environment is ran from CONFIG_PREBOOT.
All other "tricks" are dropped.
Signed-off-by: Hannes Schmelzer <oe5hpm@oevsv.at>
Reviewed-by: Tom Rini <trini@konsulko.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
committed by
Tom Rini
parent
18a10d46f2
commit
6312e9aab8
@@ -283,16 +283,6 @@ int board_late_init(void)
|
||||
}
|
||||
/* setup vxworks bootline */
|
||||
char *vxworksbootline = (char *)VXWORKS_BOOTLINE;
|
||||
|
||||
/* setup default IP, in case if there is nothing in environment */
|
||||
if (!getenv("ipaddr")) {
|
||||
setenv("ipaddr", "192.168.60.1");
|
||||
setenv("netmask", "255.255.255.0");
|
||||
setenv("serverip", "192.168.60.254");
|
||||
setenv("gatewayip", "192.168.60.254");
|
||||
puts("net: had no IP! made default setup.\n");
|
||||
}
|
||||
|
||||
sprintf(vxworksbootline,
|
||||
"%s h=%s e=%s:%s g=%s %s o=0x%08x;0x%08x;0x%08x;0x%08x",
|
||||
DEFAULT_BOOTLINE,
|
||||
|
||||
Reference in New Issue
Block a user