提交 56f0c57b 编写于 作者: M Mike Frysinger

Blackfin: adi config: allow boards to tweak a little more

Let people easily override bootdelay and network settings.
Signed-off-by: NMike Frysinger <vapier@gentoo.org>
上级 73b6f404
......@@ -119,10 +119,12 @@
/*
* Env Settings
*/
#if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART)
# define CONFIG_BOOTDELAY -1
#else
# define CONFIG_BOOTDELAY 5
#ifndef CONFIG_BOOTDELAY
# if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_UART)
# define CONFIG_BOOTDELAY -1
# else
# define CONFIG_BOOTDELAY 5
# endif
#endif
#ifndef CONFIG_BOOTCOMMAND
# define CONFIG_BOOTCOMMAND "run ramboot"
......@@ -244,11 +246,15 @@
* Network Settings
*/
#ifdef CONFIG_CMD_NET
# define CONFIG_IPADDR 192.168.0.15
# define CONFIG_NETMASK 255.255.255.0
# define CONFIG_GATEWAYIP 192.168.0.1
# define CONFIG_SERVERIP 192.168.0.2
# define CONFIG_ROOTPATH /romfs
# ifndef CONFIG_IPADDR
# define CONFIG_IPADDR 192.168.0.15
# define CONFIG_GATEWAYIP 192.168.0.1
# define CONFIG_SERVERIP 192.168.0.2
# endif
# ifndef CONFIG_ROOTPATH
# define CONFIG_ROOTPATH /romfs
# endif
# ifdef CONFIG_CMD_DHCP
# ifndef CONFIG_SYS_AUTOLOAD
# define CONFIG_SYS_AUTOLOAD "no"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册