Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dd84058

Browse files
masahir0ytrini
authored andcommittedJul 30, 2014
kconfig: add board Kconfig and defconfig files
This commit adds: - arch/${ARCH}/Kconfig provide a menu to select target boards - board/${VENDOR}/${BOARD}/Kconfig or board/${BOARD}/Kconfig set CONFIG macros to the appropriate values for each board - configs/${TARGET_BOARD}_defconfig default setting of each board (This commit was automatically generated by a conversion script based on boards.cfg) In Linux Kernel, defconfig files are located under arch/${ARCH}/configs/ directory. It works in Linux Kernel since ARCH is always given from the command line for cross compile. But in U-Boot, ARCH is not given from the command line. Which means we cannot know ARCH until the board configuration is done. That is why all the "*_defconfig" files should be gathered into a single directory ./configs/. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Simon Glass <sjg@chromium.org>
1 parent 0a9064f commit dd84058

File tree

1,764 files changed

+18075
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,764 files changed

+18075
-0
lines changed
 

‎arch/arc/Kconfig

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
menu "ARC architecture"
2+
depends on ARC
3+
4+
config SYS_ARCH
5+
string
6+
default "arc"
7+
8+
choice
9+
prompt "Target select"
10+
11+
config TARGET_TB100
12+
bool "Support tb100"
13+
14+
config TARGET_ARCANGEL4
15+
bool "Support arcangel4"
16+
17+
config TARGET_ARCANGEL4_BE
18+
bool "Support arcangel4-be"
19+
20+
config TARGET_AXS101
21+
bool "Support axs101"
22+
23+
endchoice
24+
25+
source "board/abilis/tb100/Kconfig"
26+
source "board/synopsys/Kconfig"
27+
source "board/synopsys/axs101/Kconfig"
28+
29+
endmenu

‎arch/arm/Kconfig

+1,002
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.