diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-05-26 12:42:13 +0900 |
---|---|---|
committer | Joe Hershberger <joe.hershberger@ni.com> | 2015-06-01 09:33:59 -0500 |
commit | a4bdf1def41a75a8e5a9203d0ad39f0120f8a583 (patch) | |
tree | 6deccd2efccff9981cd84f7035c0ede7247e9081 /configs | |
parent | 1e1f35368513cc4da275d7047cc934a92ea422da (diff) | |
download | u-boot-a4bdf1def41a75a8e5a9203d0ad39f0120f8a583.zip u-boot-a4bdf1def41a75a8e5a9203d0ad39f0120f8a583.tar.gz u-boot-a4bdf1def41a75a8e5a9203d0ad39f0120f8a583.tar.bz2 |
blackfin: fix build error on bct-brettl2 board
Commit 76ec988b062e (net: Remove all calls to net_random_ethaddr())
accidentally deleted CONFIG_TARGET_BCT_BRETTL2=y, and since then
bct-brettl2 would not build.
Since commit a26cd04920dc (arch: Make board selection choices
optional), Kconfig actually allows such a .config file in which no
board is selected, but the build never succeeds.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/bct-brettl2_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/bct-brettl2_defconfig b/configs/bct-brettl2_defconfig index 84eb1fe..3dd3a53 100644 --- a/configs/bct-brettl2_defconfig +++ b/configs/bct-brettl2_defconfig @@ -1,4 +1,5 @@ CONFIG_BLACKFIN=y +CONFIG_TARGET_BCT_BRETTL2=y CONFIG_NET=y CONFIG_NET_RANDOM_ETHADDR=y CONFIG_CC_OPTIMIZE_LIBS_FOR_SPEED=y |