2014-07-30 14:08:14 +09:00
|
|
|
CONFIG_BLACKFIN=y
|
|
|
|
CONFIG_TARGET_BF609_EZKIT=y
|
2016-04-24 17:29:26 -04:00
|
|
|
CONFIG_CMD_MMC=y
|
2016-04-22 16:41:25 -04:00
|
|
|
CONFIG_CMD_SF=y
|
|
|
|
CONFIG_CMD_I2C=y
|
2015-11-11 21:39:33 +08:00
|
|
|
CONFIG_CMD_GPIO=y
|
2015-06-22 16:15:30 -05:00
|
|
|
# CONFIG_CMD_SETEXPR is not set
|
2016-04-22 16:41:25 -04:00
|
|
|
CONFIG_CMD_DHCP=y
|
2016-04-24 17:29:26 -04:00
|
|
|
CONFIG_CMD_MII=y
|
2016-04-22 16:41:25 -04:00
|
|
|
CONFIG_CMD_PING=y
|
|
|
|
CONFIG_CMD_DNS=y
|
2016-04-24 17:29:26 -04:00
|
|
|
CONFIG_CMD_CACHE=y
|
|
|
|
CONFIG_CMD_EXT2=y
|
|
|
|
CONFIG_CMD_FAT=y
|
2015-06-22 16:15:29 -05:00
|
|
|
CONFIG_SPI_FLASH=y
|
2015-11-25 05:34:54 -08:00
|
|
|
CONFIG_SPI_FLASH_ATMEL=y
|
|
|
|
CONFIG_SPI_FLASH_EON=y
|
|
|
|
CONFIG_SPI_FLASH_MACRONIX=y
|
|
|
|
CONFIG_SPI_FLASH_SPANSION=y
|
|
|
|
CONFIG_SPI_FLASH_STMICRO=y
|
|
|
|
CONFIG_SPI_FLASH_SST=y
|
|
|
|
CONFIG_SPI_FLASH_WINBOND=y
|
2015-06-22 16:15:29 -05:00
|
|
|
CONFIG_NETDEVICES=y
|
2015-04-05 16:07:34 -06:00
|
|
|
CONFIG_ETH_DESIGNWARE=y
|
blackfin: fix undefined reference to srand and rand
Commit 9ba9e85f3f1c (net: Fix NET_RANDOM_ETHADDR dependencies)
accidentally dropped CONFIG_LIB_RAND defines for 14 Blackfin boards.
Prior to that commit, those boards defined CONFIG_LIB_RAND, but not
CONFIG_NET_RANDOM_ETHADDR. So, commit 9ba9e85f3f1c should not have
touched them, but in fact it ripped CONFIG_LIB_RAND off from all the
header files, which caused undefined reference to srand and rand.
CONFIG_LIB_RAND=y must be revived for such boards.
BTW, this commit indeed makes it better, but even with this fix,
three boards (bf533-stamp, bf538f-ezkit, cm-bf548) still can not
build due to region 'ram' overflowed error. This was cause by
commit 6eed3786c68c (net: Move the CMD_NET config to defconfigs)
because CMD_NET selects NET, and NET selects REGEX. Eventually,
some boards were newly enabled with CONFIG_REGEX, increasing the
memory footprint. A patch is expected to fix the build error.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2015-06-11 19:16:43 +09:00
|
|
|
CONFIG_LIB_RAND=y
|