diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-07-30 14:08:14 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-07-30 08:48:01 -0400 |
commit | dd84058d24ff54d6b32818ffe44aeb4bba2cfae6 (patch) | |
tree | 40ccd709d1c0ada01996d6f5e2d1ad870f70650e /board/renesas | |
parent | 0a9064fb47bb0a239c04b0b63edebfdd3a201fdc (diff) | |
download | u-boot-imx-dd84058d24ff54d6b32818ffe44aeb4bba2cfae6.zip u-boot-imx-dd84058d24ff54d6b32818ffe44aeb4bba2cfae6.tar.gz u-boot-imx-dd84058d24ff54d6b32818ffe44aeb4bba2cfae6.tar.bz2 |
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>
Diffstat (limited to 'board/renesas')
-rw-r--r-- | board/renesas/MigoR/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/alt/Kconfig | 23 | ||||
-rw-r--r-- | board/renesas/ap325rxa/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/ecovec/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/koelsch/Kconfig | 23 | ||||
-rw-r--r-- | board/renesas/lager/Kconfig | 23 | ||||
-rw-r--r-- | board/renesas/r0p7734/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/r2dplus/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/r7780mp/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/rsk7203/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/rsk7264/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/rsk7269/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/sh7752evb/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/sh7753evb/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/sh7757lcr/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/sh7763rdp/Kconfig | 19 | ||||
-rw-r--r-- | board/renesas/sh7785lcr/Kconfig | 19 |
17 files changed, 335 insertions, 0 deletions
diff --git a/board/renesas/MigoR/Kconfig b/board/renesas/MigoR/Kconfig new file mode 100644 index 0000000..d72a453 --- /dev/null +++ b/board/renesas/MigoR/Kconfig @@ -0,0 +1,19 @@ +if TARGET_MIGOR + +config SYS_CPU + string + default "sh4" + +config SYS_BOARD + string + default "MigoR" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "MigoR" + +endif diff --git a/board/renesas/alt/Kconfig b/board/renesas/alt/Kconfig new file mode 100644 index 0000000..d317025 --- /dev/null +++ b/board/renesas/alt/Kconfig @@ -0,0 +1,23 @@ +if TARGET_ALT + +config SYS_CPU + string + default "armv7" + +config SYS_BOARD + string + default "alt" + +config SYS_VENDOR + string + default "renesas" + +config SYS_SOC + string + default "rmobile" + +config SYS_CONFIG_NAME + string + default "alt" + +endif diff --git a/board/renesas/ap325rxa/Kconfig b/board/renesas/ap325rxa/Kconfig new file mode 100644 index 0000000..ac1e9ef --- /dev/null +++ b/board/renesas/ap325rxa/Kconfig @@ -0,0 +1,19 @@ +if TARGET_AP325RXA + +config SYS_CPU + string + default "sh4" + +config SYS_BOARD + string + default "ap325rxa" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "ap325rxa" + +endif diff --git a/board/renesas/ecovec/Kconfig b/board/renesas/ecovec/Kconfig new file mode 100644 index 0000000..d62389e --- /dev/null +++ b/board/renesas/ecovec/Kconfig @@ -0,0 +1,19 @@ +if TARGET_ECOVEC + +config SYS_CPU + string + default "sh4" + +config SYS_BOARD + string + default "ecovec" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "ecovec" + +endif diff --git a/board/renesas/koelsch/Kconfig b/board/renesas/koelsch/Kconfig new file mode 100644 index 0000000..0def847 --- /dev/null +++ b/board/renesas/koelsch/Kconfig @@ -0,0 +1,23 @@ +if TARGET_KOELSCH + +config SYS_CPU + string + default "armv7" + +config SYS_BOARD + string + default "koelsch" + +config SYS_VENDOR + string + default "renesas" + +config SYS_SOC + string + default "rmobile" + +config SYS_CONFIG_NAME + string + default "koelsch" + +endif diff --git a/board/renesas/lager/Kconfig b/board/renesas/lager/Kconfig new file mode 100644 index 0000000..e88f4f6 --- /dev/null +++ b/board/renesas/lager/Kconfig @@ -0,0 +1,23 @@ +if TARGET_LAGER + +config SYS_CPU + string + default "armv7" + +config SYS_BOARD + string + default "lager" + +config SYS_VENDOR + string + default "renesas" + +config SYS_SOC + string + default "rmobile" + +config SYS_CONFIG_NAME + string + default "lager" + +endif diff --git a/board/renesas/r0p7734/Kconfig b/board/renesas/r0p7734/Kconfig new file mode 100644 index 0000000..2eb1de2 --- /dev/null +++ b/board/renesas/r0p7734/Kconfig @@ -0,0 +1,19 @@ +if TARGET_R0P7734 + +config SYS_CPU + string + default "sh4" + +config SYS_BOARD + string + default "r0p7734" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "r0p7734" + +endif diff --git a/board/renesas/r2dplus/Kconfig b/board/renesas/r2dplus/Kconfig new file mode 100644 index 0000000..d674d77 --- /dev/null +++ b/board/renesas/r2dplus/Kconfig @@ -0,0 +1,19 @@ +if TARGET_R2DPLUS + +config SYS_CPU + string + default "sh4" + +config SYS_BOARD + string + default "r2dplus" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "r2dplus" + +endif diff --git a/board/renesas/r7780mp/Kconfig b/board/renesas/r7780mp/Kconfig new file mode 100644 index 0000000..a862f59 --- /dev/null +++ b/board/renesas/r7780mp/Kconfig @@ -0,0 +1,19 @@ +if TARGET_R7780MP + +config SYS_CPU + string + default "sh4" + +config SYS_BOARD + string + default "r7780mp" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "r7780mp" + +endif diff --git a/board/renesas/rsk7203/Kconfig b/board/renesas/rsk7203/Kconfig new file mode 100644 index 0000000..61e9913 --- /dev/null +++ b/board/renesas/rsk7203/Kconfig @@ -0,0 +1,19 @@ +if TARGET_RSK7203 + +config SYS_CPU + string + default "sh2" + +config SYS_BOARD + string + default "rsk7203" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "rsk7203" + +endif diff --git a/board/renesas/rsk7264/Kconfig b/board/renesas/rsk7264/Kconfig new file mode 100644 index 0000000..a32d3ca --- /dev/null +++ b/board/renesas/rsk7264/Kconfig @@ -0,0 +1,19 @@ +if TARGET_RSK7264 + +config SYS_CPU + string + default "sh2" + +config SYS_BOARD + string + default "rsk7264" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "rsk7264" + +endif diff --git a/board/renesas/rsk7269/Kconfig b/board/renesas/rsk7269/Kconfig new file mode 100644 index 0000000..c126fcb --- /dev/null +++ b/board/renesas/rsk7269/Kconfig @@ -0,0 +1,19 @@ +if TARGET_RSK7269 + +config SYS_CPU + string + default "sh2" + +config SYS_BOARD + string + default "rsk7269" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "rsk7269" + +endif diff --git a/board/renesas/sh7752evb/Kconfig b/board/renesas/sh7752evb/Kconfig new file mode 100644 index 0000000..12e52b4 --- /dev/null +++ b/board/renesas/sh7752evb/Kconfig @@ -0,0 +1,19 @@ +if TARGET_SH7752EVB + +config SYS_CPU + string + default "sh4" + +config SYS_BOARD + string + default "sh7752evb" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "sh7752evb" + +endif diff --git a/board/renesas/sh7753evb/Kconfig b/board/renesas/sh7753evb/Kconfig new file mode 100644 index 0000000..a1f4cd0 --- /dev/null +++ b/board/renesas/sh7753evb/Kconfig @@ -0,0 +1,19 @@ +if TARGET_SH7753EVB + +config SYS_CPU + string + default "sh4" + +config SYS_BOARD + string + default "sh7753evb" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "sh7753evb" + +endif diff --git a/board/renesas/sh7757lcr/Kconfig b/board/renesas/sh7757lcr/Kconfig new file mode 100644 index 0000000..a0e3265 --- /dev/null +++ b/board/renesas/sh7757lcr/Kconfig @@ -0,0 +1,19 @@ +if TARGET_SH7757LCR + +config SYS_CPU + string + default "sh4" + +config SYS_BOARD + string + default "sh7757lcr" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "sh7757lcr" + +endif diff --git a/board/renesas/sh7763rdp/Kconfig b/board/renesas/sh7763rdp/Kconfig new file mode 100644 index 0000000..fbc11af --- /dev/null +++ b/board/renesas/sh7763rdp/Kconfig @@ -0,0 +1,19 @@ +if TARGET_SH7763RDP + +config SYS_CPU + string + default "sh4" + +config SYS_BOARD + string + default "sh7763rdp" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "sh7763rdp" + +endif diff --git a/board/renesas/sh7785lcr/Kconfig b/board/renesas/sh7785lcr/Kconfig new file mode 100644 index 0000000..8939f7d --- /dev/null +++ b/board/renesas/sh7785lcr/Kconfig @@ -0,0 +1,19 @@ +if TARGET_SH7785LCR + +config SYS_CPU + string + default "sh4" + +config SYS_BOARD + string + default "sh7785lcr" + +config SYS_VENDOR + string + default "renesas" + +config SYS_CONFIG_NAME + string + default "sh7785lcr" + +endif |