U-Boot
Threads by month
- ----- 2025 -----
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2000 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
July 2014
- 158 participants
- 492 discussions

30 Jul '14
This patch series adds support for the Marvell Armada XP SoC's. Specifically
the MV78460.
Basic support for the db-78460-bp evaluation board is added. Supporting the
following interfaces:
- UART
- SPI (including SPI NOR flash)
- I2C
- Ethernet (neta)
While doing this port, I tried to consolidate common Marvell code into
the arch/arm/mvebu-common directory. This directory should be used to
collect more common code for the MVEBU SoC's (Dove, Kirkwood, Armada 370,
Armada 380, Armada XP). I started with Kirkwood and some of its
interfaces. Dove is definitely a candidate to move some of its code
into thise directory as well.
Because of the renaming of some functions from kirkwood to mvebu (to make
them better usable on other MVEBU SoCs), this patch series not only
touches the ARM SoC specific files (in arch/arm/...). But also some
device drivers (e.g. SPI, I2C). Separating these driver specific patches
into different patches that are not depending on this ARM patch series
seems hard if not impossible. Thats why I would really like to get this
patch series to get applied completely be one custodian. Not sure if
this could / should go through Tom directly? Only if all the subsystem
custodians have given their "Acked-by ..." of course.
Testing on Kirkwood based boards would be greatly appreciated. So anyone with
access to some of those board, please give this patch series a try. I really
hope that I didn't break anything while merging some of the code into the
common mvebu directory.
Please note that this Armada XP port still requires the "Binary Header"
(bin_hdr) from the Marvell U-Boot tree to be included as a binary blob
into the resulting image (u-boot.kwb) that can be booted by the MVEBU
BootROM. This binary bin_hdr is usually responsible for the DDR3
controller configuration and the DDR3 training. One way to extract this
bin_hdr binary from an existing Marvell boot image right now is to use
the "kwbimage" tool from Barebox. Please refer to the documentation
thats available there for more details.
Thanks,
Stefan
Stefan Roese (25):
sf: Add M25PX64 SPI NOR flash ID
arm: kirkwood: spi.h: Add some missing parenthesis
spi: kirkwood_spi.c: Some fixes and cleanup
spi: kirkwood_spi.c: Make global variable static
spi: kirkwood_spi.c: cosmetic: Fix minor coding style issues
arm: kirkwood: Move some SoC files into new arch/arm/mvebu-common
arm: marvell: Move arch/kirkwood.h to arch/soc.h
arm: marvell: Move arch-kirkwood/spi.h to arch-mvebu/spi.h
arm: marvell: Rework timer.c to make it usable for other MVEBU
platforms
arm: mvebu: Add common mbus functions to use on Marvell SoCs
spi: kirkwood_spi.c: Compile MPP (pin-mux) only for kirkwood SoC's
arm: marvell: Extract kirkwood gpio functions into new common file
gpio.c
spi: kirkwood_spi.c: Change KW_SPI_BASE to MVEBU_SPI_BASE
arm: kirkwood: Change naming of dram functions from km_foo() to
mvebu_foo()
net: mvneta.c: Add support for the ethernet controller of the Marvell
Armada XP SoC
net: phy.h: Make PHY autonegotiation timeout configurable
i2c: mvtwsi: Add support for Marvell Armada XP
arm: armada-xp: Add basic support for Marvell Armada XP SoC
arm: armada-xp: Add basic support for the Marvell DB-78460-BP board
arm: kirkwood: Remove some dead code from cpu.c
arm: kirkwood: Use mvebu new common mbus API
tools/kwboot: Sync with latest barebox version to support Armada XP
tools: Compile kwboot for Marvell Armada XP as those SoCs are now
supported
tools: kwbimage: Add image version 1 support for Armada XP / 370
Makefile: Add CONFIG_BUILD_TARGET to automatically build an special
image
Makefile | 9 +
README | 8 +
arch/arm/cpu/arm926ejs/kirkwood/Makefile | 4 +-
arch/arm/cpu/arm926ejs/kirkwood/cpu.c | 174 +--
arch/arm/cpu/arm926ejs/kirkwood/mpp.c | 2 +-
arch/arm/cpu/armv7/armada-xp/Makefile | 7 +
arch/arm/cpu/armv7/armada-xp/cpu.c | 186 +++
arch/arm/include/asm/arch-armada-xp/config.h | 80 +
arch/arm/include/asm/arch-armada-xp/cpu.h | 103 ++
arch/arm/include/asm/arch-armada-xp/soc.h | 57 +
arch/arm/include/asm/arch-kirkwood/config.h | 2 +-
arch/arm/include/asm/arch-kirkwood/cpu.h | 71 +-
arch/arm/include/asm/arch-kirkwood/gpio.h | 16 +-
.../asm/arch-kirkwood/{kirkwood.h => soc.h} | 25 +-
.../asm/{arch-kirkwood => arch-mvebu}/spi.h | 8 +-
arch/arm/mvebu-common/Makefile | 12 +
.../arm926ejs/kirkwood => mvebu-common}/dram.c | 63 +-
arch/arm/mvebu-common/gpio.c | 30 +
arch/arm/mvebu-common/mbus.c | 477 ++++++
.../arm926ejs/kirkwood => mvebu-common}/timer.c | 92 +-
board/LaCie/net2big_v2/net2big_v2.c | 8 +-
board/LaCie/netspace_v2/netspace_v2.c | 8 +-
board/LaCie/wireless_space/wireless_space.c | 8 +-
board/Marvell/db-78460-bp/Makefile | 7 +
board/Marvell/db-78460-bp/db-78460-bp.c | 120 ++
board/Marvell/db-78460-bp/kwbimage.cfg | 12 +
board/Marvell/dreamplug/dreamplug.c | 10 +-
board/Marvell/guruplug/guruplug.c | 10 +-
board/Marvell/mv88f6281gtw_ge/mv88f6281gtw_ge.c | 10 +-
board/Marvell/openrd/openrd.c | 10 +-
board/Marvell/rd6281a/rd6281a.c | 10 +-
board/Marvell/sheevaplug/sheevaplug.c | 10 +-
board/Seagate/dockstar/dockstar.c | 12 +-
board/Seagate/goflexhome/goflexhome.c | 12 +-
board/buffalo/lsxl/lsxl.c | 10 +-
board/cloudengines/pogo_e02/pogo_e02.c | 10 +-
board/d-link/dns325/dns325.c | 8 +-
board/iomega/iconnect/iconnect.c | 10 +-
board/karo/tk71/tk71.c | 10 +-
board/keymile/km_arm/km_arm.c | 10 +-
board/raidsonic/ib62x0/ib62x0.c | 10 +-
boards.cfg | 1 +
drivers/block/mvsata_ide.c | 2 +-
drivers/gpio/kw_gpio.c | 2 +-
drivers/i2c/mvtwsi.c | 4 +-
drivers/mtd/nand/kirkwood_nand.c | 2 +-
drivers/mtd/spi/sf_params.c | 1 +
drivers/net/Makefile | 1 +
drivers/net/mvgbe.c | 2 +-
drivers/net/mvneta.c | 1653 ++++++++++++++++++++
drivers/rtc/mvrtc.h | 2 +-
drivers/spi/kirkwood_spi.c | 44 +-
drivers/usb/host/ehci-marvell.c | 45 +-
include/configs/db-78460-bp.h | 67 +
include/linux/mbus.h | 61 +
include/netdev.h | 1 +
include/phy.h | 2 +
tools/Makefile | 1 +
tools/kwbimage.c | 1050 +++++++++----
tools/kwboot.c | 97 +-
60 files changed, 4056 insertions(+), 723 deletions(-)
create mode 100644 arch/arm/cpu/armv7/armada-xp/Makefile
create mode 100644 arch/arm/cpu/armv7/armada-xp/cpu.c
create mode 100644 arch/arm/include/asm/arch-armada-xp/config.h
create mode 100644 arch/arm/include/asm/arch-armada-xp/cpu.h
create mode 100644 arch/arm/include/asm/arch-armada-xp/soc.h
rename arch/arm/include/asm/arch-kirkwood/{kirkwood.h => soc.h} (74%)
rename arch/arm/include/asm/{arch-kirkwood => arch-mvebu}/spi.h (90%)
create mode 100644 arch/arm/mvebu-common/Makefile
rename arch/arm/{cpu/arm926ejs/kirkwood => mvebu-common}/dram.c (57%)
create mode 100644 arch/arm/mvebu-common/gpio.c
create mode 100644 arch/arm/mvebu-common/mbus.c
rename arch/arm/{cpu/arm926ejs/kirkwood => mvebu-common}/timer.c (63%)
create mode 100644 board/Marvell/db-78460-bp/Makefile
create mode 100644 board/Marvell/db-78460-bp/db-78460-bp.c
create mode 100644 board/Marvell/db-78460-bp/kwbimage.cfg
create mode 100644 drivers/net/mvneta.c
create mode 100644 include/configs/db-78460-bp.h
create mode 100644 include/linux/mbus.h
--
2.0.1
8
49
Hi Andy,
On 30/07/2014 08:43, Andy Pont wrote:
> Hello!
>
> We are currently working on the specification for a project using the TI
> AM335x where the overall system boot time has to be reduced as far as
> possible. In order to achieve that I am proposing that we implement a board
> specific spl_start_uboot() function which under normal circumstances U-Boot
> SPL will load the Linux kernel directly.
Of course: spl_start_uboot() is the board specific function that decides
to load either kernel or u-boot.
>
> One of the other requirements is to "display a splash screen logo on the LCD
> as early in the boot process as possible". Is it possible to get U-Boot SPL
> to do that or will we always have to boot through U-Boot or see if we can
> get the Linux kernel to do it as early as possible?
This is against the concept. Falcon boot is thought to start the kernel
as fast as possible, removing most of the stuff that belongs to u-boot.
The goal is reached in another way: booting the kernel faster let that
the framebuffer/drm driver in kernel is initialized very soon, and you
have to provide your logo during kernel boot.
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic(a)denx.de
=====================================================================
1
0
Signed-off-by: Przemyslaw Marczak <p.marczak(a)samsung.com>
---
test.c | 1 +
1 file changed, 1 insertion(+)
create mode 100644 test.c
diff --git a/test.c b/test.c
new file mode 100644
index 0000000..40e6141
--- /dev/null
+++ b/test.c
@@ -0,0 +1 @@
+#include <test>
\ No newline at end of file
--
1.9.1
1
1

[U-Boot] [PATCH] [blackfin] bf609: add register define required by core B on dual core BF609 processor
by Aaron Wu 30 Jul '14
by Aaron Wu 30 Jul '14
30 Jul '14
Add register define required by core B on dual core BF609 processor
Signed-off-by: Aaron Wu <Aaron.wu(a)analog.com>
---
arch/blackfin/include/asm/mach-bf609/BF609_def.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/blackfin/include/asm/mach-bf609/BF609_def.h b/arch/blackfin/include/asm/mach-bf609/BF609_def.h
index 02b81d3..fd0d86d 100644
--- a/arch/blackfin/include/asm/mach-bf609/BF609_def.h
+++ b/arch/blackfin/include/asm/mach-bf609/BF609_def.h
@@ -125,6 +125,8 @@
#define WDOG1_CNT 0xFFC17804 /* WDOG1 Count Register */
#define WDOG1_STAT 0xFFC17808 /* WDOG1 Watchdog Timer Status Register */
+#define SDU0_MSG_SET 0xFFC1F084 /* SDU0 Message Set Register */
+
#define EMAC0_MACCFG 0xFFC20000 /* EMAC0 MAC Configuration Register */
#define EMAC1_MACCFG 0xFFC22000 /* EMAC1 MAC Configuration Register */
--
1.7.9.5
2
1
Hi Andy,
I also tried to boot Linux directly on my Zynq board. But I could not
understand the instructions given in readme.falcon, so the project is
stalled.
google *falcon mode U-boot , *you will find couple of presentations, and in
doc you have readme.falcon.txt that explains this with an example.
Since I also want to continue on this, so let us continue this discussion.
Thanks and regards,
Abdul Basit
On 30 July 2014 12:13, Andy Pont <andy.pont(a)sdcsystems.com> wrote:
> Hello!
>
> We are currently working on the specification for a project using the TI
> AM335x where the overall system boot time has to be reduced as far as
> possible. In order to achieve that I am proposing that we implement a
> board
> specific spl_start_uboot() function which under normal circumstances U-Boot
> SPL will load the Linux kernel directly.
>
> One of the other requirements is to "display a splash screen logo on the
> LCD
> as early in the boot process as possible". Is it possible to get U-Boot
> SPL
> to do that or will we always have to boot through U-Boot or see if we can
> get the Linux kernel to do it as early as possible?
>
> Thoughts and ideas welcome.
>
> Andy.
>
>
> _______________________________________________
> U-Boot mailing list
> U-Boot(a)lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
>
1
0
Hello!
We are currently working on the specification for a project using the TI
AM335x where the overall system boot time has to be reduced as far as
possible. In order to achieve that I am proposing that we implement a board
specific spl_start_uboot() function which under normal circumstances U-Boot
SPL will load the Linux kernel directly.
One of the other requirements is to "display a splash screen logo on the LCD
as early in the boot process as possible". Is it possible to get U-Boot SPL
to do that or will we always have to boot through U-Boot or see if we can
get the Linux kernel to do it as early as possible?
Thoughts and ideas welcome.
Andy.
1
0

[U-Boot] [PATCH v2 1/2] blackfin: convert blackfin board_f and board_r to use generic board init functions
by Sonic Zhang 30 Jul '14
by Sonic Zhang 30 Jul '14
30 Jul '14
From: Sonic Zhang <sonic.zhang(a)analog.com>
- move blackfin specific cpu init code from blackfin board.c to cpu.c
- remove blackfin specific board init code and invoke generic board_f fron cpu init entry
- rename section name bss_vma to bss_start in order to match the generic board init code
- add a fake relocate_code function to set up the new stack only
Signed-off-by: Sonic Zhang <sonic.zhang(a)analog.com>
---
arch/blackfin/config.mk | 3 +
arch/blackfin/cpu/cpu.c | 333 +++++++++++++++++++++++++---
arch/blackfin/cpu/start.S | 14 +-
arch/blackfin/cpu/u-boot.lds | 4 +-
arch/blackfin/include/asm/u-boot.h | 3 +
arch/blackfin/lib/Makefile | 7 +-
arch/blackfin/lib/board.c | 443 -------------------------------------
arch/blackfin/lib/sections.c | 11 +
include/configs/bfin_adi_common.h | 4 +
9 files changed, 334 insertions(+), 488 deletions(-)
delete mode 100644 arch/blackfin/lib/board.c
create mode 100644 arch/blackfin/lib/sections.c
diff --git a/arch/blackfin/config.mk b/arch/blackfin/config.mk
index fcaa44f..96730dd 100644
--- a/arch/blackfin/config.mk
+++ b/arch/blackfin/config.mk
@@ -20,6 +20,9 @@ CONFIG_BFIN_CPU := $(strip $(CONFIG_BFIN_CPU:"%"=%))
endif
CONFIG_BFIN_BOOT_MODE := $(strip $(CONFIG_BFIN_BOOT_MODE:"%"=%))
+# Support generic board on Blackfin
+__HAVE_ARCH_GENERIC_BOARD := y
+
PLATFORM_RELFLAGS += -ffixed-P3 -fomit-frame-pointer -mno-fdpic
PLATFORM_CPPFLAGS += -DCONFIG_BLACKFIN
diff --git a/arch/blackfin/cpu/cpu.c b/arch/blackfin/cpu/cpu.c
index 2409c30..6913879 100644
--- a/arch/blackfin/cpu/cpu.c
+++ b/arch/blackfin/cpu/cpu.c
@@ -11,17 +11,21 @@
#include <common.h>
#include <command.h>
+#include <serial.h>
+#include <version.h>
+
#include <asm/blackfin.h>
#include <asm/cplb.h>
+#include <asm/clock.h>
#include <asm/mach-common/bits/core.h>
#include <asm/mach-common/bits/ebiu.h>
#include <asm/mach-common/bits/trace.h>
-#include <asm/serial.h>
#include "cpu.h"
#include "initcode.h"
ulong bfin_poweron_retx;
+DECLARE_GLOBAL_DATA_PTR;
#if defined(CONFIG_CORE1_RUN) && defined(COREB_L1_CODE_START)
void bfin_core1_start(void)
@@ -48,6 +52,252 @@ void bfin_core1_start(void)
}
#endif
+__attribute__((always_inline))
+static inline void serial_early_puts(const char *s)
+{
+#ifdef CONFIG_DEBUG_EARLY_SERIAL
+ serial_puts("Early: ");
+ serial_puts(s);
+#endif
+}
+
+static int global_board_data_init(void)
+{
+#ifndef CONFIG_SYS_GBL_DATA_ADDR
+# define CONFIG_SYS_GBL_DATA_ADDR 0
+#endif
+#ifndef CONFIG_SYS_BD_INFO_ADDR
+# define CONFIG_SYS_BD_INFO_ADDR 0
+#endif
+
+ bd_t *bd;
+
+ if (CONFIG_SYS_GBL_DATA_ADDR) {
+ gd = (gd_t *)(CONFIG_SYS_GBL_DATA_ADDR);
+ memset((void *)gd, 0, GENERATED_GBL_DATA_SIZE);
+ } else {
+ static gd_t _bfin_gd;
+ gd = &_bfin_gd;
+ }
+ if (CONFIG_SYS_BD_INFO_ADDR) {
+ bd = (bd_t *)(CONFIG_SYS_BD_INFO_ADDR);
+ memset(bd, 0, GENERATED_BD_INFO_SIZE);
+ } else {
+ static bd_t _bfin_bd;
+ bd = &_bfin_bd;
+ }
+
+ gd->bd = bd;
+
+ bd->bi_r_version = version_string;
+ bd->bi_cpu = __stringify(CONFIG_BFIN_CPU);
+ bd->bi_board_name = CONFIG_SYS_BOARD;
+ bd->bi_vco = get_vco();
+ bd->bi_cclk = get_cclk();
+ bd->bi_sclk = get_sclk();
+ bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
+ bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
+
+ gd->ram_size = CONFIG_SYS_MAX_RAM_SIZE;
+
+ return 0;
+}
+
+static void display_global_data(void)
+{
+ bd_t *bd;
+
+#ifndef CONFIG_DEBUG_EARLY_SERIAL
+ return;
+#endif
+
+ bd = gd->bd;
+ printf(" gd: %p\n", gd);
+ printf(" |-flags: %lx\n", gd->flags);
+ printf(" |-board_type: %lx\n", gd->arch.board_type);
+ printf(" |-baudrate: %u\n", gd->baudrate);
+ printf(" |-have_console: %lx\n", gd->have_console);
+ printf(" |-ram_size: %lx\n", gd->ram_size);
+ printf(" |-env_addr: %lx\n", gd->env_addr);
+ printf(" |-env_valid: %lx\n", gd->env_valid);
+ printf(" |-jt(%p): %p\n", gd->jt, *(gd->jt));
+ printf(" \\-bd: %p\n", gd->bd);
+ printf(" |-bi_boot_params: %lx\n", bd->bi_boot_params);
+ printf(" |-bi_memstart: %lx\n", bd->bi_memstart);
+ printf(" |-bi_memsize: %lx\n", bd->bi_memsize);
+ printf(" |-bi_flashstart: %lx\n", bd->bi_flashstart);
+ printf(" |-bi_flashsize: %lx\n", bd->bi_flashsize);
+ printf(" \\-bi_flashoffset: %lx\n", bd->bi_flashoffset);
+}
+
+#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
+#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
+#if defined(__ADSPBF60x__)
+#define CPLB_EX_PAGE_SIZE (16 * 1024 * 1024)
+#define CPLB_EX_PAGE_MASK (~(CPLB_EX_PAGE_SIZE - 1))
+#else
+#define CPLB_EX_PAGE_SIZE CPLB_PAGE_SIZE
+#define CPLB_EX_PAGE_MASK CPLB_PAGE_MASK
+#endif
+void init_cplbtables(void)
+{
+ uint32_t *ICPLB_ADDR, *ICPLB_DATA;
+ uint32_t *DCPLB_ADDR, *DCPLB_DATA;
+ uint32_t extern_memory;
+ size_t i;
+
+ void icplb_add(uint32_t addr, uint32_t data)
+ {
+ bfin_write32(ICPLB_ADDR + i, addr);
+ bfin_write32(ICPLB_DATA + i, data);
+ }
+ void dcplb_add(uint32_t addr, uint32_t data)
+ {
+ bfin_write32(DCPLB_ADDR + i, addr);
+ bfin_write32(DCPLB_DATA + i, data);
+ }
+
+ /* populate a few common entries ... we'll let
+ * the memory map and cplb exception handler do
+ * the rest of the work.
+ */
+ i = 0;
+ ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
+ ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
+ DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
+ DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
+
+ icplb_add(0xFFA00000, L1_IMEMORY);
+ dcplb_add(0xFF800000, L1_DMEMORY);
+ ++i;
+#if defined(__ADSPBF60x__)
+ icplb_add(0x0, 0x0);
+ dcplb_add(CONFIG_SYS_FLASH_BASE, PAGE_SIZE_16MB | CPLB_DIRTY |
+ CPLB_SUPV_WR | CPLB_USER_WR | CPLB_USER_RD | CPLB_VALID);
+ ++i;
+#endif
+
+ if (CONFIG_MEM_SIZE) {
+ uint32_t mbase = CONFIG_SYS_MONITOR_BASE;
+ uint32_t mend = mbase + CONFIG_SYS_MONITOR_LEN - 1;
+ mbase &= CPLB_PAGE_MASK;
+ mend &= CPLB_PAGE_MASK;
+
+ icplb_add(mbase, SDRAM_IKERNEL);
+ dcplb_add(mbase, SDRAM_DKERNEL);
+ ++i;
+
+ /*
+ * If the monitor crosses a 4 meg boundary, we'll need
+ * to lock two entries for it. We assume it doesn't
+ * cross two 4 meg boundaries ...
+ */
+ if (mbase != mend) {
+ icplb_add(mend, SDRAM_IKERNEL);
+ dcplb_add(mend, SDRAM_DKERNEL);
+ ++i;
+ }
+ }
+
+#ifndef __ADSPBF60x__
+ icplb_add(0x20000000, SDRAM_INON_CHBL);
+ dcplb_add(0x20000000, SDRAM_EBIU);
+ ++i;
+#endif
+
+ /* Add entries for the rest of external RAM up to the bootrom */
+ extern_memory = 0;
+
+#ifdef CONFIG_DEBUG_NULL_PTR
+ icplb_add(extern_memory,
+ (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
+ dcplb_add(extern_memory,
+ (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
+ ++i;
+ icplb_add(extern_memory, SDRAM_IKERNEL);
+ dcplb_add(extern_memory, SDRAM_DKERNEL);
+ extern_memory += CPLB_PAGE_SIZE;
+ ++i;
+#endif
+
+ while (i < 16 && extern_memory <
+ (CONFIG_SYS_MONITOR_BASE & CPLB_EX_PAGE_MASK)) {
+ icplb_add(extern_memory, SDRAM_IGENERIC);
+ dcplb_add(extern_memory, SDRAM_DGENERIC);
+ extern_memory += CPLB_EX_PAGE_SIZE;
+ ++i;
+ }
+ while (i < 16) {
+ icplb_add(0, 0);
+ dcplb_add(0, 0);
+ ++i;
+ }
+}
+
+int print_cpuinfo(void)
+{
+ char buf[32];
+
+ printf("CPU: ADSP %s (Detected Rev: 0.%d) (%s boot)\n",
+ gd->bd->bi_cpu,
+ bfin_revid(),
+ get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
+
+ printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
+ printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
+#if defined(__ADSPBF60x__)
+ printf("System0: %s MHz, ", strmhz(buf, get_sclk0()));
+ printf("System1: %s MHz, ", strmhz(buf, get_sclk1()));
+ printf("Dclk: %s MHz\n", strmhz(buf, get_dclk()));
+#else
+ printf("System: %s MHz\n", strmhz(buf, get_sclk()));
+#endif
+
+ return 0;
+}
+
+int exception_init(void)
+{
+ bfin_write_EVT3(trap);
+ return 0;
+}
+
+int irq_init(void)
+{
+#ifdef SIC_IMASK0
+ bfin_write_SIC_IMASK0(0);
+ bfin_write_SIC_IMASK1(0);
+# ifdef SIC_IMASK2
+ bfin_write_SIC_IMASK2(0);
+# endif
+#elif defined(SICA_IMASK0)
+ bfin_write_SICA_IMASK0(0);
+ bfin_write_SICA_IMASK1(0);
+#elif defined(SIC_IMASK)
+ bfin_write_SIC_IMASK(0);
+#endif
+ /* Set up a dummy NMI handler if needed. */
+ if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_BYPASS || ANOMALY_05000219)
+ bfin_write_EVT2(evt_nmi); /* NMI */
+ bfin_write_EVT5(evt_default); /* hardware error */
+ bfin_write_EVT6(evt_default); /* core timer */
+ bfin_write_EVT7(evt_default);
+ bfin_write_EVT8(evt_default);
+ bfin_write_EVT9(evt_default);
+ bfin_write_EVT10(evt_default);
+ bfin_write_EVT11(evt_default);
+ bfin_write_EVT12(evt_default);
+ bfin_write_EVT13(evt_default);
+ bfin_write_EVT14(evt_default);
+ bfin_write_EVT15(evt_default);
+ bfin_write_ILAT(0);
+ CSYNC();
+ /* enable hardware error irq */
+ irq_flags = 0x3f;
+ local_irq_enable();
+ return 0;
+}
+
__attribute__ ((__noreturn__))
void cpu_init_f(ulong bootflag, ulong loaded_from_ldr)
{
@@ -102,51 +352,62 @@ void cpu_init_f(ulong bootflag, ulong loaded_from_ldr)
bfin_core1_start();
#endif
- serial_early_puts("Board init flash\n");
- board_init_f(bootflag);
+ serial_early_puts("Init global data\n");
+ global_board_data_init();
+
+ board_init_f(0);
/* should not be reached */
while (1);
}
-int exception_init(void)
+int arch_cpu_init(void)
{
- bfin_write_EVT3(trap);
+ serial_early_puts("Init CPLB tables\n");
+ init_cplbtables();
+
+ serial_early_puts("Exceptions setup\n");
+ exception_init();
+
+#ifndef CONFIG_ICACHE_OFF
+ serial_early_puts("Turn on ICACHE\n");
+ icache_enable();
+#endif
+#ifndef CONFIG_DCACHE_OFF
+ serial_early_puts("Turn on DCACHE\n");
+ dcache_enable();
+#endif
+
+#ifdef DEBUG
+ if (GENERATED_GBL_DATA_SIZE < sizeof(*gd))
+ hang();
+#endif
+
+ /* Initialize */
+ serial_early_puts("IRQ init\n");
+ irq_init();
+
return 0;
}
-int irq_init(void)
+int arch_misc_init(void)
{
-#ifdef SIC_IMASK0
- bfin_write_SIC_IMASK0(0);
- bfin_write_SIC_IMASK1(0);
-# ifdef SIC_IMASK2
- bfin_write_SIC_IMASK2(0);
-# endif
-#elif defined(SICA_IMASK0)
- bfin_write_SICA_IMASK0(0);
- bfin_write_SICA_IMASK1(0);
-#elif defined(SIC_IMASK)
- bfin_write_SIC_IMASK(0);
+#if defined(CONFIG_SYS_I2C)
+ i2c_reloc_fixup();
#endif
- /* Set up a dummy NMI handler if needed. */
- if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_BYPASS || ANOMALY_05000219)
- bfin_write_EVT2(evt_nmi); /* NMI */
- bfin_write_EVT5(evt_default); /* hardware error */
- bfin_write_EVT6(evt_default); /* core timer */
- bfin_write_EVT7(evt_default);
- bfin_write_EVT8(evt_default);
- bfin_write_EVT9(evt_default);
- bfin_write_EVT10(evt_default);
- bfin_write_EVT11(evt_default);
- bfin_write_EVT12(evt_default);
- bfin_write_EVT13(evt_default);
- bfin_write_EVT14(evt_default);
- bfin_write_EVT15(evt_default);
- bfin_write_ILAT(0);
- CSYNC();
- /* enable hardware error irq */
- irq_flags = 0x3f;
- local_irq_enable();
+
+ display_global_data();
+
+ if (CONFIG_MEM_SIZE && bfin_os_log_check()) {
+ puts("\nLog buffer from operating system:\n");
+ bfin_os_log_dump();
+ puts("\n");
+ }
+
+ return 0;
+}
+
+int interrupt_init(void)
+{
return 0;
}
diff --git a/arch/blackfin/cpu/start.S b/arch/blackfin/cpu/start.S
index 29a7c23..f31abfa 100644
--- a/arch/blackfin/cpu/start.S
+++ b/arch/blackfin/cpu/start.S
@@ -196,8 +196,8 @@ ENTRY(_start)
* takes care of clearing things for us.
*/
serial_early_puts("Zero BSS");
- r0.l = __bss_vma;
- r0.h = __bss_vma;
+ r0.l = __bss_start;
+ r0.h = __bss_start;
r1 = 0 (x);
r2.l = __bss_len;
r2.h = __bss_len;
@@ -251,3 +251,13 @@ LENTRY(_get_pc)
#endif
rts;
ENDPROC(_get_pc)
+
+ENTRY(_relocate_code)
+ /* Fake relocate code. Setup the new stack only */
+ sp = r0;
+ fp = sp;
+ r0 = p3;
+ r1.h = 0x2000;
+ r1.l = 0x10;
+ jump.l _board_init_r
+ENDPROC(_relocate_code)
diff --git a/arch/blackfin/cpu/u-boot.lds b/arch/blackfin/cpu/u-boot.lds
index 7f0411f..ae1b813 100644
--- a/arch/blackfin/cpu/u-boot.lds
+++ b/arch/blackfin/cpu/u-boot.lds
@@ -135,6 +135,8 @@ SECTIONS
*(COMMON)
. = ALIGN(4);
} >ram_data
- __bss_vma = ADDR(.bss);
+ __bss_end = .;
+ __bss_start = ADDR(.bss);
__bss_len = SIZEOF(.bss);
+ __init_end = .;
}
diff --git a/arch/blackfin/include/asm/u-boot.h b/arch/blackfin/include/asm/u-boot.h
index acaeee9..7b5cf6a 100644
--- a/arch/blackfin/include/asm/u-boot.h
+++ b/arch/blackfin/include/asm/u-boot.h
@@ -25,9 +25,12 @@ typedef struct bd_info {
unsigned long bi_vco;
unsigned long bi_cclk;
unsigned long bi_sclk;
+ unsigned char bi_enetaddr[6];
} bd_t;
/* For image.h:image_check_target_arch() */
#define IH_ARCH_DEFAULT IH_ARCH_BLACKFIN
+int arch_misc_init(void);
+
#endif /* _U_BOOT_H_ */
diff --git a/arch/blackfin/lib/Makefile b/arch/blackfin/lib/Makefile
index 4ba7bf6..b534a98 100644
--- a/arch/blackfin/lib/Makefile
+++ b/arch/blackfin/lib/Makefile
@@ -9,11 +9,6 @@
# SPDX-License-Identifier: GPL-2.0+
#
-# Unnecessary.
-# Use CONFIG_SYS_BOARD instead of BFIN_BOARD_NAME
-# and delete this.
-ccflags-y += -DBFIN_BOARD_NAME='"$(BOARD)"'
-
obj-y += ins.o
obj-y += memcmp.o
obj-y += memcpy.o
@@ -21,7 +16,6 @@ obj-y += memmove.o
obj-y += memset.o
obj-y += outs.o
obj-$(CONFIG_CMD_KGDB) += __kgdb.o
-obj-y += board.o
obj-y += boot.o
obj-y += cache.o
obj-y += clocks.o
@@ -30,3 +24,4 @@ obj-$(CONFIG_CMD_KGDB) += kgdb.o
obj-y += muldi3.o
obj-$(CONFIG_HAS_POST) += post.o
obj-y += string.o
+obj-y += sections.o
diff --git a/arch/blackfin/lib/board.c b/arch/blackfin/lib/board.c
deleted file mode 100644
index 8784255..0000000
--- a/arch/blackfin/lib/board.c
+++ /dev/null
@@ -1,443 +0,0 @@
-/*
- * U-boot - board.c First C file to be called contains init routines
- *
- * Copyright (c) 2005-2008 Analog Devices Inc.
- *
- * (C) Copyright 2000-2004
- * Wolfgang Denk, DENX Software Engineering, wd(a)denx.de.
- *
- * Licensed under the GPL-2 or later.
- */
-
-#include <common.h>
-#include <command.h>
-#include <stdio_dev.h>
-#include <serial.h>
-#include <environment.h>
-#include <malloc.h>
-#include <mmc.h>
-#include <net.h>
-#include <status_led.h>
-#include <version.h>
-#include <watchdog.h>
-
-#include <asm/cplb.h>
-#include <asm/mach-common/bits/mpu.h>
-#include <asm/clock.h>
-#include <kgdb.h>
-
-#ifdef CONFIG_CMD_NAND
-#include <nand.h> /* cannot even include nand.h if it isnt configured */
-#endif
-
-#ifdef CONFIG_BITBANGMII
-#include <miiphy.h>
-#endif
-
-#if defined(CONFIG_POST)
-#include <post.h>
-int post_flag;
-#endif
-
-#if defined(CONFIG_SYS_I2C)
-#include <i2c.h>
-#endif
-
-DECLARE_GLOBAL_DATA_PTR;
-
-__attribute__((always_inline))
-static inline void serial_early_puts(const char *s)
-{
-#ifdef CONFIG_DEBUG_EARLY_SERIAL
- serial_puts("Early: ");
- serial_puts(s);
-#endif
-}
-
-static int display_banner(void)
-{
- display_options();
- printf("CPU: ADSP %s "
- "(Detected Rev: 0.%d) "
- "(%s boot)\n",
- gd->bd->bi_cpu,
- bfin_revid(),
- get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
- return 0;
-}
-
-static int init_baudrate(void)
-{
- gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
- return 0;
-}
-
-static void display_global_data(void)
-{
- bd_t *bd;
-
-#ifndef CONFIG_DEBUG_EARLY_SERIAL
- return;
-#endif
-
- bd = gd->bd;
- printf(" gd: %p\n", gd);
- printf(" |-flags: %lx\n", gd->flags);
- printf(" |-board_type: %lx\n", gd->arch.board_type);
- printf(" |-baudrate: %u\n", gd->baudrate);
- printf(" |-have_console: %lx\n", gd->have_console);
- printf(" |-ram_size: %lx\n", gd->ram_size);
- printf(" |-env_addr: %lx\n", gd->env_addr);
- printf(" |-env_valid: %lx\n", gd->env_valid);
- printf(" |-jt(%p): %p\n", gd->jt, *(gd->jt));
- printf(" \\-bd: %p\n", gd->bd);
- printf(" |-bi_boot_params: %lx\n", bd->bi_boot_params);
- printf(" |-bi_memstart: %lx\n", bd->bi_memstart);
- printf(" |-bi_memsize: %lx\n", bd->bi_memsize);
- printf(" |-bi_flashstart: %lx\n", bd->bi_flashstart);
- printf(" |-bi_flashsize: %lx\n", bd->bi_flashsize);
- printf(" \\-bi_flashoffset: %lx\n", bd->bi_flashoffset);
-}
-
-#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
-#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
-#if defined(__ADSPBF60x__)
-#define CPLB_EX_PAGE_SIZE (16 * 1024 * 1024)
-#define CPLB_EX_PAGE_MASK (~(CPLB_EX_PAGE_SIZE - 1))
-#else
-#define CPLB_EX_PAGE_SIZE CPLB_PAGE_SIZE
-#define CPLB_EX_PAGE_MASK CPLB_PAGE_MASK
-#endif
-void init_cplbtables(void)
-{
- volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
- volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
- uint32_t extern_memory;
- size_t i;
-
- void icplb_add(uint32_t addr, uint32_t data)
- {
- *(ICPLB_ADDR + i) = addr;
- *(ICPLB_DATA + i) = data;
- }
- void dcplb_add(uint32_t addr, uint32_t data)
- {
- *(DCPLB_ADDR + i) = addr;
- *(DCPLB_DATA + i) = data;
- }
-
- /* populate a few common entries ... we'll let
- * the memory map and cplb exception handler do
- * the rest of the work.
- */
- i = 0;
- ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
- ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
- DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
- DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
-
- icplb_add(0xFFA00000, L1_IMEMORY);
- dcplb_add(0xFF800000, L1_DMEMORY);
- ++i;
-#if defined(__ADSPBF60x__)
- icplb_add(0x0, 0x0);
- dcplb_add(CONFIG_SYS_FLASH_BASE, PAGE_SIZE_16MB | CPLB_DIRTY |
- CPLB_SUPV_WR | CPLB_USER_WR | CPLB_USER_RD | CPLB_VALID);
- ++i;
-#endif
-
- if (CONFIG_MEM_SIZE) {
- uint32_t mbase = CONFIG_SYS_MONITOR_BASE;
- uint32_t mend = mbase + CONFIG_SYS_MONITOR_LEN;
- mbase &= CPLB_PAGE_MASK;
- mend &= CPLB_PAGE_MASK;
-
- icplb_add(mbase, SDRAM_IKERNEL);
- dcplb_add(mbase, SDRAM_DKERNEL);
- ++i;
-
- /*
- * If the monitor crosses a 4 meg boundary, we'll need
- * to lock two entries for it. We assume it doesn't
- * cross two 4 meg boundaries ...
- */
- if (mbase != mend) {
- icplb_add(mend, SDRAM_IKERNEL);
- dcplb_add(mend, SDRAM_DKERNEL);
- ++i;
- }
- }
-
-#ifndef __ADSPBF60x__
- icplb_add(0x20000000, SDRAM_INON_CHBL);
- dcplb_add(0x20000000, SDRAM_EBIU);
- ++i;
-#endif
-
- /* Add entries for the rest of external RAM up to the bootrom */
- extern_memory = 0;
-
-#ifdef CONFIG_DEBUG_NULL_PTR
- icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
- dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
- ++i;
- icplb_add(extern_memory, SDRAM_IKERNEL);
- dcplb_add(extern_memory, SDRAM_DKERNEL);
- extern_memory += CPLB_PAGE_SIZE;
- ++i;
-#endif
-
- while (i < 16 && extern_memory <
- (CONFIG_SYS_MONITOR_BASE & CPLB_EX_PAGE_MASK)) {
- icplb_add(extern_memory, SDRAM_IGENERIC);
- dcplb_add(extern_memory, SDRAM_DGENERIC);
- extern_memory += CPLB_EX_PAGE_SIZE;
- ++i;
- }
- while (i < 16) {
- icplb_add(0, 0);
- dcplb_add(0, 0);
- ++i;
- }
-}
-
-static int global_board_data_init(void)
-{
-#ifndef CONFIG_SYS_GBL_DATA_ADDR
-# define CONFIG_SYS_GBL_DATA_ADDR 0
-#endif
-#ifndef CONFIG_SYS_BD_INFO_ADDR
-# define CONFIG_SYS_BD_INFO_ADDR 0
-#endif
-
- bd_t *bd;
-
- if (CONFIG_SYS_GBL_DATA_ADDR) {
- gd = (gd_t *) (CONFIG_SYS_GBL_DATA_ADDR);
- memset((void *)gd, 0, GENERATED_GBL_DATA_SIZE);
- } else {
- static gd_t _bfin_gd;
- gd = &_bfin_gd;
- }
-
- if (CONFIG_SYS_BD_INFO_ADDR) {
- bd = (bd_t *) (CONFIG_SYS_BD_INFO_ADDR);
- memset(bd, 0, GENERATED_BD_INFO_SIZE);
- } else {
- static bd_t _bfin_bd;
- bd = &_bfin_bd;
- }
- gd->bd = bd;
-
- bd->bi_r_version = version_string;
- bd->bi_cpu = __stringify(CONFIG_BFIN_CPU);
- bd->bi_board_name = BFIN_BOARD_NAME;
- bd->bi_vco = get_vco();
- bd->bi_cclk = get_cclk();
- bd->bi_sclk = get_sclk();
- bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
- bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
-
- return 0;
-}
-
-/*
- * All attempts to come up with a "common" initialization sequence
- * that works for all boards and architectures failed: some of the
- * requirements are just _too_ different. To get rid of the resulting
- * mess of board dependend #ifdef'ed code we now make the whole
- * initialization sequence configurable to the user.
- *
- * The requirements for any new initalization function is simple: it
- * receives a pointer to the "global data" structure as it's only
- * argument, and returns an integer return code, where 0 means
- * "continue" and != 0 means "fatal error, hang the system".
- */
-
-extern int watchdog_init(void);
-extern int exception_init(void);
-extern int irq_init(void);
-extern int timer_init(void);
-
-void board_init_f(ulong bootflag)
-{
- char buf[32];
-
-#ifdef CONFIG_BOARD_EARLY_INIT_F
- serial_early_puts("Board early init flash\n");
- board_early_init_f();
-#endif
-
- serial_early_puts("Init CPLB tables\n");
- init_cplbtables();
-
- serial_early_puts("Exceptions setup\n");
- exception_init();
-
-#ifndef CONFIG_ICACHE_OFF
- serial_early_puts("Turn on ICACHE\n");
- icache_enable();
-#endif
-#ifndef CONFIG_DCACHE_OFF
- serial_early_puts("Turn on DCACHE\n");
- dcache_enable();
-#endif
-
-#ifdef CONFIG_HW_WATCHDOG
- serial_early_puts("Setting up external watchdog\n");
- hw_watchdog_init();
-#endif
-
-#ifdef DEBUG
- if (GENERATED_GBL_DATA_SIZE < sizeof(*gd))
- hang();
-#endif
- serial_early_puts("Init global data\n");
-
- global_board_data_init();
-
- /* Initialize */
- serial_early_puts("IRQ init\n");
- irq_init();
- serial_early_puts("Environment init\n");
- env_init();
- serial_early_puts("Baudrate init\n");
- init_baudrate();
- serial_early_puts("Serial init\n");
- serial_init();
- serial_initialize();
- serial_early_puts("Console init flash\n");
- console_init_f();
- serial_early_puts("End of early debugging\n");
- display_banner();
-
- checkboard();
- timer_init();
-
- printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
- printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
-#if defined(__ADSPBF60x__)
- printf("System0: %s MHz, ", strmhz(buf, get_sclk0()));
- printf("System1: %s MHz, ", strmhz(buf, get_sclk1()));
- printf("Dclk: %s MHz\n", strmhz(buf, get_dclk()));
-#else
- printf("System: %s MHz\n", strmhz(buf, get_sclk()));
-#endif
-
- if (CONFIG_MEM_SIZE) {
- printf("RAM: ");
- print_size(gd->bd->bi_memsize, "\n");
- }
-
-#if defined(CONFIG_POST)
- post_init_f();
- post_bootmode_init();
- post_run(NULL, POST_ROM | post_bootmode_get(0));
-#endif
-
- board_init_r((gd_t *) gd, 0x20000010);
-}
-
-static void board_net_init_r(bd_t *bd)
-{
-#ifdef CONFIG_BITBANGMII
- bb_miiphy_init();
-#endif
-#ifdef CONFIG_CMD_NET
- printf("Net: ");
- eth_initialize(bd);
-#endif
-}
-
-void board_init_r(gd_t * id, ulong dest_addr)
-{
- bd_t *bd;
- gd = id;
- gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
- bd = gd->bd;
-
-#if defined(CONFIG_POST)
- post_output_backlog();
-#endif
-
- /* initialize malloc() area */
- mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN);
-
-#if !defined(CONFIG_SYS_NO_FLASH)
- /* Initialize the flash and protect u-boot by default */
- extern flash_info_t flash_info[];
- puts("Flash: ");
- ulong size = flash_init();
- print_size(size, "\n");
- flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE,
- CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - 1,
- &flash_info[0]);
- bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
- bd->bi_flashsize = size;
- bd->bi_flashoffset = 0;
-#else
- bd->bi_flashstart = 0;
- bd->bi_flashsize = 0;
- bd->bi_flashoffset = 0;
-#endif
-
-#ifdef CONFIG_CMD_NAND
- puts("NAND: ");
- nand_init(); /* go init the NAND */
-#endif
-
-#ifdef CONFIG_GENERIC_MMC
- puts("MMC: ");
- mmc_initialize(bd);
-#endif
-
-#if defined(CONFIG_SYS_I2C)
- i2c_reloc_fixup();
-#endif
- /* relocate environment function pointers etc. */
- env_relocate();
-
- /* Initialize stdio devices */
- stdio_init();
- jumptable_init();
-
- /* Initialize the console (after the relocation and devices init) */
- console_init_r();
-
-#ifdef CONFIG_CMD_KGDB
- puts("KGDB: ");
- kgdb_init();
-#endif
-
-#ifdef CONFIG_STATUS_LED
- status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
- status_led_set(STATUS_LED_CRASH, STATUS_LED_OFF);
-#endif
-
- /* Initialize from environment */
- load_addr = getenv_ulong("loadaddr", 16, load_addr);
-
-#if defined(CONFIG_MISC_INIT_R)
- /* miscellaneous platform dependent initialisations */
- misc_init_r();
-#endif
-
- board_net_init_r(bd);
-
- display_global_data();
-
-#if defined(CONFIG_POST)
- if (post_flag)
- post_run(NULL, POST_RAM | post_bootmode_get(0));
-#endif
-
- if (CONFIG_MEM_SIZE && bfin_os_log_check()) {
- puts("\nLog buffer from operating system:\n");
- bfin_os_log_dump();
- puts("\n");
- }
-
- /* main_loop() can return to retry autoboot, if so just run it again. */
- for (;;)
- main_loop();
-}
diff --git a/arch/blackfin/lib/sections.c b/arch/blackfin/lib/sections.c
new file mode 100644
index 0000000..b50f30a
--- /dev/null
+++ b/arch/blackfin/lib/sections.c
@@ -0,0 +1,11 @@
+/*
+ * U-boot - section.c
+ *
+ * Copyright (c) 2014 Analog Devices Inc.
+ *
+ * Licensed under the GPL-2 or later.
+ */
+
+char __bss_start[0] __attribute__((section(".__bss_start")));
+char __bss_end[0] __attribute__((section(".__bss_end")));
+char __init_end[0] __attribute__((section(".__init_end")));
diff --git a/include/configs/bfin_adi_common.h b/include/configs/bfin_adi_common.h
index ea9acf6..19160ce 100644
--- a/include/configs/bfin_adi_common.h
+++ b/include/configs/bfin_adi_common.h
@@ -327,4 +327,8 @@
#ifndef CONFIG_ADI_GPIO2
# define CONFIG_ADI_GPIO1
#endif
+#define CONFIG_SYS_GENERIC_BOARD
+#define CONFIG_DISPLAY_CPUINFO
+#define CONFIG_ARCH_MISC_INIT
+
#endif
--
1.8.2.3
1
1

[U-Boot] [PATCH 1/2] blackfin: convert blackfin board_f and board_r to use generic board init functions
by Sonic Zhang 30 Jul '14
by Sonic Zhang 30 Jul '14
30 Jul '14
From: Sonic Zhang <sonic.zhang(a)analog.com>
- move blackfin specific cpu init code from blackfin board.c to cpu.c
- remove blackfin specific board init code and invoke generic board_f fron cpu init entry
- rename section name bss_vma to bss_start in order to match the generic board init code
- add a fake relocate_code function to set up the new stack only
Signed-off-by: Sonic Zhang <sonic.zhang(a)analog.com>
---
arch/blackfin/config.mk | 3 +
arch/blackfin/cpu/cpu.c | 333 +++++++++++++++++++++++++---
arch/blackfin/cpu/start.S | 14 +-
arch/blackfin/cpu/u-boot.lds | 4 +-
arch/blackfin/include/asm/u-boot.h | 3 +
arch/blackfin/lib/Makefile | 7 +-
arch/blackfin/lib/board.c | 443 -------------------------------------
arch/blackfin/lib/sections.c | 11 +
include/configs/bfin_adi_common.h | 4 +
9 files changed, 334 insertions(+), 488 deletions(-)
delete mode 100644 arch/blackfin/lib/board.c
create mode 100644 arch/blackfin/lib/sections.c
diff --git a/arch/blackfin/config.mk b/arch/blackfin/config.mk
index fcaa44f..96730dd 100644
--- a/arch/blackfin/config.mk
+++ b/arch/blackfin/config.mk
@@ -20,6 +20,9 @@ CONFIG_BFIN_CPU := $(strip $(CONFIG_BFIN_CPU:"%"=%))
endif
CONFIG_BFIN_BOOT_MODE := $(strip $(CONFIG_BFIN_BOOT_MODE:"%"=%))
+# Support generic board on Blackfin
+__HAVE_ARCH_GENERIC_BOARD := y
+
PLATFORM_RELFLAGS += -ffixed-P3 -fomit-frame-pointer -mno-fdpic
PLATFORM_CPPFLAGS += -DCONFIG_BLACKFIN
diff --git a/arch/blackfin/cpu/cpu.c b/arch/blackfin/cpu/cpu.c
index 2409c30..6913879 100644
--- a/arch/blackfin/cpu/cpu.c
+++ b/arch/blackfin/cpu/cpu.c
@@ -11,17 +11,21 @@
#include <common.h>
#include <command.h>
+#include <serial.h>
+#include <version.h>
+
#include <asm/blackfin.h>
#include <asm/cplb.h>
+#include <asm/clock.h>
#include <asm/mach-common/bits/core.h>
#include <asm/mach-common/bits/ebiu.h>
#include <asm/mach-common/bits/trace.h>
-#include <asm/serial.h>
#include "cpu.h"
#include "initcode.h"
ulong bfin_poweron_retx;
+DECLARE_GLOBAL_DATA_PTR;
#if defined(CONFIG_CORE1_RUN) && defined(COREB_L1_CODE_START)
void bfin_core1_start(void)
@@ -48,6 +52,252 @@ void bfin_core1_start(void)
}
#endif
+__attribute__((always_inline))
+static inline void serial_early_puts(const char *s)
+{
+#ifdef CONFIG_DEBUG_EARLY_SERIAL
+ serial_puts("Early: ");
+ serial_puts(s);
+#endif
+}
+
+static int global_board_data_init(void)
+{
+#ifndef CONFIG_SYS_GBL_DATA_ADDR
+# define CONFIG_SYS_GBL_DATA_ADDR 0
+#endif
+#ifndef CONFIG_SYS_BD_INFO_ADDR
+# define CONFIG_SYS_BD_INFO_ADDR 0
+#endif
+
+ bd_t *bd;
+
+ if (CONFIG_SYS_GBL_DATA_ADDR) {
+ gd = (gd_t *)(CONFIG_SYS_GBL_DATA_ADDR);
+ memset((void *)gd, 0, GENERATED_GBL_DATA_SIZE);
+ } else {
+ static gd_t _bfin_gd;
+ gd = &_bfin_gd;
+ }
+ if (CONFIG_SYS_BD_INFO_ADDR) {
+ bd = (bd_t *)(CONFIG_SYS_BD_INFO_ADDR);
+ memset(bd, 0, GENERATED_BD_INFO_SIZE);
+ } else {
+ static bd_t _bfin_bd;
+ bd = &_bfin_bd;
+ }
+
+ gd->bd = bd;
+
+ bd->bi_r_version = version_string;
+ bd->bi_cpu = __stringify(CONFIG_BFIN_CPU);
+ bd->bi_board_name = CONFIG_SYS_BOARD;
+ bd->bi_vco = get_vco();
+ bd->bi_cclk = get_cclk();
+ bd->bi_sclk = get_sclk();
+ bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
+ bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
+
+ gd->ram_size = CONFIG_SYS_MAX_RAM_SIZE;
+
+ return 0;
+}
+
+static void display_global_data(void)
+{
+ bd_t *bd;
+
+#ifndef CONFIG_DEBUG_EARLY_SERIAL
+ return;
+#endif
+
+ bd = gd->bd;
+ printf(" gd: %p\n", gd);
+ printf(" |-flags: %lx\n", gd->flags);
+ printf(" |-board_type: %lx\n", gd->arch.board_type);
+ printf(" |-baudrate: %u\n", gd->baudrate);
+ printf(" |-have_console: %lx\n", gd->have_console);
+ printf(" |-ram_size: %lx\n", gd->ram_size);
+ printf(" |-env_addr: %lx\n", gd->env_addr);
+ printf(" |-env_valid: %lx\n", gd->env_valid);
+ printf(" |-jt(%p): %p\n", gd->jt, *(gd->jt));
+ printf(" \\-bd: %p\n", gd->bd);
+ printf(" |-bi_boot_params: %lx\n", bd->bi_boot_params);
+ printf(" |-bi_memstart: %lx\n", bd->bi_memstart);
+ printf(" |-bi_memsize: %lx\n", bd->bi_memsize);
+ printf(" |-bi_flashstart: %lx\n", bd->bi_flashstart);
+ printf(" |-bi_flashsize: %lx\n", bd->bi_flashsize);
+ printf(" \\-bi_flashoffset: %lx\n", bd->bi_flashoffset);
+}
+
+#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
+#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
+#if defined(__ADSPBF60x__)
+#define CPLB_EX_PAGE_SIZE (16 * 1024 * 1024)
+#define CPLB_EX_PAGE_MASK (~(CPLB_EX_PAGE_SIZE - 1))
+#else
+#define CPLB_EX_PAGE_SIZE CPLB_PAGE_SIZE
+#define CPLB_EX_PAGE_MASK CPLB_PAGE_MASK
+#endif
+void init_cplbtables(void)
+{
+ uint32_t *ICPLB_ADDR, *ICPLB_DATA;
+ uint32_t *DCPLB_ADDR, *DCPLB_DATA;
+ uint32_t extern_memory;
+ size_t i;
+
+ void icplb_add(uint32_t addr, uint32_t data)
+ {
+ bfin_write32(ICPLB_ADDR + i, addr);
+ bfin_write32(ICPLB_DATA + i, data);
+ }
+ void dcplb_add(uint32_t addr, uint32_t data)
+ {
+ bfin_write32(DCPLB_ADDR + i, addr);
+ bfin_write32(DCPLB_DATA + i, data);
+ }
+
+ /* populate a few common entries ... we'll let
+ * the memory map and cplb exception handler do
+ * the rest of the work.
+ */
+ i = 0;
+ ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
+ ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
+ DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
+ DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
+
+ icplb_add(0xFFA00000, L1_IMEMORY);
+ dcplb_add(0xFF800000, L1_DMEMORY);
+ ++i;
+#if defined(__ADSPBF60x__)
+ icplb_add(0x0, 0x0);
+ dcplb_add(CONFIG_SYS_FLASH_BASE, PAGE_SIZE_16MB | CPLB_DIRTY |
+ CPLB_SUPV_WR | CPLB_USER_WR | CPLB_USER_RD | CPLB_VALID);
+ ++i;
+#endif
+
+ if (CONFIG_MEM_SIZE) {
+ uint32_t mbase = CONFIG_SYS_MONITOR_BASE;
+ uint32_t mend = mbase + CONFIG_SYS_MONITOR_LEN - 1;
+ mbase &= CPLB_PAGE_MASK;
+ mend &= CPLB_PAGE_MASK;
+
+ icplb_add(mbase, SDRAM_IKERNEL);
+ dcplb_add(mbase, SDRAM_DKERNEL);
+ ++i;
+
+ /*
+ * If the monitor crosses a 4 meg boundary, we'll need
+ * to lock two entries for it. We assume it doesn't
+ * cross two 4 meg boundaries ...
+ */
+ if (mbase != mend) {
+ icplb_add(mend, SDRAM_IKERNEL);
+ dcplb_add(mend, SDRAM_DKERNEL);
+ ++i;
+ }
+ }
+
+#ifndef __ADSPBF60x__
+ icplb_add(0x20000000, SDRAM_INON_CHBL);
+ dcplb_add(0x20000000, SDRAM_EBIU);
+ ++i;
+#endif
+
+ /* Add entries for the rest of external RAM up to the bootrom */
+ extern_memory = 0;
+
+#ifdef CONFIG_DEBUG_NULL_PTR
+ icplb_add(extern_memory,
+ (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
+ dcplb_add(extern_memory,
+ (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
+ ++i;
+ icplb_add(extern_memory, SDRAM_IKERNEL);
+ dcplb_add(extern_memory, SDRAM_DKERNEL);
+ extern_memory += CPLB_PAGE_SIZE;
+ ++i;
+#endif
+
+ while (i < 16 && extern_memory <
+ (CONFIG_SYS_MONITOR_BASE & CPLB_EX_PAGE_MASK)) {
+ icplb_add(extern_memory, SDRAM_IGENERIC);
+ dcplb_add(extern_memory, SDRAM_DGENERIC);
+ extern_memory += CPLB_EX_PAGE_SIZE;
+ ++i;
+ }
+ while (i < 16) {
+ icplb_add(0, 0);
+ dcplb_add(0, 0);
+ ++i;
+ }
+}
+
+int print_cpuinfo(void)
+{
+ char buf[32];
+
+ printf("CPU: ADSP %s (Detected Rev: 0.%d) (%s boot)\n",
+ gd->bd->bi_cpu,
+ bfin_revid(),
+ get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
+
+ printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
+ printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
+#if defined(__ADSPBF60x__)
+ printf("System0: %s MHz, ", strmhz(buf, get_sclk0()));
+ printf("System1: %s MHz, ", strmhz(buf, get_sclk1()));
+ printf("Dclk: %s MHz\n", strmhz(buf, get_dclk()));
+#else
+ printf("System: %s MHz\n", strmhz(buf, get_sclk()));
+#endif
+
+ return 0;
+}
+
+int exception_init(void)
+{
+ bfin_write_EVT3(trap);
+ return 0;
+}
+
+int irq_init(void)
+{
+#ifdef SIC_IMASK0
+ bfin_write_SIC_IMASK0(0);
+ bfin_write_SIC_IMASK1(0);
+# ifdef SIC_IMASK2
+ bfin_write_SIC_IMASK2(0);
+# endif
+#elif defined(SICA_IMASK0)
+ bfin_write_SICA_IMASK0(0);
+ bfin_write_SICA_IMASK1(0);
+#elif defined(SIC_IMASK)
+ bfin_write_SIC_IMASK(0);
+#endif
+ /* Set up a dummy NMI handler if needed. */
+ if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_BYPASS || ANOMALY_05000219)
+ bfin_write_EVT2(evt_nmi); /* NMI */
+ bfin_write_EVT5(evt_default); /* hardware error */
+ bfin_write_EVT6(evt_default); /* core timer */
+ bfin_write_EVT7(evt_default);
+ bfin_write_EVT8(evt_default);
+ bfin_write_EVT9(evt_default);
+ bfin_write_EVT10(evt_default);
+ bfin_write_EVT11(evt_default);
+ bfin_write_EVT12(evt_default);
+ bfin_write_EVT13(evt_default);
+ bfin_write_EVT14(evt_default);
+ bfin_write_EVT15(evt_default);
+ bfin_write_ILAT(0);
+ CSYNC();
+ /* enable hardware error irq */
+ irq_flags = 0x3f;
+ local_irq_enable();
+ return 0;
+}
+
__attribute__ ((__noreturn__))
void cpu_init_f(ulong bootflag, ulong loaded_from_ldr)
{
@@ -102,51 +352,62 @@ void cpu_init_f(ulong bootflag, ulong loaded_from_ldr)
bfin_core1_start();
#endif
- serial_early_puts("Board init flash\n");
- board_init_f(bootflag);
+ serial_early_puts("Init global data\n");
+ global_board_data_init();
+
+ board_init_f(0);
/* should not be reached */
while (1);
}
-int exception_init(void)
+int arch_cpu_init(void)
{
- bfin_write_EVT3(trap);
+ serial_early_puts("Init CPLB tables\n");
+ init_cplbtables();
+
+ serial_early_puts("Exceptions setup\n");
+ exception_init();
+
+#ifndef CONFIG_ICACHE_OFF
+ serial_early_puts("Turn on ICACHE\n");
+ icache_enable();
+#endif
+#ifndef CONFIG_DCACHE_OFF
+ serial_early_puts("Turn on DCACHE\n");
+ dcache_enable();
+#endif
+
+#ifdef DEBUG
+ if (GENERATED_GBL_DATA_SIZE < sizeof(*gd))
+ hang();
+#endif
+
+ /* Initialize */
+ serial_early_puts("IRQ init\n");
+ irq_init();
+
return 0;
}
-int irq_init(void)
+int arch_misc_init(void)
{
-#ifdef SIC_IMASK0
- bfin_write_SIC_IMASK0(0);
- bfin_write_SIC_IMASK1(0);
-# ifdef SIC_IMASK2
- bfin_write_SIC_IMASK2(0);
-# endif
-#elif defined(SICA_IMASK0)
- bfin_write_SICA_IMASK0(0);
- bfin_write_SICA_IMASK1(0);
-#elif defined(SIC_IMASK)
- bfin_write_SIC_IMASK(0);
+#if defined(CONFIG_SYS_I2C)
+ i2c_reloc_fixup();
#endif
- /* Set up a dummy NMI handler if needed. */
- if (CONFIG_BFIN_BOOT_MODE == BFIN_BOOT_BYPASS || ANOMALY_05000219)
- bfin_write_EVT2(evt_nmi); /* NMI */
- bfin_write_EVT5(evt_default); /* hardware error */
- bfin_write_EVT6(evt_default); /* core timer */
- bfin_write_EVT7(evt_default);
- bfin_write_EVT8(evt_default);
- bfin_write_EVT9(evt_default);
- bfin_write_EVT10(evt_default);
- bfin_write_EVT11(evt_default);
- bfin_write_EVT12(evt_default);
- bfin_write_EVT13(evt_default);
- bfin_write_EVT14(evt_default);
- bfin_write_EVT15(evt_default);
- bfin_write_ILAT(0);
- CSYNC();
- /* enable hardware error irq */
- irq_flags = 0x3f;
- local_irq_enable();
+
+ display_global_data();
+
+ if (CONFIG_MEM_SIZE && bfin_os_log_check()) {
+ puts("\nLog buffer from operating system:\n");
+ bfin_os_log_dump();
+ puts("\n");
+ }
+
+ return 0;
+}
+
+int interrupt_init(void)
+{
return 0;
}
diff --git a/arch/blackfin/cpu/start.S b/arch/blackfin/cpu/start.S
index 29a7c23..f31abfa 100644
--- a/arch/blackfin/cpu/start.S
+++ b/arch/blackfin/cpu/start.S
@@ -196,8 +196,8 @@ ENTRY(_start)
* takes care of clearing things for us.
*/
serial_early_puts("Zero BSS");
- r0.l = __bss_vma;
- r0.h = __bss_vma;
+ r0.l = __bss_start;
+ r0.h = __bss_start;
r1 = 0 (x);
r2.l = __bss_len;
r2.h = __bss_len;
@@ -251,3 +251,13 @@ LENTRY(_get_pc)
#endif
rts;
ENDPROC(_get_pc)
+
+ENTRY(_relocate_code)
+ /* Fake relocate code. Setup the new stack only */
+ sp = r0;
+ fp = sp;
+ r0 = p3;
+ r1.h = 0x2000;
+ r1.l = 0x10;
+ jump.l _board_init_r
+ENDPROC(_relocate_code)
diff --git a/arch/blackfin/cpu/u-boot.lds b/arch/blackfin/cpu/u-boot.lds
index 7f0411f..ae1b813 100644
--- a/arch/blackfin/cpu/u-boot.lds
+++ b/arch/blackfin/cpu/u-boot.lds
@@ -135,6 +135,8 @@ SECTIONS
*(COMMON)
. = ALIGN(4);
} >ram_data
- __bss_vma = ADDR(.bss);
+ __bss_end = .;
+ __bss_start = ADDR(.bss);
__bss_len = SIZEOF(.bss);
+ __init_end = .;
}
diff --git a/arch/blackfin/include/asm/u-boot.h b/arch/blackfin/include/asm/u-boot.h
index acaeee9..7b5cf6a 100644
--- a/arch/blackfin/include/asm/u-boot.h
+++ b/arch/blackfin/include/asm/u-boot.h
@@ -25,9 +25,12 @@ typedef struct bd_info {
unsigned long bi_vco;
unsigned long bi_cclk;
unsigned long bi_sclk;
+ unsigned char bi_enetaddr[6];
} bd_t;
/* For image.h:image_check_target_arch() */
#define IH_ARCH_DEFAULT IH_ARCH_BLACKFIN
+int arch_misc_init(void);
+
#endif /* _U_BOOT_H_ */
diff --git a/arch/blackfin/lib/Makefile b/arch/blackfin/lib/Makefile
index 4ba7bf6..b534a98 100644
--- a/arch/blackfin/lib/Makefile
+++ b/arch/blackfin/lib/Makefile
@@ -9,11 +9,6 @@
# SPDX-License-Identifier: GPL-2.0+
#
-# Unnecessary.
-# Use CONFIG_SYS_BOARD instead of BFIN_BOARD_NAME
-# and delete this.
-ccflags-y += -DBFIN_BOARD_NAME='"$(BOARD)"'
-
obj-y += ins.o
obj-y += memcmp.o
obj-y += memcpy.o
@@ -21,7 +16,6 @@ obj-y += memmove.o
obj-y += memset.o
obj-y += outs.o
obj-$(CONFIG_CMD_KGDB) += __kgdb.o
-obj-y += board.o
obj-y += boot.o
obj-y += cache.o
obj-y += clocks.o
@@ -30,3 +24,4 @@ obj-$(CONFIG_CMD_KGDB) += kgdb.o
obj-y += muldi3.o
obj-$(CONFIG_HAS_POST) += post.o
obj-y += string.o
+obj-y += sections.o
diff --git a/arch/blackfin/lib/board.c b/arch/blackfin/lib/board.c
deleted file mode 100644
index 8784255..0000000
--- a/arch/blackfin/lib/board.c
+++ /dev/null
@@ -1,443 +0,0 @@
-/*
- * U-boot - board.c First C file to be called contains init routines
- *
- * Copyright (c) 2005-2008 Analog Devices Inc.
- *
- * (C) Copyright 2000-2004
- * Wolfgang Denk, DENX Software Engineering, wd(a)denx.de.
- *
- * Licensed under the GPL-2 or later.
- */
-
-#include <common.h>
-#include <command.h>
-#include <stdio_dev.h>
-#include <serial.h>
-#include <environment.h>
-#include <malloc.h>
-#include <mmc.h>
-#include <net.h>
-#include <status_led.h>
-#include <version.h>
-#include <watchdog.h>
-
-#include <asm/cplb.h>
-#include <asm/mach-common/bits/mpu.h>
-#include <asm/clock.h>
-#include <kgdb.h>
-
-#ifdef CONFIG_CMD_NAND
-#include <nand.h> /* cannot even include nand.h if it isnt configured */
-#endif
-
-#ifdef CONFIG_BITBANGMII
-#include <miiphy.h>
-#endif
-
-#if defined(CONFIG_POST)
-#include <post.h>
-int post_flag;
-#endif
-
-#if defined(CONFIG_SYS_I2C)
-#include <i2c.h>
-#endif
-
-DECLARE_GLOBAL_DATA_PTR;
-
-__attribute__((always_inline))
-static inline void serial_early_puts(const char *s)
-{
-#ifdef CONFIG_DEBUG_EARLY_SERIAL
- serial_puts("Early: ");
- serial_puts(s);
-#endif
-}
-
-static int display_banner(void)
-{
- display_options();
- printf("CPU: ADSP %s "
- "(Detected Rev: 0.%d) "
- "(%s boot)\n",
- gd->bd->bi_cpu,
- bfin_revid(),
- get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
- return 0;
-}
-
-static int init_baudrate(void)
-{
- gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
- return 0;
-}
-
-static void display_global_data(void)
-{
- bd_t *bd;
-
-#ifndef CONFIG_DEBUG_EARLY_SERIAL
- return;
-#endif
-
- bd = gd->bd;
- printf(" gd: %p\n", gd);
- printf(" |-flags: %lx\n", gd->flags);
- printf(" |-board_type: %lx\n", gd->arch.board_type);
- printf(" |-baudrate: %u\n", gd->baudrate);
- printf(" |-have_console: %lx\n", gd->have_console);
- printf(" |-ram_size: %lx\n", gd->ram_size);
- printf(" |-env_addr: %lx\n", gd->env_addr);
- printf(" |-env_valid: %lx\n", gd->env_valid);
- printf(" |-jt(%p): %p\n", gd->jt, *(gd->jt));
- printf(" \\-bd: %p\n", gd->bd);
- printf(" |-bi_boot_params: %lx\n", bd->bi_boot_params);
- printf(" |-bi_memstart: %lx\n", bd->bi_memstart);
- printf(" |-bi_memsize: %lx\n", bd->bi_memsize);
- printf(" |-bi_flashstart: %lx\n", bd->bi_flashstart);
- printf(" |-bi_flashsize: %lx\n", bd->bi_flashsize);
- printf(" \\-bi_flashoffset: %lx\n", bd->bi_flashoffset);
-}
-
-#define CPLB_PAGE_SIZE (4 * 1024 * 1024)
-#define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
-#if defined(__ADSPBF60x__)
-#define CPLB_EX_PAGE_SIZE (16 * 1024 * 1024)
-#define CPLB_EX_PAGE_MASK (~(CPLB_EX_PAGE_SIZE - 1))
-#else
-#define CPLB_EX_PAGE_SIZE CPLB_PAGE_SIZE
-#define CPLB_EX_PAGE_MASK CPLB_PAGE_MASK
-#endif
-void init_cplbtables(void)
-{
- volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
- volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
- uint32_t extern_memory;
- size_t i;
-
- void icplb_add(uint32_t addr, uint32_t data)
- {
- *(ICPLB_ADDR + i) = addr;
- *(ICPLB_DATA + i) = data;
- }
- void dcplb_add(uint32_t addr, uint32_t data)
- {
- *(DCPLB_ADDR + i) = addr;
- *(DCPLB_DATA + i) = data;
- }
-
- /* populate a few common entries ... we'll let
- * the memory map and cplb exception handler do
- * the rest of the work.
- */
- i = 0;
- ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
- ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
- DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
- DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
-
- icplb_add(0xFFA00000, L1_IMEMORY);
- dcplb_add(0xFF800000, L1_DMEMORY);
- ++i;
-#if defined(__ADSPBF60x__)
- icplb_add(0x0, 0x0);
- dcplb_add(CONFIG_SYS_FLASH_BASE, PAGE_SIZE_16MB | CPLB_DIRTY |
- CPLB_SUPV_WR | CPLB_USER_WR | CPLB_USER_RD | CPLB_VALID);
- ++i;
-#endif
-
- if (CONFIG_MEM_SIZE) {
- uint32_t mbase = CONFIG_SYS_MONITOR_BASE;
- uint32_t mend = mbase + CONFIG_SYS_MONITOR_LEN;
- mbase &= CPLB_PAGE_MASK;
- mend &= CPLB_PAGE_MASK;
-
- icplb_add(mbase, SDRAM_IKERNEL);
- dcplb_add(mbase, SDRAM_DKERNEL);
- ++i;
-
- /*
- * If the monitor crosses a 4 meg boundary, we'll need
- * to lock two entries for it. We assume it doesn't
- * cross two 4 meg boundaries ...
- */
- if (mbase != mend) {
- icplb_add(mend, SDRAM_IKERNEL);
- dcplb_add(mend, SDRAM_DKERNEL);
- ++i;
- }
- }
-
-#ifndef __ADSPBF60x__
- icplb_add(0x20000000, SDRAM_INON_CHBL);
- dcplb_add(0x20000000, SDRAM_EBIU);
- ++i;
-#endif
-
- /* Add entries for the rest of external RAM up to the bootrom */
- extern_memory = 0;
-
-#ifdef CONFIG_DEBUG_NULL_PTR
- icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
- dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
- ++i;
- icplb_add(extern_memory, SDRAM_IKERNEL);
- dcplb_add(extern_memory, SDRAM_DKERNEL);
- extern_memory += CPLB_PAGE_SIZE;
- ++i;
-#endif
-
- while (i < 16 && extern_memory <
- (CONFIG_SYS_MONITOR_BASE & CPLB_EX_PAGE_MASK)) {
- icplb_add(extern_memory, SDRAM_IGENERIC);
- dcplb_add(extern_memory, SDRAM_DGENERIC);
- extern_memory += CPLB_EX_PAGE_SIZE;
- ++i;
- }
- while (i < 16) {
- icplb_add(0, 0);
- dcplb_add(0, 0);
- ++i;
- }
-}
-
-static int global_board_data_init(void)
-{
-#ifndef CONFIG_SYS_GBL_DATA_ADDR
-# define CONFIG_SYS_GBL_DATA_ADDR 0
-#endif
-#ifndef CONFIG_SYS_BD_INFO_ADDR
-# define CONFIG_SYS_BD_INFO_ADDR 0
-#endif
-
- bd_t *bd;
-
- if (CONFIG_SYS_GBL_DATA_ADDR) {
- gd = (gd_t *) (CONFIG_SYS_GBL_DATA_ADDR);
- memset((void *)gd, 0, GENERATED_GBL_DATA_SIZE);
- } else {
- static gd_t _bfin_gd;
- gd = &_bfin_gd;
- }
-
- if (CONFIG_SYS_BD_INFO_ADDR) {
- bd = (bd_t *) (CONFIG_SYS_BD_INFO_ADDR);
- memset(bd, 0, GENERATED_BD_INFO_SIZE);
- } else {
- static bd_t _bfin_bd;
- bd = &_bfin_bd;
- }
- gd->bd = bd;
-
- bd->bi_r_version = version_string;
- bd->bi_cpu = __stringify(CONFIG_BFIN_CPU);
- bd->bi_board_name = BFIN_BOARD_NAME;
- bd->bi_vco = get_vco();
- bd->bi_cclk = get_cclk();
- bd->bi_sclk = get_sclk();
- bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
- bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
-
- return 0;
-}
-
-/*
- * All attempts to come up with a "common" initialization sequence
- * that works for all boards and architectures failed: some of the
- * requirements are just _too_ different. To get rid of the resulting
- * mess of board dependend #ifdef'ed code we now make the whole
- * initialization sequence configurable to the user.
- *
- * The requirements for any new initalization function is simple: it
- * receives a pointer to the "global data" structure as it's only
- * argument, and returns an integer return code, where 0 means
- * "continue" and != 0 means "fatal error, hang the system".
- */
-
-extern int watchdog_init(void);
-extern int exception_init(void);
-extern int irq_init(void);
-extern int timer_init(void);
-
-void board_init_f(ulong bootflag)
-{
- char buf[32];
-
-#ifdef CONFIG_BOARD_EARLY_INIT_F
- serial_early_puts("Board early init flash\n");
- board_early_init_f();
-#endif
-
- serial_early_puts("Init CPLB tables\n");
- init_cplbtables();
-
- serial_early_puts("Exceptions setup\n");
- exception_init();
-
-#ifndef CONFIG_ICACHE_OFF
- serial_early_puts("Turn on ICACHE\n");
- icache_enable();
-#endif
-#ifndef CONFIG_DCACHE_OFF
- serial_early_puts("Turn on DCACHE\n");
- dcache_enable();
-#endif
-
-#ifdef CONFIG_HW_WATCHDOG
- serial_early_puts("Setting up external watchdog\n");
- hw_watchdog_init();
-#endif
-
-#ifdef DEBUG
- if (GENERATED_GBL_DATA_SIZE < sizeof(*gd))
- hang();
-#endif
- serial_early_puts("Init global data\n");
-
- global_board_data_init();
-
- /* Initialize */
- serial_early_puts("IRQ init\n");
- irq_init();
- serial_early_puts("Environment init\n");
- env_init();
- serial_early_puts("Baudrate init\n");
- init_baudrate();
- serial_early_puts("Serial init\n");
- serial_init();
- serial_initialize();
- serial_early_puts("Console init flash\n");
- console_init_f();
- serial_early_puts("End of early debugging\n");
- display_banner();
-
- checkboard();
- timer_init();
-
- printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
- printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
-#if defined(__ADSPBF60x__)
- printf("System0: %s MHz, ", strmhz(buf, get_sclk0()));
- printf("System1: %s MHz, ", strmhz(buf, get_sclk1()));
- printf("Dclk: %s MHz\n", strmhz(buf, get_dclk()));
-#else
- printf("System: %s MHz\n", strmhz(buf, get_sclk()));
-#endif
-
- if (CONFIG_MEM_SIZE) {
- printf("RAM: ");
- print_size(gd->bd->bi_memsize, "\n");
- }
-
-#if defined(CONFIG_POST)
- post_init_f();
- post_bootmode_init();
- post_run(NULL, POST_ROM | post_bootmode_get(0));
-#endif
-
- board_init_r((gd_t *) gd, 0x20000010);
-}
-
-static void board_net_init_r(bd_t *bd)
-{
-#ifdef CONFIG_BITBANGMII
- bb_miiphy_init();
-#endif
-#ifdef CONFIG_CMD_NET
- printf("Net: ");
- eth_initialize(bd);
-#endif
-}
-
-void board_init_r(gd_t * id, ulong dest_addr)
-{
- bd_t *bd;
- gd = id;
- gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
- bd = gd->bd;
-
-#if defined(CONFIG_POST)
- post_output_backlog();
-#endif
-
- /* initialize malloc() area */
- mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN);
-
-#if !defined(CONFIG_SYS_NO_FLASH)
- /* Initialize the flash and protect u-boot by default */
- extern flash_info_t flash_info[];
- puts("Flash: ");
- ulong size = flash_init();
- print_size(size, "\n");
- flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE,
- CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - 1,
- &flash_info[0]);
- bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
- bd->bi_flashsize = size;
- bd->bi_flashoffset = 0;
-#else
- bd->bi_flashstart = 0;
- bd->bi_flashsize = 0;
- bd->bi_flashoffset = 0;
-#endif
-
-#ifdef CONFIG_CMD_NAND
- puts("NAND: ");
- nand_init(); /* go init the NAND */
-#endif
-
-#ifdef CONFIG_GENERIC_MMC
- puts("MMC: ");
- mmc_initialize(bd);
-#endif
-
-#if defined(CONFIG_SYS_I2C)
- i2c_reloc_fixup();
-#endif
- /* relocate environment function pointers etc. */
- env_relocate();
-
- /* Initialize stdio devices */
- stdio_init();
- jumptable_init();
-
- /* Initialize the console (after the relocation and devices init) */
- console_init_r();
-
-#ifdef CONFIG_CMD_KGDB
- puts("KGDB: ");
- kgdb_init();
-#endif
-
-#ifdef CONFIG_STATUS_LED
- status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
- status_led_set(STATUS_LED_CRASH, STATUS_LED_OFF);
-#endif
-
- /* Initialize from environment */
- load_addr = getenv_ulong("loadaddr", 16, load_addr);
-
-#if defined(CONFIG_MISC_INIT_R)
- /* miscellaneous platform dependent initialisations */
- misc_init_r();
-#endif
-
- board_net_init_r(bd);
-
- display_global_data();
-
-#if defined(CONFIG_POST)
- if (post_flag)
- post_run(NULL, POST_RAM | post_bootmode_get(0));
-#endif
-
- if (CONFIG_MEM_SIZE && bfin_os_log_check()) {
- puts("\nLog buffer from operating system:\n");
- bfin_os_log_dump();
- puts("\n");
- }
-
- /* main_loop() can return to retry autoboot, if so just run it again. */
- for (;;)
- main_loop();
-}
diff --git a/arch/blackfin/lib/sections.c b/arch/blackfin/lib/sections.c
new file mode 100644
index 0000000..b50f30a
--- /dev/null
+++ b/arch/blackfin/lib/sections.c
@@ -0,0 +1,11 @@
+/*
+ * U-boot - section.c
+ *
+ * Copyright (c) 2014 Analog Devices Inc.
+ *
+ * Licensed under the GPL-2 or later.
+ */
+
+char __bss_start[0] __attribute__((section(".__bss_start")));
+char __bss_end[0] __attribute__((section(".__bss_end")));
+char __init_end[0] __attribute__((section(".__init_end")));
diff --git a/include/configs/bfin_adi_common.h b/include/configs/bfin_adi_common.h
index ea9acf6..19160ce 100644
--- a/include/configs/bfin_adi_common.h
+++ b/include/configs/bfin_adi_common.h
@@ -327,4 +327,8 @@
#ifndef CONFIG_ADI_GPIO2
# define CONFIG_ADI_GPIO1
#endif
+#define CONFIG_SYS_GENERIC_BOARD
+#define CONFIG_DISPLAY_CPUINFO
+#define CONFIG_ARCH_MISC_INIT
+
#endif
--
1.8.2.3
2
4
This series introduces Kconfig.
Besides Linux Kernel, Kconfig is used in some projects,
such as, BusyBox, Buildroot.
But our situation is a little more complicated.
For one board, we need to generate 3 images at most:
Normal image, SPL and TPL.
Each image needs its own configuration input.
How does Kconfig in U-Boot work?
--------------------------------
For boards without SPL support, it works as in Linux Kernel.
"make <board>_defconfig" creates .config for you.
You can use "make config", "make menuconfig" etc. to create a new .config
from scratch or update the existing one.
"make silentoldconfig", if it is necessary, is automatically invoked
updating include/generated/autoconf.h and files under include/config/
directory.
For boards with SPL/TPL support, another .config file is created
under spl/tpl directory.
Use "make spl/config", "make spl/menuconfig" etc. to modify spl/.config
and "make tpl/config", "make tpl/menuconfig" etc. for tpl/.config.
How to configure and build?
---------------------------
For board configuration, "make <board>_defconfig" is used instead of
"make <board>_config". The other things are the same as before.
Coexistence of Kconfig and board header
---------------------------------------
For a long time, we have used C header files to define the set of CONFIGs.
It would take really long term (one year? two year? I don't know)
to migrate from board headers to Kconfig.
So, two different infractructure must coexist in the interim.
CONFIG macros defined in C headers are collected into
include/autoconf.mk, spl/include/autoconf.mk, tpl/include/autoconf.mk
for use in makefiles.
What is new in v7 ?
-------------------
Rebasing onto the current u-boot/master and
minor updates in python scripts, scripts/multiconfig.py
and tools/genboardscfg.py
- Delete incomplete boards.cfg file when the genboards.cfg
tool is terminated on the halfway.
- Follow PEP8 and PEP257 coding style
Use """blah blah""" rather than '''blah blah''' for docstring.
Fix some indents
Add a period of the end of the first line of docstring
- Do not hard-code 'make' command name. Use scripts/show-gnu-make
- Add specific exception class
- Add a blank line to some places for readability
- Remove temporary directories
What is new in v6 ?
-------------------
Various Fixes based on Simon's feedback.
The biggest one is that the command syntax fix.
It turned out "make spl:config" etc. did not work
for out-of-tree build.
In v6, use "make spl/config" etc. for that.
Comments in scripts/multiconfig.py have been fixed.
What is new in v5 ?
-------------------
[1] Add CPU selection layer for PowerPC
ARCH select
|--- CPU select
|--- board select
In v4, there were too many boards in the menu of
PowerPC board select.
In v5, CPU select has been added between ARCH select
and board select.
[2] Improve the tool to generate boards.cfg
What is new in v4 ?
-------------------
[1] Single defconfig per board
In v3, one board can have multiple defconfigs.
For example, "omap3_beagle" board had
configs/omap3_beagle_defconfig and configs/omap3_beagle_spl_defconfig.
One problem of this approach is that some configs such as
CONFIG_ARM=y are duplicated between the omap3_beagle_defconfig and
omap3_beagle_spl_defconfig.
In v4, defconfigs for Normal, SPL, TPL images are coalesced together
into a single file by adding special syntaxes to support conditional
definition.
[2] Add MAINTAINERS files
[3] Add a tool to generate boards.cfg and drop it from the git repository
Build Test
----------
I built all boards excepts some already broken ones.
I also checked MD5SUM of output binaries for all of them.
I believe this series should not break any boards.
But if you notice something got broken, please let me know.
Besides, I confirmed out-of-tree build, parallel build (-j make option)
works correctly.
How to apply this series
------------------------
I confirmed this series can be applied on commit 302e609f
+ the following prerequisites.
http://patchwork.ozlabs.org/patch/372339/
http://patchwork.ozlabs.org/patch/372337/
http://patchwork.ozlabs.org/patch/372338/
http://patchwork.ozlabs.org/patch/372347/
http://patchwork.ozlabs.org/patch/373391/
Masahiro Yamada (15):
kconfig: import Kconfig files from Linux 3.16-rc7
Do not apply: tools: add genkconfig
kconfig: add board Kconfig and defconfig files
kconfig: add basic Kconfig files
include: define CONFIG_SPL and CONFIG_TPL as 1
kconfig: switch to Kconfig
Do not apply: tools: add gen_maintainers.py
Add board MAINTAINERS files
tools: add genboardscfg.py
kconfig: remove mkconfig and boards.cfg
MAKEALL: adjust for Kconfig
buildman: adjust for Kconfig
kconfig: delete redundant CONFIG_${ARCH} definition
powerpc: remove redundant CPU definition
include: remove CONFIG_SPL/CONFIG_TPL definition in config headers
.gitignore | 3 +-
Kconfig | 65 +
MAKEALL | 14 +-
Makefile | 116 +-
arch/Kconfig | 66 +
arch/arc/Kconfig | 29 +
arch/arc/config.mk | 2 +-
arch/arm/Kconfig | 989 ++++++++
arch/arm/config.mk | 2 +-
arch/avr32/Kconfig | 51 +
arch/avr32/config.mk | 1 -
arch/blackfin/Kconfig | 150 ++
arch/blackfin/config.mk | 1 -
arch/m68k/Kconfig | 98 +
arch/m68k/config.mk | 2 +-
arch/m68k/cpu/mcf52x2/config.mk | 16 +-
arch/m68k/cpu/mcf532x/config.mk | 6 +-
arch/m68k/cpu/mcf5445x/config.mk | 4 +-
arch/microblaze/Kconfig | 18 +
arch/mips/Kconfig | 37 +
arch/mips/config.mk | 2 +-
arch/nds32/Kconfig | 26 +
arch/nds32/config.mk | 2 +-
arch/nios2/Kconfig | 26 +
arch/nios2/config.mk | 2 +-
arch/openrisc/Kconfig | 18 +
arch/openrisc/config.mk | 2 +-
arch/powerpc/Kconfig | 58 +
arch/powerpc/config.mk | 2 +-
arch/powerpc/cpu/74xx_7xx/Kconfig | 49 +
arch/powerpc/cpu/74xx_7xx/config.mk | 2 +-
arch/powerpc/cpu/mpc512x/Kconfig | 34 +
arch/powerpc/cpu/mpc512x/config.mk | 2 +-
arch/powerpc/cpu/mpc5xx/Kconfig | 22 +
arch/powerpc/cpu/mpc5xx/config.mk | 2 +-
arch/powerpc/cpu/mpc5xxx/Kconfig | 154 ++
arch/powerpc/cpu/mpc5xxx/config.mk | 3 +-
arch/powerpc/cpu/mpc824x/Kconfig | 49 +
arch/powerpc/cpu/mpc824x/config.mk | 2 +-
arch/powerpc/cpu/mpc8260/Kconfig | 94 +
arch/powerpc/cpu/mpc8260/config.mk | 2 +-
arch/powerpc/cpu/mpc83xx/Kconfig | 100 +
arch/powerpc/cpu/mpc83xx/config.mk | 2 +-
arch/powerpc/cpu/mpc85xx/Kconfig | 190 ++
arch/powerpc/cpu/mpc85xx/config.mk | 2 +-
arch/powerpc/cpu/mpc86xx/Kconfig | 30 +
arch/powerpc/cpu/mpc86xx/config.mk | 2 +-
arch/powerpc/cpu/mpc8xx/Kconfig | 160 ++
arch/powerpc/cpu/mpc8xx/config.mk | 2 +-
arch/powerpc/cpu/ppc4xx/Kconfig | 322 +++
arch/powerpc/cpu/ppc4xx/config.mk | 6 +-
arch/sandbox/Kconfig | 16 +
arch/sandbox/config.mk | 2 +-
arch/sh/Kconfig | 98 +
arch/sparc/Kconfig | 34 +
arch/sparc/config.mk | 2 +-
arch/x86/Kconfig | 18 +
arch/x86/cpu/config.mk | 2 +-
board/8dtech/eco5pk/Kconfig | 23 +
board/8dtech/eco5pk/MAINTAINERS | 6 +
board/AndesTech/adp-ag101/Kconfig | 23 +
board/AndesTech/adp-ag101/MAINTAINERS | 6 +
board/AndesTech/adp-ag101p/Kconfig | 23 +
board/AndesTech/adp-ag101p/MAINTAINERS | 6 +
board/AndesTech/adp-ag102/Kconfig | 23 +
board/AndesTech/adp-ag102/MAINTAINERS | 6 +
board/Barix/ipam390/Kconfig | 23 +
board/Barix/ipam390/MAINTAINERS | 6 +
board/BuR/kwb/Kconfig | 23 +
board/BuR/kwb/MAINTAINERS | 6 +
board/BuR/tseries/Kconfig | 23 +
board/BuR/tseries/MAINTAINERS | 8 +
board/BuS/eb_cpu5282/Kconfig | 19 +
board/BuS/eb_cpu5282/MAINTAINERS | 7 +
board/BuS/eb_cpux9k2/Kconfig | 23 +
board/BuS/eb_cpux9k2/MAINTAINERS | 7 +
board/BuS/vl_ma2sc/Kconfig | 23 +
board/BuS/vl_ma2sc/MAINTAINERS | 7 +
board/CarMediaLab/flea3/Kconfig | 23 +
board/CarMediaLab/flea3/MAINTAINERS | 6 +
board/LEOX/elpt860/Kconfig | 15 +
board/LEOX/elpt860/MAINTAINERS | 6 +
board/LaCie/edminiv2/Kconfig | 23 +
board/LaCie/edminiv2/MAINTAINERS | 6 +
board/LaCie/net2big_v2/Kconfig | 23 +
board/LaCie/net2big_v2/MAINTAINERS | 11 +
board/LaCie/netspace_v2/Kconfig | 23 +
board/LaCie/netspace_v2/MAINTAINERS | 14 +
board/LaCie/wireless_space/Kconfig | 23 +
board/LaCie/wireless_space/MAINTAINERS | 6 +
board/Marvell/aspenite/Kconfig | 23 +
board/Marvell/aspenite/MAINTAINERS | 6 +
board/Marvell/db64360/Kconfig | 15 +
board/Marvell/db64360/MAINTAINERS | 6 +
board/Marvell/db64460/Kconfig | 15 +
board/Marvell/db64460/MAINTAINERS | 6 +
board/Marvell/dkb/Kconfig | 23 +
board/Marvell/dkb/MAINTAINERS | 6 +
board/Marvell/dreamplug/Kconfig | 23 +
board/Marvell/dreamplug/MAINTAINERS | 6 +
board/Marvell/gplugd/Kconfig | 23 +
board/Marvell/gplugd/MAINTAINERS | 6 +
board/Marvell/guruplug/Kconfig | 23 +
board/Marvell/guruplug/MAINTAINERS | 6 +
board/Marvell/mv88f6281gtw_ge/Kconfig | 23 +
board/Marvell/mv88f6281gtw_ge/MAINTAINERS | 6 +
board/Marvell/openrd/Kconfig | 23 +
board/Marvell/openrd/MAINTAINERS | 12 +
board/Marvell/rd6281a/Kconfig | 23 +
board/Marvell/rd6281a/MAINTAINERS | 6 +
board/Marvell/sheevaplug/Kconfig | 23 +
board/Marvell/sheevaplug/MAINTAINERS | 6 +
board/RRvision/Kconfig | 11 +
board/RRvision/MAINTAINERS | 7 +
board/Seagate/dockstar/Kconfig | 23 +
board/Seagate/dockstar/MAINTAINERS | 6 +
board/Seagate/goflexhome/Kconfig | 23 +
board/Seagate/goflexhome/MAINTAINERS | 6 +
board/a3000/Kconfig | 11 +
board/a3000/MAINTAINERS | 6 +
board/a3m071/Kconfig | 11 +
board/a3m071/MAINTAINERS | 7 +
board/a4m072/Kconfig | 11 +
board/a4m072/MAINTAINERS | 6 +
board/abilis/tb100/Kconfig | 19 +
board/abilis/tb100/MAINTAINERS | 6 +
board/afeb9260/Kconfig | 19 +
board/afeb9260/MAINTAINERS | 6 +
board/ait/cam_enc_4xx/Kconfig | 23 +
board/ait/cam_enc_4xx/MAINTAINERS | 6 +
board/alphaproject/ap_sh4a_4a/Kconfig | 19 +
board/alphaproject/ap_sh4a_4a/MAINTAINERS | 7 +
board/altera/nios2-generic/Kconfig | 15 +
board/altera/nios2-generic/MAINTAINERS | 6 +
board/altera/socfpga/Kconfig | 23 +
board/altera/socfpga/MAINTAINERS | 7 +
board/amcc/acadia/Kconfig | 15 +
board/amcc/acadia/MAINTAINERS | 6 +
board/amcc/bamboo/Kconfig | 15 +
board/amcc/bamboo/MAINTAINERS | 6 +
board/amcc/bluestone/Kconfig | 15 +
board/amcc/bluestone/MAINTAINERS | 6 +
board/amcc/bubinga/Kconfig | 15 +
board/amcc/bubinga/MAINTAINERS | 6 +
board/amcc/canyonlands/Kconfig | 15 +
board/amcc/canyonlands/MAINTAINERS | 8 +
board/amcc/ebony/Kconfig | 15 +
board/amcc/ebony/MAINTAINERS | 6 +
board/amcc/katmai/Kconfig | 15 +
board/amcc/katmai/MAINTAINERS | 6 +
board/amcc/kilauea/Kconfig | 15 +
board/amcc/kilauea/MAINTAINERS | 7 +
board/amcc/luan/Kconfig | 15 +
board/amcc/luan/MAINTAINERS | 6 +
board/amcc/makalu/Kconfig | 15 +
board/amcc/makalu/MAINTAINERS | 6 +
board/amcc/ocotea/Kconfig | 15 +
board/amcc/ocotea/MAINTAINERS | 6 +
board/amcc/redwood/Kconfig | 15 +
board/amcc/redwood/MAINTAINERS | 6 +
board/amcc/sequoia/Kconfig | 15 +
board/amcc/sequoia/MAINTAINERS | 9 +
board/amcc/taihu/Kconfig | 15 +
board/amcc/taihu/MAINTAINERS | 6 +
board/amcc/taishan/Kconfig | 15 +
board/amcc/taishan/MAINTAINERS | 6 +
board/amcc/walnut/Kconfig | 15 +
board/amcc/walnut/MAINTAINERS | 7 +
board/amcc/yosemite/Kconfig | 15 +
board/amcc/yosemite/MAINTAINERS | 7 +
board/amcc/yucca/Kconfig | 15 +
board/amcc/yucca/MAINTAINERS | 6 +
board/armadeus/apf27/Kconfig | 23 +
board/armadeus/apf27/MAINTAINERS | 7 +
board/armltd/integrator/Kconfig | 159 ++
board/armltd/integrator/MAINTAINERS | 14 +
board/armltd/versatile/Kconfig | 71 +
board/armltd/versatile/MAINTAINERS | 8 +
board/armltd/vexpress/Kconfig | 59 +
board/armltd/vexpress/MAINTAINERS | 14 +
board/armltd/vexpress64/Kconfig | 39 +
board/armltd/vexpress64/MAINTAINERS | 11 +
board/astro/mcf5373l/Kconfig | 19 +
board/astro/mcf5373l/MAINTAINERS | 6 +
board/atc/Kconfig | 11 +
board/atc/MAINTAINERS | 6 +
board/atmark-techno/armadillo-800eva/Kconfig | 23 +
board/atmark-techno/armadillo-800eva/MAINTAINERS | 6 +
board/atmel/at91rm9200ek/Kconfig | 23 +
board/atmel/at91rm9200ek/MAINTAINERS | 7 +
board/atmel/at91sam9260ek/Kconfig | 23 +
board/atmel/at91sam9260ek/MAINTAINERS | 16 +
board/atmel/at91sam9261ek/Kconfig | 23 +
board/atmel/at91sam9261ek/MAINTAINERS | 11 +
board/atmel/at91sam9263ek/Kconfig | 23 +
board/atmel/at91sam9263ek/MAINTAINERS | 10 +
board/atmel/at91sam9m10g45ek/Kconfig | 23 +
board/atmel/at91sam9m10g45ek/MAINTAINERS | 7 +
board/atmel/at91sam9n12ek/Kconfig | 23 +
board/atmel/at91sam9n12ek/MAINTAINERS | 8 +
board/atmel/at91sam9rlek/Kconfig | 23 +
board/atmel/at91sam9rlek/MAINTAINERS | 7 +
board/atmel/at91sam9x5ek/Kconfig | 23 +
board/atmel/at91sam9x5ek/MAINTAINERS | 9 +
board/atmel/atngw100/Kconfig | 19 +
board/atmel/atngw100/MAINTAINERS | 6 +
board/atmel/atngw100mkii/Kconfig | 19 +
board/atmel/atngw100mkii/MAINTAINERS | 6 +
board/atmel/atstk1000/Kconfig | 79 +
board/atmel/atstk1000/MAINTAINERS | 12 +
board/atmel/sama5d3_xplained/Kconfig | 23 +
board/atmel/sama5d3_xplained/MAINTAINERS | 7 +
board/atmel/sama5d3xek/Kconfig | 23 +
board/atmel/sama5d3xek/MAINTAINERS | 8 +
board/avionic-design/medcom-wide/Kconfig | 24 +
board/avionic-design/medcom-wide/MAINTAINERS | 6 +
board/avionic-design/plutux/Kconfig | 24 +
board/avionic-design/plutux/MAINTAINERS | 6 +
board/avionic-design/tec-ng/Kconfig | 24 +
board/avionic-design/tec-ng/MAINTAINERS | 6 +
board/avionic-design/tec/Kconfig | 24 +
board/avionic-design/tec/MAINTAINERS | 6 +
board/avnet/fx12mm/Kconfig | 15 +
board/avnet/fx12mm/MAINTAINERS | 7 +
board/avnet/v5fx30teval/Kconfig | 15 +
board/avnet/v5fx30teval/MAINTAINERS | 7 +
board/balloon3/Kconfig | 15 +
board/balloon3/MAINTAINERS | 6 +
board/barco/titanium/Kconfig | 23 +
board/barco/titanium/MAINTAINERS | 6 +
board/bc3450/Kconfig | 11 +
board/bc3450/MAINTAINERS | 6 +
board/bct-brettl2/Kconfig | 11 +
board/bct-brettl2/MAINTAINERS | 6 +
board/bf506f-ezkit/Kconfig | 11 +
board/bf506f-ezkit/MAINTAINERS | 6 +
board/bf518f-ezbrd/Kconfig | 11 +
board/bf518f-ezbrd/MAINTAINERS | 6 +
board/bf525-ucr2/Kconfig | 11 +
board/bf525-ucr2/MAINTAINERS | 7 +
board/bf526-ezbrd/Kconfig | 11 +
board/bf526-ezbrd/MAINTAINERS | 6 +
board/bf527-ad7160-eval/Kconfig | 11 +
board/bf527-ad7160-eval/MAINTAINERS | 6 +
board/bf527-ezkit/Kconfig | 11 +
board/bf527-ezkit/MAINTAINERS | 7 +
board/bf527-sdp/Kconfig | 11 +
board/bf527-sdp/MAINTAINERS | 6 +
board/bf533-ezkit/Kconfig | 11 +
board/bf533-ezkit/MAINTAINERS | 6 +
board/bf533-stamp/Kconfig | 11 +
board/bf533-stamp/MAINTAINERS | 6 +
board/bf537-minotaur/Kconfig | 11 +
board/bf537-minotaur/MAINTAINERS | 6 +
board/bf537-pnav/Kconfig | 11 +
board/bf537-pnav/MAINTAINERS | 6 +
board/bf537-srv1/Kconfig | 11 +
board/bf537-srv1/MAINTAINERS | 6 +
board/bf537-stamp/Kconfig | 11 +
board/bf537-stamp/MAINTAINERS | 6 +
board/bf538f-ezkit/Kconfig | 11 +
board/bf538f-ezkit/MAINTAINERS | 6 +
board/bf548-ezkit/Kconfig | 11 +
board/bf548-ezkit/MAINTAINERS | 6 +
board/bf561-acvilon/Kconfig | 11 +
board/bf561-acvilon/MAINTAINERS | 6 +
board/bf561-ezkit/Kconfig | 11 +
board/bf561-ezkit/MAINTAINERS | 6 +
board/bf609-ezkit/Kconfig | 11 +
board/bf609-ezkit/MAINTAINERS | 6 +
board/blackstamp/Kconfig | 11 +
board/blackstamp/MAINTAINERS | 8 +
board/blackvme/Kconfig | 11 +
board/blackvme/MAINTAINERS | 8 +
board/bluegiga/apx4devkit/Kconfig | 23 +
board/bluegiga/apx4devkit/MAINTAINERS | 6 +
board/bluewater/snapper9260/Kconfig | 23 +
board/bluewater/snapper9260/MAINTAINERS | 7 +
board/boundary/nitrogen6x/Kconfig | 23 +
board/boundary/nitrogen6x/MAINTAINERS | 12 +
board/br4/Kconfig | 11 +
board/br4/MAINTAINERS | 6 +
board/broadcom/bcm28155_ap/Kconfig | 23 +
board/broadcom/bcm28155_ap/MAINTAINERS | 6 +
board/buffalo/lsxl/Kconfig | 23 +
board/buffalo/lsxl/MAINTAINERS | 7 +
board/calao/sbc35_a9g20/Kconfig | 23 +
board/calao/sbc35_a9g20/MAINTAINERS | 7 +
board/calao/tny_a9260/Kconfig | 23 +
board/calao/tny_a9260/MAINTAINERS | 9 +
board/calao/usb_a9263/Kconfig | 23 +
board/calao/usb_a9263/MAINTAINERS | 6 +
board/canmb/Kconfig | 11 +
board/canmb/MAINTAINERS | 6 +
board/chromebook-x86/coreboot/Kconfig | 19 +
board/chromebook-x86/coreboot/MAINTAINERS | 6 +
board/cirrus/edb93xx/Kconfig | 23 +
board/cirrus/edb93xx/MAINTAINERS | 6 +
board/cloudengines/pogo_e02/Kconfig | 23 +
board/cloudengines/pogo_e02/MAINTAINERS | 6 +
board/cm-bf527/Kconfig | 11 +
board/cm-bf527/MAINTAINERS | 6 +
board/cm-bf533/Kconfig | 11 +
board/cm-bf533/MAINTAINERS | 6 +
board/cm-bf537e/Kconfig | 11 +
board/cm-bf537e/MAINTAINERS | 6 +
board/cm-bf537u/Kconfig | 11 +
board/cm-bf537u/MAINTAINERS | 6 +
board/cm-bf548/Kconfig | 11 +
board/cm-bf548/MAINTAINERS | 6 +
board/cm-bf561/Kconfig | 11 +
board/cm-bf561/MAINTAINERS | 6 +
board/cm4008/Kconfig | 19 +
board/cm4008/MAINTAINERS | 6 +
board/cm41xx/Kconfig | 19 +
board/cm41xx/MAINTAINERS | 6 +
board/cm5200/Kconfig | 11 +
board/cm5200/MAINTAINERS | 6 +
board/cmi/Kconfig | 11 +
board/cmi/MAINTAINERS | 6 +
board/cobra5272/Kconfig | 15 +
board/cobra5272/MAINTAINERS | 6 +
board/cogent/Kconfig | 23 +
board/cogent/MAINTAINERS | 8 +
board/comelit/dig297/Kconfig | 23 +
board/comelit/dig297/MAINTAINERS | 6 +
board/compal/paz00/Kconfig | 24 +
board/compal/paz00/MAINTAINERS | 7 +
board/compulab/cm_t335/Kconfig | 23 +
board/compulab/cm_t335/MAINTAINERS | 6 +
board/compulab/cm_t35/Kconfig | 23 +
board/compulab/cm_t35/MAINTAINERS | 6 +
board/compulab/cm_t54/Kconfig | 23 +
board/compulab/cm_t54/MAINTAINERS | 6 +
board/compulab/trimslice/Kconfig | 24 +
board/compulab/trimslice/MAINTAINERS | 7 +
board/congatec/cgtqmx6eval/Kconfig | 23 +
board/congatec/cgtqmx6eval/MAINTAINERS | 6 +
board/corscience/tricorder/Kconfig | 23 +
board/corscience/tricorder/MAINTAINERS | 7 +
board/cpc45/Kconfig | 11 +
board/cpc45/MAINTAINERS | 7 +
board/cpu86/Kconfig | 11 +
board/cpu86/MAINTAINERS | 7 +
board/cpu87/Kconfig | 11 +
board/cpu87/MAINTAINERS | 7 +
board/cray/L1/Kconfig | 15 +
board/cray/L1/MAINTAINERS | 6 +
board/creative/xfi3/Kconfig | 23 +
board/creative/xfi3/MAINTAINERS | 6 +
board/csb272/Kconfig | 11 +
board/csb272/MAINTAINERS | 6 +
board/csb472/Kconfig | 11 +
board/csb472/MAINTAINERS | 6 +
board/cu824/Kconfig | 11 +
board/cu824/MAINTAINERS | 6 +
board/d-link/dns325/Kconfig | 23 +
board/d-link/dns325/MAINTAINERS | 6 +
board/dave/PPChameleonEVB/Kconfig | 31 +
board/dave/PPChameleonEVB/MAINTAINERS | 20 +
board/davedenx/aria/Kconfig | 15 +
board/davedenx/aria/MAINTAINERS | 6 +
board/davedenx/qong/Kconfig | 23 +
board/davedenx/qong/MAINTAINERS | 6 +
board/davinci/da8xxevm/Kconfig | 71 +
board/davinci/da8xxevm/MAINTAINERS | 22 +
board/davinci/dm355evm/Kconfig | 23 +
board/davinci/dm355evm/MAINTAINERS | 6 +
board/davinci/dm355leopard/Kconfig | 23 +
board/davinci/dm355leopard/MAINTAINERS | 6 +
board/davinci/dm365evm/Kconfig | 23 +
board/davinci/dm365evm/MAINTAINERS | 6 +
board/davinci/dm6467evm/Kconfig | 23 +
board/davinci/dm6467evm/MAINTAINERS | 7 +
board/davinci/dvevm/Kconfig | 23 +
board/davinci/dvevm/MAINTAINERS | 6 +
board/davinci/ea20/Kconfig | 23 +
board/davinci/ea20/MAINTAINERS | 6 +
board/davinci/schmoogie/Kconfig | 23 +
board/davinci/schmoogie/MAINTAINERS | 6 +
board/davinci/sffsdr/Kconfig | 23 +
board/davinci/sffsdr/MAINTAINERS | 6 +
board/davinci/sonata/Kconfig | 23 +
board/davinci/sonata/MAINTAINERS | 6 +
board/dbau1x00/Kconfig | 19 +
board/dbau1x00/MAINTAINERS | 10 +
board/denx/m28evk/Kconfig | 23 +
board/denx/m28evk/MAINTAINERS | 6 +
board/denx/m53evk/Kconfig | 23 +
board/denx/m53evk/MAINTAINERS | 6 +
board/dnp5370/Kconfig | 11 +
board/dnp5370/MAINTAINERS | 6 +
board/eXalion/Kconfig | 11 +
board/eXalion/MAINTAINERS | 6 +
board/earthlcd/favr-32-ezkit/Kconfig | 19 +
board/earthlcd/favr-32-ezkit/MAINTAINERS | 6 +
board/egnite/ethernut5/Kconfig | 23 +
board/egnite/ethernut5/MAINTAINERS | 6 +
board/eltec/elppc/Kconfig | 15 +
board/eltec/elppc/MAINTAINERS | 6 +
board/eltec/mhpc/Kconfig | 15 +
board/eltec/mhpc/MAINTAINERS | 6 +
board/embest/mx6boards/Kconfig | 23 +
board/embest/mx6boards/MAINTAINERS | 7 +
board/emk/top5200/Kconfig | 15 +
board/emk/top5200/MAINTAINERS | 8 +
board/emk/top860/Kconfig | 15 +
board/emk/top860/MAINTAINERS | 6 +
board/emk/top9000/Kconfig | 23 +
board/emk/top9000/MAINTAINERS | 7 +
board/enbw/enbw_cmc/Kconfig | 23 +
board/enbw/enbw_cmc/MAINTAINERS | 6 +
board/ep8260/Kconfig | 11 +
board/ep8260/MAINTAINERS | 6 +
board/ep82xxm/Kconfig | 11 +
board/ep82xxm/MAINTAINERS | 6 +
board/esd/apc405/Kconfig | 15 +
board/esd/apc405/MAINTAINERS | 6 +
board/esd/ar405/Kconfig | 15 +
board/esd/ar405/MAINTAINERS | 6 +
board/esd/ash405/Kconfig | 15 +
board/esd/ash405/MAINTAINERS | 6 +
board/esd/cms700/Kconfig | 15 +
board/esd/cms700/MAINTAINERS | 6 +
board/esd/cpci2dp/Kconfig | 15 +
board/esd/cpci2dp/MAINTAINERS | 6 +
board/esd/cpci405/Kconfig | 63 +
board/esd/cpci405/MAINTAINERS | 12 +
board/esd/cpci5200/Kconfig | 15 +
board/esd/cpci5200/MAINTAINERS | 6 +
board/esd/cpci750/Kconfig | 15 +
board/esd/cpci750/MAINTAINERS | 6 +
board/esd/cpciiser4/Kconfig | 15 +
board/esd/cpciiser4/MAINTAINERS | 6 +
board/esd/dp405/Kconfig | 15 +
board/esd/dp405/MAINTAINERS | 6 +
board/esd/du405/Kconfig | 15 +
board/esd/du405/MAINTAINERS | 6 +
board/esd/du440/Kconfig | 15 +
board/esd/du440/MAINTAINERS | 6 +
board/esd/hh405/Kconfig | 15 +
board/esd/hh405/MAINTAINERS | 6 +
board/esd/hub405/Kconfig | 15 +
board/esd/hub405/MAINTAINERS | 6 +
board/esd/mecp5123/Kconfig | 15 +
board/esd/mecp5123/MAINTAINERS | 6 +
board/esd/mecp5200/Kconfig | 15 +
board/esd/mecp5200/MAINTAINERS | 6 +
board/esd/meesc/Kconfig | 23 +
board/esd/meesc/MAINTAINERS | 7 +
board/esd/ocrtc/Kconfig | 15 +
board/esd/ocrtc/MAINTAINERS | 6 +
board/esd/otc570/Kconfig | 23 +
board/esd/otc570/MAINTAINERS | 7 +
board/esd/pci405/Kconfig | 15 +
board/esd/pci405/MAINTAINERS | 6 +
board/esd/pf5200/Kconfig | 15 +
board/esd/pf5200/MAINTAINERS | 6 +
board/esd/plu405/Kconfig | 15 +
board/esd/plu405/MAINTAINERS | 6 +
board/esd/pmc405/Kconfig | 15 +
board/esd/pmc405/MAINTAINERS | 6 +
board/esd/pmc405de/Kconfig | 15 +
board/esd/pmc405de/MAINTAINERS | 6 +
board/esd/pmc440/Kconfig | 15 +
board/esd/pmc440/MAINTAINERS | 6 +
board/esd/tasreg/Kconfig | 19 +
board/esd/tasreg/MAINTAINERS | 6 +
board/esd/vme8349/Kconfig | 15 +
board/esd/vme8349/MAINTAINERS | 7 +
board/esd/voh405/Kconfig | 15 +
board/esd/voh405/MAINTAINERS | 6 +
board/esd/vom405/Kconfig | 15 +
board/esd/vom405/MAINTAINERS | 6 +
board/esd/wuh405/Kconfig | 15 +
board/esd/wuh405/MAINTAINERS | 6 +
board/esg/ima3-mx53/Kconfig | 23 +
board/esg/ima3-mx53/MAINTAINERS | 6 +
board/espt/Kconfig | 15 +
board/espt/MAINTAINERS | 6 +
board/esteem192e/Kconfig | 11 +
board/esteem192e/MAINTAINERS | 6 +
board/eukrea/cpu9260/Kconfig | 23 +
board/eukrea/cpu9260/MAINTAINERS | 13 +
board/eukrea/cpuat91/Kconfig | 23 +
board/eukrea/cpuat91/MAINTAINERS | 7 +
board/evb64260/Kconfig | 23 +
board/evb64260/MAINTAINERS | 12 +
board/exmeritus/hww1u1a/Kconfig | 15 +
board/exmeritus/hww1u1a/MAINTAINERS | 6 +
board/faraday/a320evb/Kconfig | 23 +
board/faraday/a320evb/MAINTAINERS | 6 +
board/flagadm/Kconfig | 11 +
board/flagadm/MAINTAINERS | 6 +
board/freescale/b4860qds/Kconfig | 15 +
board/freescale/b4860qds/MAINTAINERS | 17 +
board/freescale/bsc9131rdb/Kconfig | 15 +
board/freescale/bsc9131rdb/MAINTAINERS | 9 +
board/freescale/bsc9132qds/Kconfig | 15 +
board/freescale/bsc9132qds/MAINTAINERS | 25 +
board/freescale/c29xpcie/Kconfig | 15 +
board/freescale/c29xpcie/MAINTAINERS | 8 +
board/freescale/corenet_ds/Kconfig | 63 +
board/freescale/corenet_ds/MAINTAINERS | 29 +
board/freescale/ls2085a/Kconfig | 47 +
board/freescale/ls2085a/MAINTAINERS | 9 +
board/freescale/m5208evbe/Kconfig | 19 +
board/freescale/m5208evbe/MAINTAINERS | 6 +
board/freescale/m52277evb/Kconfig | 19 +
board/freescale/m52277evb/MAINTAINERS | 7 +
board/freescale/m5235evb/Kconfig | 19 +
board/freescale/m5235evb/MAINTAINERS | 7 +
board/freescale/m5249evb/Kconfig | 19 +
board/freescale/m5249evb/MAINTAINERS | 6 +
board/freescale/m5253demo/Kconfig | 19 +
board/freescale/m5253demo/MAINTAINERS | 6 +
board/freescale/m5253evbe/Kconfig | 19 +
board/freescale/m5253evbe/MAINTAINERS | 6 +
board/freescale/m5272c3/Kconfig | 19 +
board/freescale/m5272c3/MAINTAINERS | 6 +
board/freescale/m5275evb/Kconfig | 19 +
board/freescale/m5275evb/MAINTAINERS | 6 +
board/freescale/m5282evb/Kconfig | 19 +
board/freescale/m5282evb/MAINTAINERS | 6 +
board/freescale/m53017evb/Kconfig | 19 +
board/freescale/m53017evb/MAINTAINERS | 6 +
board/freescale/m5329evb/Kconfig | 19 +
board/freescale/m5329evb/MAINTAINERS | 7 +
board/freescale/m5373evb/Kconfig | 19 +
board/freescale/m5373evb/MAINTAINERS | 6 +
board/freescale/m54418twr/Kconfig | 19 +
board/freescale/m54418twr/MAINTAINERS | 11 +
board/freescale/m54451evb/Kconfig | 19 +
board/freescale/m54451evb/MAINTAINERS | 7 +
board/freescale/m54455evb/Kconfig | 19 +
board/freescale/m54455evb/MAINTAINERS | 10 +
board/freescale/m547xevb/Kconfig | 19 +
board/freescale/m547xevb/MAINTAINERS | 12 +
board/freescale/m548xevb/Kconfig | 19 +
board/freescale/m548xevb/MAINTAINERS | 13 +
board/freescale/mpc5121ads/Kconfig | 15 +
board/freescale/mpc5121ads/MAINTAINERS | 7 +
board/freescale/mpc7448hpc2/Kconfig | 15 +
board/freescale/mpc7448hpc2/MAINTAINERS | 6 +
board/freescale/mpc8266ads/Kconfig | 15 +
board/freescale/mpc8266ads/MAINTAINERS | 6 +
board/freescale/mpc8308rdb/Kconfig | 15 +
board/freescale/mpc8308rdb/MAINTAINERS | 6 +
board/freescale/mpc8313erdb/Kconfig | 15 +
board/freescale/mpc8313erdb/MAINTAINERS | 9 +
board/freescale/mpc8315erdb/Kconfig | 15 +
board/freescale/mpc8315erdb/MAINTAINERS | 6 +
board/freescale/mpc8323erdb/Kconfig | 15 +
board/freescale/mpc8323erdb/MAINTAINERS | 6 +
board/freescale/mpc832xemds/Kconfig | 15 +
board/freescale/mpc832xemds/MAINTAINERS | 10 +
board/freescale/mpc8349emds/Kconfig | 15 +
board/freescale/mpc8349emds/MAINTAINERS | 6 +
board/freescale/mpc8349itx/Kconfig | 15 +
board/freescale/mpc8349itx/MAINTAINERS | 8 +
board/freescale/mpc8360emds/Kconfig | 15 +
board/freescale/mpc8360emds/MAINTAINERS | 15 +
board/freescale/mpc8360erdk/Kconfig | 15 +
board/freescale/mpc8360erdk/MAINTAINERS | 7 +
board/freescale/mpc837xemds/Kconfig | 15 +
board/freescale/mpc837xemds/MAINTAINERS | 7 +
board/freescale/mpc837xerdb/Kconfig | 15 +
board/freescale/mpc837xerdb/MAINTAINERS | 6 +
board/freescale/mpc8536ds/Kconfig | 15 +
board/freescale/mpc8536ds/MAINTAINERS | 9 +
board/freescale/mpc8540ads/Kconfig | 15 +
board/freescale/mpc8540ads/MAINTAINERS | 6 +
board/freescale/mpc8541cds/Kconfig | 15 +
board/freescale/mpc8541cds/MAINTAINERS | 7 +
board/freescale/mpc8544ds/Kconfig | 15 +
board/freescale/mpc8544ds/MAINTAINERS | 6 +
board/freescale/mpc8548cds/Kconfig | 15 +
board/freescale/mpc8548cds/MAINTAINERS | 8 +
board/freescale/mpc8555cds/Kconfig | 15 +
board/freescale/mpc8555cds/MAINTAINERS | 7 +
board/freescale/mpc8560ads/Kconfig | 15 +
board/freescale/mpc8560ads/MAINTAINERS | 6 +
board/freescale/mpc8568mds/Kconfig | 15 +
board/freescale/mpc8568mds/MAINTAINERS | 6 +
board/freescale/mpc8569mds/Kconfig | 15 +
board/freescale/mpc8569mds/MAINTAINERS | 7 +
board/freescale/mpc8572ds/Kconfig | 15 +
board/freescale/mpc8572ds/MAINTAINERS | 7 +
board/freescale/mpc8610hpcd/Kconfig | 15 +
board/freescale/mpc8610hpcd/MAINTAINERS | 6 +
board/freescale/mpc8641hpcn/Kconfig | 15 +
board/freescale/mpc8641hpcn/MAINTAINERS | 7 +
board/freescale/mx23evk/Kconfig | 23 +
board/freescale/mx23evk/MAINTAINERS | 6 +
board/freescale/mx25pdk/Kconfig | 23 +
board/freescale/mx25pdk/MAINTAINERS | 6 +
board/freescale/mx28evk/Kconfig | 23 +
board/freescale/mx28evk/MAINTAINERS | 9 +
board/freescale/mx31ads/Kconfig | 23 +
board/freescale/mx31ads/MAINTAINERS | 6 +
board/freescale/mx31pdk/Kconfig | 23 +
board/freescale/mx31pdk/MAINTAINERS | 6 +
board/freescale/mx35pdk/Kconfig | 23 +
board/freescale/mx35pdk/MAINTAINERS | 6 +
board/freescale/mx51evk/Kconfig | 23 +
board/freescale/mx51evk/MAINTAINERS | 6 +
board/freescale/mx53ard/Kconfig | 23 +
board/freescale/mx53ard/MAINTAINERS | 6 +
board/freescale/mx53evk/Kconfig | 23 +
board/freescale/mx53evk/MAINTAINERS | 6 +
board/freescale/mx53loco/Kconfig | 23 +
board/freescale/mx53loco/MAINTAINERS | 6 +
board/freescale/mx53smd/Kconfig | 23 +
board/freescale/mx53smd/MAINTAINERS | 6 +
board/freescale/mx6qarm2/Kconfig | 23 +
board/freescale/mx6qarm2/MAINTAINERS | 6 +
board/freescale/mx6qsabreauto/Kconfig | 23 +
board/freescale/mx6qsabreauto/MAINTAINERS | 7 +
board/freescale/mx6sabresd/Kconfig | 23 +
board/freescale/mx6sabresd/MAINTAINERS | 7 +
board/freescale/mx6slevk/Kconfig | 23 +
board/freescale/mx6slevk/MAINTAINERS | 6 +
board/freescale/p1010rdb/Kconfig | 15 +
board/freescale/p1010rdb/MAINTAINERS | 33 +
board/freescale/p1022ds/Kconfig | 15 +
board/freescale/p1022ds/MAINTAINERS | 13 +
board/freescale/p1023rdb/Kconfig | 15 +
board/freescale/p1023rdb/MAINTAINERS | 6 +
board/freescale/p1_p2_rdb/Kconfig | 15 +
board/freescale/p1_p2_rdb/MAINTAINERS | 37 +
board/freescale/p1_p2_rdb_pc/Kconfig | 15 +
board/freescale/p1_p2_rdb_pc/MAINTAINERS | 51 +
board/freescale/p1_twr/Kconfig | 15 +
board/freescale/p1_twr/MAINTAINERS | 6 +
board/freescale/p2020come/Kconfig | 15 +
board/freescale/p2020come/MAINTAINERS | 7 +
board/freescale/p2020ds/Kconfig | 15 +
board/freescale/p2020ds/MAINTAINERS | 10 +
board/freescale/p2041rdb/Kconfig | 15 +
board/freescale/p2041rdb/MAINTAINERS | 11 +
board/freescale/qemu-ppce500/Kconfig | 15 +
board/freescale/qemu-ppce500/MAINTAINERS | 6 +
board/freescale/t1040qds/Kconfig | 15 +
board/freescale/t1040qds/MAINTAINERS | 12 +
board/freescale/t104xrdb/Kconfig | 15 +
board/freescale/t104xrdb/MAINTAINERS | 22 +
board/freescale/t208xqds/Kconfig | 15 +
board/freescale/t208xqds/MAINTAINERS | 20 +
board/freescale/t208xrdb/Kconfig | 15 +
board/freescale/t208xrdb/MAINTAINERS | 15 +
board/freescale/t4qds/Kconfig | 31 +
board/freescale/t4qds/MAINTAINERS | 26 +
board/freescale/t4rdb/Kconfig | 15 +
board/freescale/t4rdb/MAINTAINERS | 7 +
board/freescale/vf610twr/Kconfig | 23 +
board/freescale/vf610twr/MAINTAINERS | 6 +
board/funkwerk/vovpn-gw/Kconfig | 15 +
board/funkwerk/vovpn-gw/MAINTAINERS | 6 +
board/g2000/Kconfig | 11 +
board/g2000/MAINTAINERS | 6 +
board/gaisler/gr_cpci_ax2000/Kconfig | 19 +
board/gaisler/gr_cpci_ax2000/MAINTAINERS | 6 +
board/gaisler/gr_ep2s60/Kconfig | 19 +
board/gaisler/gr_ep2s60/MAINTAINERS | 6 +
board/gaisler/gr_xc3s_1500/Kconfig | 19 +
board/gaisler/gr_xc3s_1500/MAINTAINERS | 6 +
board/gaisler/grsim/Kconfig | 19 +
board/gaisler/grsim/MAINTAINERS | 6 +
board/gaisler/grsim_leon2/Kconfig | 19 +
board/gaisler/grsim_leon2/MAINTAINERS | 6 +
board/galaxy5200/Kconfig | 11 +
board/galaxy5200/MAINTAINERS | 7 +
board/gateworks/gw_ventana/Kconfig | 23 +
board/gateworks/gw_ventana/MAINTAINERS | 6 +
board/gdsys/405ep/Kconfig | 63 +
board/gdsys/405ep/MAINTAINERS | 12 +
board/gdsys/405ex/Kconfig | 15 +
board/gdsys/405ex/MAINTAINERS | 6 +
board/gdsys/dlvision/Kconfig | 15 +
board/gdsys/dlvision/MAINTAINERS | 6 +
board/gdsys/gdppc440etx/Kconfig | 15 +
board/gdsys/gdppc440etx/MAINTAINERS | 6 +
board/gdsys/intip/Kconfig | 15 +
board/gdsys/intip/MAINTAINERS | 7 +
board/gdsys/p1022/Kconfig | 15 +
board/gdsys/p1022/MAINTAINERS | 9 +
board/gen860t/Kconfig | 11 +
board/gen860t/MAINTAINERS | 7 +
board/genesi/mx51_efikamx/Kconfig | 23 +
board/genesi/mx51_efikamx/MAINTAINERS | 7 +
board/gumstix/duovero/Kconfig | 23 +
board/gumstix/duovero/MAINTAINERS | 6 +
board/gumstix/pepper/Kconfig | 23 +
board/gumstix/pepper/MAINTAINERS | 6 +
board/gw8260/Kconfig | 11 +
board/gw8260/MAINTAINERS | 6 +
board/h2200/Kconfig | 15 +
board/h2200/MAINTAINERS | 6 +
board/hale/tt01/Kconfig | 23 +
board/hale/tt01/MAINTAINERS | 6 +
board/hermes/Kconfig | 11 +
board/hermes/MAINTAINERS | 6 +
board/highbank/Kconfig | 19 +
board/highbank/MAINTAINERS | 6 +
board/htkw/mcx/Kconfig | 23 +
board/htkw/mcx/MAINTAINERS | 6 +
board/hymod/Kconfig | 11 +
board/hymod/MAINTAINERS | 6 +
board/ibf-dsp561/Kconfig | 11 +
board/ibf-dsp561/MAINTAINERS | 6 +
board/icecube/Kconfig | 11 +
board/icecube/MAINTAINERS | 21 +
board/icpdas/lp8x4x/Kconfig | 19 +
board/icpdas/lp8x4x/MAINTAINERS | 6 +
board/icu862/Kconfig | 11 +
board/icu862/MAINTAINERS | 7 +
board/ids/ids8247/Kconfig | 15 +
board/ids/ids8247/MAINTAINERS | 6 +
board/ids/ids8313/Kconfig | 15 +
board/ids/ids8313/MAINTAINERS | 6 +
board/ifm/ac14xx/Kconfig | 15 +
board/ifm/ac14xx/MAINTAINERS | 6 +
board/ifm/o2dnt2/Kconfig | 95 +
board/ifm/o2dnt2/MAINTAINERS | 20 +
board/imgtec/malta/Kconfig | 19 +
board/imgtec/malta/MAINTAINERS | 7 +
board/imx31_phycore/Kconfig | 19 +
board/imx31_phycore/MAINTAINERS | 11 +
board/in-circuit/grasshopper/Kconfig | 19 +
board/in-circuit/grasshopper/MAINTAINERS | 6 +
board/inka4x0/Kconfig | 11 +
board/inka4x0/MAINTAINERS | 6 +
board/intercontrol/digsy_mtc/Kconfig | 15 +
board/intercontrol/digsy_mtc/MAINTAINERS | 9 +
board/iomega/iconnect/Kconfig | 23 +
board/iomega/iconnect/MAINTAINERS | 6 +
board/ip04/Kconfig | 11 +
board/ip04/MAINTAINERS | 6 +
board/ip860/Kconfig | 11 +
board/ip860/MAINTAINERS | 6 +
board/ipek01/Kconfig | 11 +
board/ipek01/MAINTAINERS | 6 +
board/iphase4539/Kconfig | 11 +
board/iphase4539/MAINTAINERS | 6 +
board/isee/igep0033/Kconfig | 23 +
board/isee/igep0033/MAINTAINERS | 6 +
board/isee/igep00x0/Kconfig | 23 +
board/isee/igep00x0/MAINTAINERS | 14 +
board/ivm/Kconfig | 23 +
board/ivm/MAINTAINERS | 12 +
board/jornada/Kconfig | 15 +
board/jornada/MAINTAINERS | 6 +
board/jse/Kconfig | 11 +
board/jse/MAINTAINERS | 6 +
board/jupiter/Kconfig | 11 +
board/jupiter/MAINTAINERS | 6 +
board/karo/tk71/Kconfig | 23 +
board/karo/tk71/MAINTAINERS | 6 +
board/karo/tx25/Kconfig | 23 +
board/karo/tx25/MAINTAINERS | 6 +
board/keymile/km82xx/Kconfig | 15 +
board/keymile/km82xx/MAINTAINERS | 7 +
board/keymile/km83xx/Kconfig | 47 +
board/keymile/km83xx/MAINTAINERS | 19 +
board/keymile/km_arm/Kconfig | 23 +
board/keymile/km_arm/MAINTAINERS | 14 +
board/keymile/kmp204x/Kconfig | 15 +
board/keymile/kmp204x/MAINTAINERS | 7 +
board/kmc/kzm9g/Kconfig | 23 +
board/kmc/kzm9g/MAINTAINERS | 7 +
board/korat/Kconfig | 11 +
board/korat/MAINTAINERS | 7 +
board/kup/kup4k/Kconfig | 15 +
board/kup/kup4k/MAINTAINERS | 6 +
board/kup/kup4x/Kconfig | 15 +
board/kup/kup4x/MAINTAINERS | 6 +
board/logicpd/am3517evm/Kconfig | 23 +
board/logicpd/am3517evm/MAINTAINERS | 6 +
board/logicpd/imx27lite/Kconfig | 47 +
board/logicpd/imx27lite/MAINTAINERS | 12 +
board/logicpd/imx31_litekit/Kconfig | 23 +
board/logicpd/imx31_litekit/MAINTAINERS | 6 +
board/logicpd/omap3som/Kconfig | 23 +
board/logicpd/omap3som/MAINTAINERS | 6 +
board/logicpd/zoom1/Kconfig | 23 +
board/logicpd/zoom1/MAINTAINERS | 6 +
board/lwmon/Kconfig | 11 +
board/lwmon/MAINTAINERS | 6 +
board/lwmon5/Kconfig | 11 +
board/lwmon5/MAINTAINERS | 7 +
board/manroland/hmi1001/Kconfig | 15 +
board/manroland/hmi1001/MAINTAINERS | 6 +
board/manroland/mucmc52/Kconfig | 15 +
board/manroland/mucmc52/MAINTAINERS | 6 +
board/manroland/uc100/Kconfig | 15 +
board/manroland/uc100/MAINTAINERS | 6 +
board/manroland/uc101/Kconfig | 15 +
board/manroland/uc101/MAINTAINERS | 6 +
board/matrix_vision/mergerbox/Kconfig | 15 +
board/matrix_vision/mergerbox/MAINTAINERS | 6 +
board/matrix_vision/mvbc_p/Kconfig | 15 +
board/matrix_vision/mvbc_p/MAINTAINERS | 6 +
board/matrix_vision/mvblm7/Kconfig | 15 +
board/matrix_vision/mvblm7/MAINTAINERS | 6 +
board/matrix_vision/mvblx/Kconfig | 23 +
board/matrix_vision/mvblx/MAINTAINERS | 6 +
board/matrix_vision/mvsmr/Kconfig | 15 +
board/matrix_vision/mvsmr/MAINTAINERS | 6 +
board/mcc200/Kconfig | 11 +
board/mcc200/MAINTAINERS | 17 +
board/micronas/vct/Kconfig | 19 +
board/micronas/vct/MAINTAINERS | 17 +
board/mimc/mimc200/Kconfig | 19 +
board/mimc/mimc200/MAINTAINERS | 6 +
board/miromico/hammerhead/Kconfig | 19 +
board/miromico/hammerhead/MAINTAINERS | 6 +
board/mosaixtech/icon/Kconfig | 15 +
board/mosaixtech/icon/MAINTAINERS | 6 +
board/motionpro/Kconfig | 11 +
board/motionpro/MAINTAINERS | 6 +
board/mpc8308_p1m/Kconfig | 11 +
board/mpc8308_p1m/MAINTAINERS | 6 +
board/mpl/mip405/Kconfig | 15 +
board/mpl/mip405/MAINTAINERS | 7 +
board/mpl/pati/Kconfig | 15 +
board/mpl/pati/MAINTAINERS | 6 +
board/mpl/pip405/Kconfig | 15 +
board/mpl/pip405/MAINTAINERS | 6 +
board/mpl/vcma9/Kconfig | 23 +
board/mpl/vcma9/MAINTAINERS | 6 +
board/mpr2/Kconfig | 15 +
board/mpr2/MAINTAINERS | 6 +
board/ms7720se/Kconfig | 15 +
board/ms7720se/MAINTAINERS | 6 +
board/ms7722se/Kconfig | 15 +
board/ms7722se/MAINTAINERS | 7 +
board/ms7750se/Kconfig | 15 +
board/ms7750se/MAINTAINERS | 7 +
board/muas3001/Kconfig | 11 +
board/muas3001/MAINTAINERS | 7 +
board/munices/Kconfig | 11 +
board/munices/MAINTAINERS | 6 +
board/musenki/Kconfig | 11 +
board/musenki/MAINTAINERS | 6 +
board/mvblue/Kconfig | 11 +
board/mvblue/MAINTAINERS | 6 +
board/netvia/Kconfig | 11 +
board/netvia/MAINTAINERS | 7 +
board/nokia/rx51/Kconfig | 23 +
board/nokia/rx51/MAINTAINERS | 6 +
board/nvidia/beaver/Kconfig | 24 +
board/nvidia/beaver/MAINTAINERS | 7 +
board/nvidia/cardhu/Kconfig | 24 +
board/nvidia/cardhu/MAINTAINERS | 6 +
board/nvidia/dalmore/Kconfig | 24 +
board/nvidia/dalmore/MAINTAINERS | 6 +
board/nvidia/harmony/Kconfig | 24 +
board/nvidia/harmony/MAINTAINERS | 6 +
board/nvidia/jetson-tk1/Kconfig | 24 +
board/nvidia/jetson-tk1/MAINTAINERS | 6 +
board/nvidia/seaboard/Kconfig | 24 +
board/nvidia/seaboard/MAINTAINERS | 6 +
board/nvidia/venice2/Kconfig | 24 +
board/nvidia/venice2/MAINTAINERS | 6 +
board/nvidia/ventana/Kconfig | 24 +
board/nvidia/ventana/MAINTAINERS | 7 +
board/nvidia/whistler/Kconfig | 24 +
board/nvidia/whistler/MAINTAINERS | 7 +
board/olimex/mx23_olinuxino/Kconfig | 23 +
board/olimex/mx23_olinuxino/MAINTAINERS | 6 +
board/omicron/calimain/Kconfig | 23 +
board/omicron/calimain/MAINTAINERS | 7 +
board/openrisc/openrisc-generic/Kconfig | 15 +
board/openrisc/openrisc-generic/MAINTAINERS | 6 +
board/overo/Kconfig | 19 +
board/overo/MAINTAINERS | 6 +
board/palmld/Kconfig | 15 +
board/palmld/MAINTAINERS | 6 +
board/palmtc/Kconfig | 15 +
board/palmtc/MAINTAINERS | 6 +
board/palmtreo680/Kconfig | 15 +
board/palmtreo680/MAINTAINERS | 6 +
board/pandora/Kconfig | 19 +
board/pandora/MAINTAINERS | 6 +
board/pb1x00/Kconfig | 19 +
board/pb1x00/MAINTAINERS | 6 +
board/pcs440ep/Kconfig | 11 +
board/pcs440ep/MAINTAINERS | 6 +
board/pdm360ng/Kconfig | 11 +
board/pdm360ng/MAINTAINERS | 6 +
board/phytec/pcm030/Kconfig | 15 +
board/phytec/pcm030/MAINTAINERS | 7 +
board/phytec/pcm051/Kconfig | 23 +
board/phytec/pcm051/MAINTAINERS | 7 +
board/pm520/Kconfig | 11 +
board/pm520/MAINTAINERS | 9 +
board/pm826/Kconfig | 11 +
board/pm826/MAINTAINERS | 13 +
board/pm828/Kconfig | 11 +
board/pm828/MAINTAINERS | 9 +
board/ppcag/bg0900/Kconfig | 23 +
board/ppcag/bg0900/MAINTAINERS | 6 +
board/ppmc7xx/Kconfig | 11 +
board/ppmc7xx/MAINTAINERS | 6 +
board/ppmc8260/Kconfig | 11 +
board/ppmc8260/MAINTAINERS | 6 +
board/pr1/Kconfig | 11 +
board/pr1/MAINTAINERS | 6 +
board/prodrive/alpr/Kconfig | 15 +
board/prodrive/alpr/MAINTAINERS | 6 +
board/prodrive/p3mx/Kconfig | 15 +
board/prodrive/p3mx/MAINTAINERS | 7 +
board/prodrive/p3p440/Kconfig | 15 +
board/prodrive/p3p440/MAINTAINERS | 6 +
board/psyent/pci5441/Kconfig | 15 +
board/psyent/pci5441/MAINTAINERS | 6 +
board/psyent/pk1c20/Kconfig | 15 +
board/psyent/pk1c20/MAINTAINERS | 6 +
board/pxa255_idp/Kconfig | 15 +
board/pxa255_idp/MAINTAINERS | 6 +
board/qemu-mips/Kconfig | 31 +
board/qemu-mips/MAINTAINERS | 14 +
board/r360mpi/Kconfig | 11 +
board/r360mpi/MAINTAINERS | 6 +
board/raidsonic/ib62x0/Kconfig | 23 +
board/raidsonic/ib62x0/MAINTAINERS | 6 +
board/raspberrypi/rpi_b/Kconfig | 23 +
board/raspberrypi/rpi_b/MAINTAINERS | 6 +
board/renesas/MigoR/Kconfig | 19 +
board/renesas/MigoR/MAINTAINERS | 6 +
board/renesas/ap325rxa/Kconfig | 19 +
board/renesas/ap325rxa/MAINTAINERS | 7 +
board/renesas/ecovec/Kconfig | 19 +
board/renesas/ecovec/MAINTAINERS | 7 +
board/renesas/koelsch/Kconfig | 23 +
board/renesas/koelsch/MAINTAINERS | 6 +
board/renesas/lager/Kconfig | 23 +
board/renesas/lager/MAINTAINERS | 6 +
board/renesas/r0p7734/Kconfig | 19 +
board/renesas/r0p7734/MAINTAINERS | 7 +
board/renesas/r2dplus/Kconfig | 19 +
board/renesas/r2dplus/MAINTAINERS | 7 +
board/renesas/r7780mp/Kconfig | 19 +
board/renesas/r7780mp/MAINTAINERS | 7 +
board/renesas/rsk7203/Kconfig | 19 +
board/renesas/rsk7203/MAINTAINERS | 7 +
board/renesas/rsk7264/Kconfig | 19 +
board/renesas/rsk7264/MAINTAINERS | 6 +
board/renesas/rsk7269/Kconfig | 19 +
board/renesas/rsk7269/MAINTAINERS | 6 +
board/renesas/sh7752evb/Kconfig | 19 +
board/renesas/sh7752evb/MAINTAINERS | 6 +
board/renesas/sh7753evb/Kconfig | 19 +
board/renesas/sh7753evb/MAINTAINERS | 6 +
board/renesas/sh7757lcr/Kconfig | 19 +
board/renesas/sh7757lcr/MAINTAINERS | 6 +
board/renesas/sh7763rdp/Kconfig | 19 +
board/renesas/sh7763rdp/MAINTAINERS | 7 +
board/renesas/sh7785lcr/Kconfig | 19 +
board/renesas/sh7785lcr/MAINTAINERS | 7 +
board/ronetix/pm9261/Kconfig | 23 +
board/ronetix/pm9261/MAINTAINERS | 6 +
board/ronetix/pm9263/Kconfig | 23 +
board/ronetix/pm9263/MAINTAINERS | 6 +
board/ronetix/pm9g45/Kconfig | 23 +
board/ronetix/pm9g45/MAINTAINERS | 6 +
board/sacsng/Kconfig | 11 +
board/sacsng/MAINTAINERS | 6 +
board/samsung/arndale/Kconfig | 23 +
board/samsung/arndale/MAINTAINERS | 6 +
board/samsung/goni/Kconfig | 23 +
board/samsung/goni/MAINTAINERS | 6 +
board/samsung/origen/Kconfig | 23 +
board/samsung/origen/MAINTAINERS | 6 +
board/samsung/smdk2410/Kconfig | 23 +
board/samsung/smdk2410/MAINTAINERS | 6 +
board/samsung/smdk5250/Kconfig | 47 +
board/samsung/smdk5250/MAINTAINERS | 12 +
board/samsung/smdk5420/Kconfig | 47 +
board/samsung/smdk5420/MAINTAINERS | 12 +
board/samsung/smdkc100/Kconfig | 23 +
board/samsung/smdkc100/MAINTAINERS | 6 +
board/samsung/smdkv310/Kconfig | 23 +
board/samsung/smdkv310/MAINTAINERS | 6 +
board/samsung/trats/Kconfig | 23 +
board/samsung/trats/MAINTAINERS | 6 +
board/samsung/trats2/Kconfig | 23 +
board/samsung/trats2/MAINTAINERS | 6 +
board/samsung/universal_c210/Kconfig | 23 +
board/samsung/universal_c210/MAINTAINERS | 6 +
board/sandbox/MAINTAINERS | 6 +
board/sandburst/karef/Kconfig | 15 +
board/sandburst/karef/MAINTAINERS | 6 +
board/sandburst/metrobox/Kconfig | 15 +
board/sandburst/metrobox/MAINTAINERS | 6 +
board/sandisk/sansa_fuze_plus/Kconfig | 23 +
board/sandisk/sansa_fuze_plus/MAINTAINERS | 6 +
board/sandpoint/Kconfig | 23 +
board/sandpoint/MAINTAINERS | 12 +
board/sbc405/Kconfig | 11 +
board/sbc405/MAINTAINERS | 6 +
board/sbc8349/Kconfig | 11 +
board/sbc8349/MAINTAINERS | 8 +
board/sbc8548/Kconfig | 11 +
board/sbc8548/MAINTAINERS | 10 +
board/sbc8641d/Kconfig | 11 +
board/sbc8641d/MAINTAINERS | 6 +
board/sc3/Kconfig | 11 +
board/sc3/MAINTAINERS | 6 +
board/scb9328/Kconfig | 19 +
board/scb9328/MAINTAINERS | 6 +
board/schulercontrol/sc_sps_1/Kconfig | 23 +
board/schulercontrol/sc_sps_1/MAINTAINERS | 6 +
board/shmin/Kconfig | 15 +
board/shmin/MAINTAINERS | 7 +
board/siemens/corvus/Kconfig | 23 +
board/siemens/corvus/MAINTAINERS | 6 +
board/siemens/draco/Kconfig | 47 +
board/siemens/draco/MAINTAINERS | 8 +
board/siemens/pxm2/Kconfig | 23 +
board/siemens/pxm2/MAINTAINERS | 6 +
board/siemens/rut/Kconfig | 23 +
board/siemens/rut/MAINTAINERS | 6 +
board/siemens/taurus/Kconfig | 23 +
board/siemens/taurus/MAINTAINERS | 7 +
board/silica/pengwyn/Kconfig | 23 +
board/silica/pengwyn/MAINTAINERS | 6 +
board/sixnet/Kconfig | 11 +
board/sixnet/MAINTAINERS | 6 +
board/socrates/Kconfig | 11 +
board/socrates/MAINTAINERS | 6 +
board/solidrun/hummingboard/Kconfig | 23 +
board/solidrun/hummingboard/MAINTAINERS | 6 +
board/spd8xx/Kconfig | 11 +
board/spd8xx/MAINTAINERS | 6 +
board/spear/spear300/Kconfig | 23 +
board/spear/spear300/MAINTAINERS | 13 +
board/spear/spear310/Kconfig | 23 +
board/spear/spear310/MAINTAINERS | 15 +
board/spear/spear320/Kconfig | 23 +
board/spear/spear320/MAINTAINERS | 15 +
board/spear/spear600/Kconfig | 23 +
board/spear/spear600/MAINTAINERS | 13 +
board/spear/x600/Kconfig | 23 +
board/spear/x600/MAINTAINERS | 6 +
board/st-ericsson/snowball/Kconfig | 23 +
board/st-ericsson/snowball/MAINTAINERS | 6 +
board/st-ericsson/u8500/Kconfig | 23 +
board/st-ericsson/u8500/MAINTAINERS | 6 +
board/st/nhk8815/Kconfig | 23 +
board/st/nhk8815/MAINTAINERS | 8 +
board/stx/stxgp3/Kconfig | 15 +
board/stx/stxgp3/MAINTAINERS | 6 +
board/stx/stxssa/Kconfig | 15 +
board/stx/stxssa/MAINTAINERS | 7 +
board/stx/stxxtc/Kconfig | 15 +
board/stx/stxxtc/MAINTAINERS | 6 +
board/sunxi/Kconfig | 19 +
board/sunxi/MAINTAINERS | 7 +
board/svm_sc8xx/Kconfig | 11 +
board/svm_sc8xx/MAINTAINERS | 6 +
board/synopsys/Kconfig | 31 +
board/synopsys/MAINTAINERS | 7 +
board/synopsys/axs101/Kconfig | 19 +
board/synopsys/axs101/MAINTAINERS | 6 +
board/syteco/jadecpu/Kconfig | 23 +
board/syteco/jadecpu/MAINTAINERS | 6 +
board/syteco/zmx25/Kconfig | 23 +
board/syteco/zmx25/MAINTAINERS | 6 +
board/t3corp/Kconfig | 11 +
board/t3corp/MAINTAINERS | 6 +
board/taskit/stamp9g20/Kconfig | 23 +
board/taskit/stamp9g20/MAINTAINERS | 7 +
board/tcm-bf518/Kconfig | 11 +
board/tcm-bf518/MAINTAINERS | 6 +
board/tcm-bf537/Kconfig | 11 +
board/tcm-bf537/MAINTAINERS | 6 +
board/technexion/tao3530/Kconfig | 23 +
board/technexion/tao3530/MAINTAINERS | 11 +
board/technexion/twister/Kconfig | 23 +
board/technexion/twister/MAINTAINERS | 6 +
board/teejet/mt_ventoux/Kconfig | 23 +
board/teejet/mt_ventoux/MAINTAINERS | 6 +
board/ti/am335x/Kconfig | 23 +
board/ti/am335x/MAINTAINERS | 17 +
board/ti/am3517crane/Kconfig | 23 +
board/ti/am3517crane/MAINTAINERS | 6 +
board/ti/am43xx/Kconfig | 23 +
board/ti/am43xx/MAINTAINERS | 7 +
board/ti/beagle/Kconfig | 23 +
board/ti/beagle/MAINTAINERS | 6 +
board/ti/dra7xx/Kconfig | 23 +
board/ti/dra7xx/MAINTAINERS | 8 +
board/ti/evm/Kconfig | 71 +
board/ti/evm/MAINTAINERS | 14 +
board/ti/k2hk_evm/Kconfig | 23 +
board/ti/k2hk_evm/MAINTAINERS | 6 +
board/ti/omap5912osk/Kconfig | 23 +
board/ti/omap5912osk/MAINTAINERS | 6 +
board/ti/omap5_uevm/Kconfig | 23 +
board/ti/omap5_uevm/MAINTAINERS | 6 +
board/ti/panda/Kconfig | 23 +
board/ti/panda/MAINTAINERS | 6 +
board/ti/sdp3430/Kconfig | 23 +
board/ti/sdp3430/MAINTAINERS | 6 +
board/ti/sdp4430/Kconfig | 23 +
board/ti/sdp4430/MAINTAINERS | 6 +
board/ti/ti814x/Kconfig | 23 +
board/ti/ti814x/MAINTAINERS | 6 +
board/ti/ti816x/Kconfig | 23 +
board/ti/ti816x/MAINTAINERS | 6 +
board/ti/tnetv107xevm/Kconfig | 23 +
board/ti/tnetv107xevm/MAINTAINERS | 6 +
board/timll/devkit3250/Kconfig | 23 +
board/timll/devkit3250/MAINTAINERS | 6 +
board/timll/devkit8000/Kconfig | 23 +
board/timll/devkit8000/MAINTAINERS | 6 +
board/toradex/colibri_pxa270/Kconfig | 19 +
board/toradex/colibri_pxa270/MAINTAINERS | 6 +
board/toradex/colibri_t20_iris/Kconfig | 24 +
board/toradex/colibri_t20_iris/MAINTAINERS | 6 +
board/total5200/Kconfig | 11 +
board/total5200/MAINTAINERS | 9 +
board/tqc/tqm5200/Kconfig | 63 +
board/tqc/tqm5200/MAINTAINERS | 26 +
board/tqc/tqm8260/Kconfig | 15 +
board/tqc/tqm8260/MAINTAINERS | 16 +
board/tqc/tqm8272/Kconfig | 15 +
board/tqc/tqm8272/MAINTAINERS | 6 +
board/tqc/tqm834x/Kconfig | 15 +
board/tqc/tqm834x/MAINTAINERS | 6 +
board/tqc/tqm8xx/Kconfig | 287 +++
board/tqc/tqm8xx/MAINTAINERS | 47 +
board/trizepsiv/Kconfig | 15 +
board/trizepsiv/MAINTAINERS | 7 +
board/ttcontrol/vision2/Kconfig | 23 +
board/ttcontrol/vision2/MAINTAINERS | 6 +
board/udoo/Kconfig | 19 +
board/udoo/MAINTAINERS | 6 +
board/utx8245/Kconfig | 11 +
board/utx8245/MAINTAINERS | 6 +
board/v38b/Kconfig | 11 +
board/v38b/MAINTAINERS | 6 +
board/ve8313/Kconfig | 11 +
board/ve8313/MAINTAINERS | 6 +
board/vpac270/Kconfig | 15 +
board/vpac270/MAINTAINERS | 8 +
board/w7o/Kconfig | 23 +
board/w7o/MAINTAINERS | 8 +
board/wandboard/Kconfig | 19 +
board/wandboard/MAINTAINERS | 8 +
board/woodburn/Kconfig | 39 +
board/woodburn/MAINTAINERS | 12 +
board/xaeniax/Kconfig | 15 +
board/xaeniax/MAINTAINERS | 6 +
board/xes/xpedite1000/Kconfig | 15 +
board/xes/xpedite1000/MAINTAINERS | 6 +
board/xes/xpedite517x/Kconfig | 15 +
board/xes/xpedite517x/MAINTAINERS | 6 +
board/xes/xpedite520x/Kconfig | 15 +
board/xes/xpedite520x/MAINTAINERS | 6 +
board/xes/xpedite537x/Kconfig | 15 +
board/xes/xpedite537x/MAINTAINERS | 6 +
board/xes/xpedite550x/Kconfig | 15 +
board/xes/xpedite550x/MAINTAINERS | 6 +
board/xilinx/microblaze-generic/Kconfig | 15 +
board/xilinx/microblaze-generic/MAINTAINERS | 6 +
board/xilinx/ml507/Kconfig | 15 +
board/xilinx/ml507/MAINTAINERS | 7 +
board/xilinx/ppc405-generic/Kconfig | 15 +
board/xilinx/ppc405-generic/MAINTAINERS | 7 +
board/xilinx/ppc440-generic/Kconfig | 15 +
board/xilinx/ppc440-generic/MAINTAINERS | 7 +
board/xilinx/zynq/Kconfig | 95 +
board/xilinx/zynq/MAINTAINERS | 15 +
board/zeus/Kconfig | 11 +
board/zeus/MAINTAINERS | 6 +
board/zipitz2/Kconfig | 15 +
board/zipitz2/MAINTAINERS | 6 +
boards.cfg | 1219 ----------
config.mk | 10 +
configs/A3000_defconfig | 3 +
configs/APC405_defconfig | 3 +
configs/AR405_defconfig | 3 +
configs/ASH405_defconfig | 3 +
configs/B4420QDS_NAND_defconfig | 5 +
configs/B4420QDS_SPIFLASH_defconfig | 4 +
configs/B4420QDS_defconfig | 4 +
configs/B4860QDS_NAND_defconfig | 5 +
configs/B4860QDS_SECURE_BOOT_defconfig | 4 +
configs/B4860QDS_SPIFLASH_defconfig | 4 +
configs/B4860QDS_SRIO_PCIE_BOOT_defconfig | 4 +
configs/B4860QDS_defconfig | 4 +
configs/BC3450_defconfig | 3 +
configs/BSC9131RDB_NAND_SYSCLK100_defconfig | 5 +
configs/BSC9131RDB_NAND_defconfig | 5 +
configs/BSC9131RDB_SPIFLASH_SYSCLK100_defconfig | 4 +
configs/BSC9131RDB_SPIFLASH_defconfig | 4 +
configs/BSC9132QDS_NAND_DDRCLK100_SECURE_defconfig | 4 +
configs/BSC9132QDS_NAND_DDRCLK100_defconfig | 5 +
configs/BSC9132QDS_NAND_DDRCLK133_SECURE_defconfig | 4 +
configs/BSC9132QDS_NAND_DDRCLK133_defconfig | 5 +
configs/BSC9132QDS_NOR_DDRCLK100_SECURE_defconfig | 4 +
configs/BSC9132QDS_NOR_DDRCLK100_defconfig | 4 +
configs/BSC9132QDS_NOR_DDRCLK133_SECURE_defconfig | 4 +
configs/BSC9132QDS_NOR_DDRCLK133_defconfig | 4 +
.../BSC9132QDS_SDCARD_DDRCLK100_SECURE_defconfig | 4 +
configs/BSC9132QDS_SDCARD_DDRCLK100_defconfig | 4 +
.../BSC9132QDS_SDCARD_DDRCLK133_SECURE_defconfig | 4 +
configs/BSC9132QDS_SDCARD_DDRCLK133_defconfig | 4 +
.../BSC9132QDS_SPIFLASH_DDRCLK100_SECURE_defconfig | 4 +
configs/BSC9132QDS_SPIFLASH_DDRCLK100_defconfig | 4 +
.../BSC9132QDS_SPIFLASH_DDRCLK133_SECURE_defconfig | 4 +
configs/BSC9132QDS_SPIFLASH_DDRCLK133_defconfig | 4 +
configs/C29XPCIE_NAND_defconfig | 6 +
configs/C29XPCIE_SPIFLASH_defconfig | 4 +
configs/C29XPCIE_defconfig | 4 +
configs/CATcenter_25_defconfig | 4 +
configs/CATcenter_33_defconfig | 4 +
configs/CATcenter_defconfig | 4 +
configs/CMS700_defconfig | 3 +
configs/CPC45_ROMBOOT_defconfig | 4 +
configs/CPC45_defconfig | 3 +
configs/CPCI2DP_defconfig | 3 +
configs/CPCI4052_defconfig | 3 +
configs/CPCI405AB_defconfig | 3 +
configs/CPCI405DT_defconfig | 3 +
configs/CPCI405_defconfig | 3 +
configs/CPCI750_defconfig | 3 +
configs/CPCIISER4_defconfig | 3 +
configs/CPU86_ROMBOOT_defconfig | 4 +
configs/CPU86_defconfig | 3 +
configs/CPU87_ROMBOOT_defconfig | 4 +
configs/CPU87_defconfig | 3 +
configs/CRAYL1_defconfig | 3 +
configs/CU824_defconfig | 3 +
configs/Cubietruck_FEL_defconfig | 4 +
configs/Cubietruck_defconfig | 4 +
configs/DB64360_defconfig | 3 +
configs/DB64460_defconfig | 3 +
configs/DP405_defconfig | 3 +
configs/DU405_defconfig | 3 +
configs/DU440_defconfig | 3 +
configs/ELPPC_defconfig | 3 +
configs/ELPT860_defconfig | 3 +
configs/ESTEEM192E_defconfig | 3 +
configs/EVAL5200_defconfig | 4 +
configs/FLAGADM_defconfig | 3 +
configs/FPS850L_defconfig | 3 +
configs/FPS860L_defconfig | 3 +
configs/G2000_defconfig | 3 +
configs/GEN860T_SC_defconfig | 4 +
configs/GEN860T_defconfig | 3 +
configs/HH405_defconfig | 3 +
configs/HUB405_defconfig | 3 +
configs/HWW1U1A_defconfig | 3 +
configs/ICU862_100MHz_defconfig | 4 +
configs/ICU862_defconfig | 3 +
configs/IDS8247_defconfig | 3 +
configs/IP860_defconfig | 3 +
configs/IPHASE4539_defconfig | 3 +
configs/IVML24_128_defconfig | 4 +
configs/IVML24_256_defconfig | 4 +
configs/IVML24_defconfig | 4 +
configs/IVMS8_128_defconfig | 4 +
configs/IVMS8_256_defconfig | 4 +
configs/IVMS8_defconfig | 4 +
configs/JSE_defconfig | 3 +
configs/KAREF_defconfig | 3 +
configs/KUP4K_defconfig | 3 +
configs/KUP4X_defconfig | 3 +
configs/Lite5200_LOWBOOT08_defconfig | 4 +
configs/Lite5200_LOWBOOT_defconfig | 4 +
configs/Lite5200_defconfig | 3 +
configs/M5208EVBE_defconfig | 2 +
configs/M52277EVB_defconfig | 3 +
configs/M52277EVB_stmicro_defconfig | 3 +
configs/M5235EVB_Flash32_defconfig | 3 +
configs/M5235EVB_defconfig | 3 +
configs/M5249EVB_defconfig | 2 +
configs/M5253DEMO_defconfig | 2 +
configs/M5253EVBE_defconfig | 2 +
configs/M5272C3_defconfig | 2 +
configs/M5275EVB_defconfig | 2 +
configs/M5282EVB_defconfig | 2 +
configs/M53017EVB_defconfig | 2 +
configs/M5329AFEE_defconfig | 3 +
configs/M5329BFEE_defconfig | 3 +
configs/M5373EVB_defconfig | 3 +
configs/M54418TWR_defconfig | 3 +
configs/M54418TWR_nand_mii_defconfig | 3 +
configs/M54418TWR_nand_rmii_defconfig | 3 +
configs/M54418TWR_nand_rmii_lowfreq_defconfig | 3 +
configs/M54418TWR_serial_mii_defconfig | 3 +
configs/M54418TWR_serial_rmii_defconfig | 3 +
configs/M54451EVB_defconfig | 3 +
configs/M54451EVB_stmicro_defconfig | 3 +
configs/M54455EVB_a66_defconfig | 3 +
configs/M54455EVB_defconfig | 3 +
configs/M54455EVB_i66_defconfig | 3 +
configs/M54455EVB_intel_defconfig | 3 +
configs/M54455EVB_stm33_defconfig | 3 +
configs/M5475AFE_defconfig | 3 +
configs/M5475BFE_defconfig | 3 +
configs/M5475CFE_defconfig | 3 +
configs/M5475DFE_defconfig | 3 +
configs/M5475EFE_defconfig | 3 +
configs/M5475FFE_defconfig | 3 +
configs/M5475GFE_defconfig | 3 +
configs/M5485AFE_defconfig | 3 +
configs/M5485BFE_defconfig | 3 +
configs/M5485CFE_defconfig | 3 +
configs/M5485DFE_defconfig | 3 +
configs/M5485EFE_defconfig | 3 +
configs/M5485FFE_defconfig | 3 +
configs/M5485GFE_defconfig | 3 +
configs/M5485HFE_defconfig | 3 +
configs/MERGERBOX_defconfig | 3 +
configs/METROBOX_defconfig | 3 +
configs/MHPC_defconfig | 3 +
configs/MINI5200_defconfig | 4 +
configs/MIP405T_defconfig | 4 +
configs/MIP405_defconfig | 3 +
configs/MPC8266ADS_defconfig | 3 +
configs/MPC8308RDB_defconfig | 3 +
configs/MPC8313ERDB_33_defconfig | 4 +
configs/MPC8313ERDB_66_defconfig | 4 +
configs/MPC8313ERDB_NAND_33_defconfig | 5 +
configs/MPC8313ERDB_NAND_66_defconfig | 5 +
configs/MPC8315ERDB_defconfig | 3 +
configs/MPC8323ERDB_defconfig | 3 +
configs/MPC832XEMDS_ATM_defconfig | 4 +
configs/MPC832XEMDS_HOST_33_defconfig | 4 +
configs/MPC832XEMDS_HOST_66_defconfig | 4 +
configs/MPC832XEMDS_SLAVE_defconfig | 4 +
configs/MPC832XEMDS_defconfig | 3 +
configs/MPC8349EMDS_defconfig | 3 +
configs/MPC8349ITXGP_defconfig | 4 +
configs/MPC8349ITX_LOWBOOT_defconfig | 4 +
configs/MPC8349ITX_defconfig | 4 +
configs/MPC8360EMDS_33_ATM_defconfig | 4 +
configs/MPC8360EMDS_33_HOST_33_defconfig | 4 +
configs/MPC8360EMDS_33_HOST_66_defconfig | 4 +
configs/MPC8360EMDS_33_SLAVE_defconfig | 4 +
configs/MPC8360EMDS_33_defconfig | 4 +
configs/MPC8360EMDS_66_ATM_defconfig | 4 +
configs/MPC8360EMDS_66_HOST_33_defconfig | 4 +
configs/MPC8360EMDS_66_HOST_66_defconfig | 4 +
configs/MPC8360EMDS_66_SLAVE_defconfig | 4 +
configs/MPC8360EMDS_66_defconfig | 4 +
configs/MPC8360ERDK_33_defconfig | 4 +
configs/MPC8360ERDK_defconfig | 3 +
configs/MPC837XEMDS_HOST_defconfig | 4 +
configs/MPC837XEMDS_defconfig | 3 +
configs/MPC837XERDB_defconfig | 3 +
configs/MPC8536DS_36BIT_defconfig | 4 +
configs/MPC8536DS_SDCARD_defconfig | 4 +
configs/MPC8536DS_SPIFLASH_defconfig | 4 +
configs/MPC8536DS_defconfig | 3 +
configs/MPC8540ADS_defconfig | 3 +
configs/MPC8541CDS_defconfig | 3 +
configs/MPC8541CDS_legacy_defconfig | 4 +
configs/MPC8544DS_defconfig | 3 +
configs/MPC8548CDS_36BIT_defconfig | 4 +
configs/MPC8548CDS_defconfig | 3 +
configs/MPC8548CDS_legacy_defconfig | 4 +
configs/MPC8555CDS_defconfig | 3 +
configs/MPC8555CDS_legacy_defconfig | 4 +
configs/MPC8560ADS_defconfig | 3 +
configs/MPC8568MDS_defconfig | 3 +
configs/MPC8569MDS_ATM_defconfig | 4 +
configs/MPC8569MDS_defconfig | 3 +
configs/MPC8572DS_36BIT_defconfig | 4 +
configs/MPC8572DS_defconfig | 3 +
configs/MPC8610HPCD_defconfig | 3 +
configs/MPC8641HPCN_36BIT_defconfig | 4 +
configs/MPC8641HPCN_defconfig | 3 +
configs/MUSENKI_defconfig | 3 +
configs/MVBC_P_defconfig | 4 +
configs/MVBLM7_defconfig | 3 +
configs/MVBLUE_defconfig | 3 +
configs/MVSMR_defconfig | 3 +
configs/MigoR_defconfig | 2 +
configs/MiniFAP_defconfig | 4 +
configs/NETVIA_V2_defconfig | 4 +
configs/NETVIA_defconfig | 4 +
configs/NSCU_defconfig | 3 +
configs/O2D300_defconfig | 3 +
configs/O2DNT2_RAMBOOT_defconfig | 4 +
configs/O2DNT2_defconfig | 3 +
configs/O2D_defconfig | 3 +
configs/O2I_defconfig | 3 +
configs/O2MNT_O2M110_defconfig | 4 +
configs/O2MNT_O2M112_defconfig | 4 +
configs/O2MNT_O2M113_defconfig | 4 +
configs/O2MNT_defconfig | 3 +
configs/O3DNT_defconfig | 3 +
configs/OCRTC_defconfig | 3 +
configs/P1010RDB-PA_36BIT_NAND_SECBOOT_defconfig | 4 +
configs/P1010RDB-PA_36BIT_NAND_defconfig | 6 +
configs/P1010RDB-PA_36BIT_NOR_SECBOOT_defconfig | 4 +
configs/P1010RDB-PA_36BIT_NOR_defconfig | 4 +
configs/P1010RDB-PA_36BIT_SDCARD_defconfig | 5 +
.../P1010RDB-PA_36BIT_SPIFLASH_SECBOOT_defconfig | 4 +
configs/P1010RDB-PA_36BIT_SPIFLASH_defconfig | 5 +
configs/P1010RDB-PA_NAND_SECBOOT_defconfig | 4 +
configs/P1010RDB-PA_NAND_defconfig | 6 +
configs/P1010RDB-PA_NOR_SECBOOT_defconfig | 4 +
configs/P1010RDB-PA_NOR_defconfig | 4 +
configs/P1010RDB-PA_SDCARD_defconfig | 5 +
configs/P1010RDB-PA_SPIFLASH_SECBOOT_defconfig | 4 +
configs/P1010RDB-PA_SPIFLASH_defconfig | 5 +
configs/P1010RDB-PB_36BIT_NAND_SECBOOT_defconfig | 4 +
configs/P1010RDB-PB_36BIT_NAND_defconfig | 6 +
configs/P1010RDB-PB_36BIT_NOR_SECBOOT_defconfig | 4 +
configs/P1010RDB-PB_36BIT_NOR_defconfig | 4 +
configs/P1010RDB-PB_36BIT_SDCARD_defconfig | 5 +
.../P1010RDB-PB_36BIT_SPIFLASH_SECBOOT_defconfig | 4 +
configs/P1010RDB-PB_36BIT_SPIFLASH_defconfig | 5 +
configs/P1010RDB-PB_NAND_SECBOOT_defconfig | 4 +
configs/P1010RDB-PB_NAND_defconfig | 6 +
configs/P1010RDB-PB_NOR_SECBOOT_defconfig | 4 +
configs/P1010RDB-PB_NOR_defconfig | 4 +
configs/P1010RDB-PB_SDCARD_defconfig | 5 +
configs/P1010RDB-PB_SPIFLASH_SECBOOT_defconfig | 4 +
configs/P1010RDB-PB_SPIFLASH_defconfig | 5 +
configs/P1011RDB_36BIT_SDCARD_defconfig | 5 +
configs/P1011RDB_36BIT_SPIFLASH_defconfig | 5 +
configs/P1011RDB_36BIT_defconfig | 4 +
configs/P1011RDB_NAND_defconfig | 6 +
configs/P1011RDB_SDCARD_defconfig | 5 +
configs/P1011RDB_SPIFLASH_defconfig | 5 +
configs/P1011RDB_defconfig | 4 +
configs/P1020MBG-PC_36BIT_SDCARD_defconfig | 5 +
configs/P1020MBG-PC_36BIT_defconfig | 4 +
configs/P1020MBG-PC_SDCARD_defconfig | 5 +
configs/P1020MBG-PC_defconfig | 4 +
configs/P1020RDB-PC_36BIT_NAND_defconfig | 6 +
configs/P1020RDB-PC_36BIT_SDCARD_defconfig | 5 +
configs/P1020RDB-PC_36BIT_SPIFLASH_defconfig | 5 +
configs/P1020RDB-PC_36BIT_defconfig | 4 +
configs/P1020RDB-PC_NAND_defconfig | 6 +
configs/P1020RDB-PC_SDCARD_defconfig | 5 +
configs/P1020RDB-PC_SPIFLASH_defconfig | 5 +
configs/P1020RDB-PC_defconfig | 4 +
configs/P1020RDB-PD_NAND_defconfig | 6 +
configs/P1020RDB-PD_SDCARD_defconfig | 5 +
configs/P1020RDB-PD_SPIFLASH_defconfig | 5 +
configs/P1020RDB-PD_defconfig | 4 +
configs/P1020RDB_36BIT_SDCARD_defconfig | 5 +
configs/P1020RDB_36BIT_SPIFLASH_defconfig | 5 +
configs/P1020RDB_36BIT_defconfig | 4 +
configs/P1020RDB_NAND_defconfig | 6 +
configs/P1020RDB_SDCARD_defconfig | 5 +
configs/P1020RDB_SPIFLASH_defconfig | 5 +
configs/P1020RDB_defconfig | 4 +
configs/P1020UTM-PC_36BIT_SDCARD_defconfig | 5 +
configs/P1020UTM-PC_36BIT_defconfig | 4 +
configs/P1020UTM-PC_SDCARD_defconfig | 5 +
configs/P1020UTM-PC_defconfig | 4 +
configs/P1021RDB-PC_36BIT_NAND_defconfig | 6 +
configs/P1021RDB-PC_36BIT_SDCARD_defconfig | 5 +
configs/P1021RDB-PC_36BIT_SPIFLASH_defconfig | 5 +
configs/P1021RDB-PC_36BIT_defconfig | 4 +
configs/P1021RDB-PC_NAND_defconfig | 6 +
configs/P1021RDB-PC_SDCARD_defconfig | 5 +
configs/P1021RDB-PC_SPIFLASH_defconfig | 5 +
configs/P1021RDB-PC_defconfig | 4 +
configs/P1022DS_36BIT_NAND_defconfig | 6 +
configs/P1022DS_36BIT_SDCARD_defconfig | 5 +
configs/P1022DS_36BIT_SPIFLASH_defconfig | 5 +
configs/P1022DS_36BIT_defconfig | 4 +
configs/P1022DS_NAND_defconfig | 6 +
configs/P1022DS_SDCARD_defconfig | 5 +
configs/P1022DS_SPIFLASH_defconfig | 5 +
configs/P1022DS_defconfig | 3 +
configs/P1023RDB_defconfig | 3 +
configs/P1024RDB_36BIT_defconfig | 4 +
configs/P1024RDB_NAND_defconfig | 6 +
configs/P1024RDB_SDCARD_defconfig | 5 +
configs/P1024RDB_SPIFLASH_defconfig | 5 +
configs/P1024RDB_defconfig | 4 +
configs/P1025RDB_36BIT_defconfig | 4 +
configs/P1025RDB_NAND_defconfig | 6 +
configs/P1025RDB_SDCARD_defconfig | 5 +
configs/P1025RDB_SPIFLASH_defconfig | 5 +
configs/P1025RDB_defconfig | 4 +
configs/P2010RDB_36BIT_SDCARD_defconfig | 5 +
configs/P2010RDB_36BIT_SPIFLASH_defconfig | 5 +
configs/P2010RDB_36BIT_defconfig | 4 +
configs/P2010RDB_NAND_defconfig | 6 +
configs/P2010RDB_SDCARD_defconfig | 5 +
configs/P2010RDB_SPIFLASH_defconfig | 5 +
configs/P2010RDB_defconfig | 4 +
configs/P2020COME_SDCARD_defconfig | 4 +
configs/P2020COME_SPIFLASH_defconfig | 4 +
configs/P2020DS_36BIT_defconfig | 4 +
configs/P2020DS_DDR2_defconfig | 4 +
configs/P2020DS_SDCARD_defconfig | 4 +
configs/P2020DS_SPIFLASH_defconfig | 4 +
configs/P2020DS_defconfig | 3 +
configs/P2020RDB-PC_36BIT_NAND_defconfig | 6 +
configs/P2020RDB-PC_36BIT_SDCARD_defconfig | 5 +
configs/P2020RDB-PC_36BIT_SPIFLASH_defconfig | 5 +
configs/P2020RDB-PC_36BIT_defconfig | 4 +
configs/P2020RDB-PC_NAND_defconfig | 6 +
configs/P2020RDB-PC_SDCARD_defconfig | 5 +
configs/P2020RDB-PC_SPIFLASH_defconfig | 5 +
configs/P2020RDB-PC_defconfig | 4 +
configs/P2020RDB_36BIT_SDCARD_defconfig | 5 +
configs/P2020RDB_36BIT_SPIFLASH_defconfig | 5 +
configs/P2020RDB_36BIT_defconfig | 4 +
configs/P2020RDB_NAND_defconfig | 6 +
configs/P2020RDB_SDCARD_defconfig | 5 +
configs/P2020RDB_SPIFLASH_defconfig | 5 +
configs/P2020RDB_defconfig | 4 +
configs/P2041RDB_NAND_defconfig | 4 +
configs/P2041RDB_SDCARD_defconfig | 4 +
configs/P2041RDB_SECURE_BOOT_defconfig | 4 +
configs/P2041RDB_SPIFLASH_defconfig | 4 +
configs/P2041RDB_SRIO_PCIE_BOOT_defconfig | 4 +
configs/P2041RDB_defconfig | 3 +
configs/P3041DS_NAND_defconfig | 4 +
configs/P3041DS_SDCARD_defconfig | 4 +
configs/P3041DS_SECURE_BOOT_defconfig | 4 +
configs/P3041DS_SPIFLASH_defconfig | 4 +
configs/P3041DS_SRIO_PCIE_BOOT_defconfig | 4 +
configs/P3041DS_defconfig | 3 +
configs/P3G4_defconfig | 3 +
configs/P4080DS_SDCARD_defconfig | 4 +
configs/P4080DS_SECURE_BOOT_defconfig | 4 +
configs/P4080DS_SPIFLASH_defconfig | 4 +
configs/P4080DS_SRIO_PCIE_BOOT_defconfig | 4 +
configs/P4080DS_defconfig | 3 +
configs/P5020DS_NAND_defconfig | 4 +
configs/P5020DS_SDCARD_defconfig | 4 +
configs/P5020DS_SECURE_BOOT_defconfig | 4 +
configs/P5020DS_SPIFLASH_defconfig | 4 +
configs/P5020DS_SRIO_PCIE_BOOT_defconfig | 4 +
configs/P5020DS_defconfig | 3 +
configs/P5040DS_NAND_defconfig | 4 +
configs/P5040DS_SDCARD_defconfig | 4 +
configs/P5040DS_SPIFLASH_defconfig | 4 +
configs/P5040DS_defconfig | 3 +
configs/PATI_defconfig | 3 +
configs/PCI405_defconfig | 3 +
configs/PCI5441_defconfig | 2 +
configs/PIP405_defconfig | 3 +
configs/PK1C20_defconfig | 2 +
configs/PLU405_defconfig | 3 +
configs/PM520_DDR_defconfig | 4 +
configs/PM520_ROMBOOT_DDR_defconfig | 4 +
configs/PM520_ROMBOOT_defconfig | 4 +
configs/PM520_defconfig | 3 +
configs/PM825_BIGFLASH_defconfig | 4 +
configs/PM825_ROMBOOT_BIGFLASH_defconfig | 4 +
configs/PM825_ROMBOOT_defconfig | 4 +
configs/PM825_defconfig | 4 +
configs/PM826_BIGFLASH_defconfig | 4 +
configs/PM826_ROMBOOT_BIGFLASH_defconfig | 4 +
configs/PM826_ROMBOOT_defconfig | 4 +
configs/PM826_defconfig | 4 +
configs/PM828_PCI_defconfig | 4 +
configs/PM828_ROMBOOT_PCI_defconfig | 4 +
configs/PM828_ROMBOOT_defconfig | 4 +
configs/PM828_defconfig | 3 +
configs/PMC405DE_defconfig | 3 +
configs/PMC405_defconfig | 3 +
configs/PMC440_defconfig | 3 +
configs/PPChameleonEVB_BA_25_defconfig | 4 +
configs/PPChameleonEVB_BA_33_defconfig | 4 +
configs/PPChameleonEVB_HI_25_defconfig | 4 +
configs/PPChameleonEVB_HI_33_defconfig | 4 +
configs/PPChameleonEVB_ME_25_defconfig | 4 +
configs/PPChameleonEVB_ME_33_defconfig | 4 +
configs/PPChameleonEVB_defconfig | 3 +
configs/R360MPI_defconfig | 3 +
configs/RRvision_LCD_defconfig | 4 +
configs/RRvision_defconfig | 3 +
configs/SM850_defconfig | 3 +
configs/SPD823TS_defconfig | 3 +
configs/SXNI855T_defconfig | 3 +
configs/Sandpoint8240_defconfig | 3 +
configs/Sandpoint8245_defconfig | 3 +
configs/T1040QDS_D4_defconfig | 4 +
configs/T1040QDS_SECURE_BOOT_defconfig | 4 +
configs/T1040QDS_defconfig | 4 +
configs/T1040RDB_NAND_defconfig | 5 +
configs/T1040RDB_SDCARD_defconfig | 5 +
configs/T1040RDB_SECURE_BOOT_defconfig | 4 +
configs/T1040RDB_SPIFLASH_defconfig | 5 +
configs/T1040RDB_defconfig | 4 +
configs/T1042RDB_PI_NAND_defconfig | 5 +
configs/T1042RDB_PI_SDCARD_defconfig | 5 +
configs/T1042RDB_PI_SPIFLASH_defconfig | 5 +
configs/T1042RDB_PI_defconfig | 4 +
configs/T2080QDS_NAND_defconfig | 5 +
configs/T2080QDS_SDCARD_defconfig | 5 +
configs/T2080QDS_SECURE_BOOT_defconfig | 4 +
configs/T2080QDS_SPIFLASH_defconfig | 5 +
configs/T2080QDS_SRIO_PCIE_BOOT_defconfig | 4 +
configs/T2080QDS_defconfig | 4 +
configs/T2080RDB_NAND_defconfig | 5 +
configs/T2080RDB_SDCARD_defconfig | 5 +
configs/T2080RDB_SECURE_BOOT_defconfig | 4 +
configs/T2080RDB_SPIFLASH_defconfig | 5 +
configs/T2080RDB_SRIO_PCIE_BOOT_defconfig | 4 +
configs/T2080RDB_defconfig | 4 +
configs/T2081QDS_NAND_defconfig | 5 +
configs/T2081QDS_SDCARD_defconfig | 5 +
configs/T2081QDS_SPIFLASH_defconfig | 5 +
configs/T2081QDS_SRIO_PCIE_BOOT_defconfig | 4 +
configs/T2081QDS_defconfig | 4 +
configs/T4160QDS_NAND_defconfig | 5 +
configs/T4160QDS_SDCARD_defconfig | 5 +
configs/T4160QDS_SECURE_BOOT_defconfig | 4 +
configs/T4160QDS_SPIFLASH_defconfig | 4 +
configs/T4160QDS_defconfig | 4 +
configs/T4160RDB_defconfig | 4 +
configs/T4240EMU_defconfig | 4 +
configs/T4240QDS_NAND_defconfig | 5 +
configs/T4240QDS_SDCARD_defconfig | 5 +
configs/T4240QDS_SECURE_BOOT_defconfig | 4 +
configs/T4240QDS_SPIFLASH_defconfig | 4 +
configs/T4240QDS_SRIO_PCIE_BOOT_defconfig | 4 +
configs/T4240QDS_defconfig | 4 +
configs/T4240RDB_defconfig | 4 +
configs/TASREG_defconfig | 2 +
configs/TB5200_B_defconfig | 4 +
configs/TB5200_defconfig | 3 +
configs/TK885D_defconfig | 3 +
configs/TOP5200_defconfig | 4 +
configs/TOP860_defconfig | 3 +
configs/TQM5200S_HIGHBOOT_defconfig | 4 +
configs/TQM5200S_defconfig | 4 +
configs/TQM5200_B_HIGHBOOT_defconfig | 4 +
configs/TQM5200_B_defconfig | 4 +
configs/TQM5200_STK100_defconfig | 4 +
configs/TQM5200_defconfig | 3 +
configs/TQM823L_LCD_defconfig | 4 +
configs/TQM823L_defconfig | 3 +
configs/TQM823M_defconfig | 3 +
configs/TQM8255_AA_defconfig | 4 +
configs/TQM8260_AA_defconfig | 4 +
configs/TQM8260_AB_defconfig | 4 +
configs/TQM8260_AC_defconfig | 4 +
configs/TQM8260_AD_defconfig | 4 +
configs/TQM8260_AE_defconfig | 4 +
configs/TQM8260_AF_defconfig | 4 +
configs/TQM8260_AG_defconfig | 4 +
configs/TQM8260_AH_defconfig | 4 +
configs/TQM8260_AI_defconfig | 4 +
configs/TQM8265_AA_defconfig | 4 +
configs/TQM8272_defconfig | 3 +
configs/TQM834x_defconfig | 3 +
configs/TQM850L_defconfig | 3 +
configs/TQM850M_defconfig | 3 +
configs/TQM855L_defconfig | 3 +
configs/TQM855M_defconfig | 3 +
configs/TQM860L_defconfig | 3 +
configs/TQM860M_defconfig | 3 +
configs/TQM862L_defconfig | 3 +
configs/TQM862M_defconfig | 3 +
configs/TQM866M_defconfig | 3 +
configs/TQM885D_defconfig | 3 +
configs/TTTech_defconfig | 4 +
configs/TWR-P1025_defconfig | 4 +
configs/Total5200_Rev2_defconfig | 4 +
configs/Total5200_Rev2_lowboot_defconfig | 4 +
configs/Total5200_defconfig | 4 +
configs/Total5200_lowboot_defconfig | 4 +
configs/VCMA9_defconfig | 2 +
configs/VOH405_defconfig | 3 +
configs/VOM405_defconfig | 3 +
configs/VoVPN-GW_66MHz_defconfig | 4 +
configs/W7OLMC_defconfig | 3 +
configs/W7OLMG_defconfig | 3 +
configs/WUH405_defconfig | 3 +
configs/ZUMA_defconfig | 3 +
configs/a320evb_defconfig | 2 +
configs/a3m071_defconfig | 4 +
configs/a4m072_defconfig | 3 +
configs/a4m2k_defconfig | 5 +
configs/ac14xx_defconfig | 3 +
configs/acadia_defconfig | 3 +
configs/adp-ag101_defconfig | 2 +
configs/adp-ag101p_defconfig | 2 +
configs/adp-ag102_defconfig | 2 +
configs/aev_defconfig | 3 +
configs/afeb9260_defconfig | 2 +
configs/alpr_defconfig | 3 +
configs/am335x_boneblack_defconfig | 4 +
configs/am335x_boneblack_vboot_defconfig | 4 +
configs/am335x_evm_defconfig | 4 +
configs/am335x_evm_nor_defconfig | 4 +
configs/am335x_evm_norboot_defconfig | 3 +
configs/am335x_evm_spiboot_defconfig | 4 +
configs/am335x_evm_uart1_defconfig | 4 +
configs/am335x_evm_uart2_defconfig | 4 +
configs/am335x_evm_uart3_defconfig | 4 +
configs/am335x_evm_uart4_defconfig | 4 +
configs/am335x_evm_uart5_defconfig | 4 +
configs/am335x_evm_usbspl_defconfig | 4 +
configs/am335x_igep0033_defconfig | 3 +
configs/am3517_crane_defconfig | 3 +
configs/am3517_evm_defconfig | 3 +
configs/am43xx_evm_defconfig | 4 +
configs/am43xx_evm_qspiboot_defconfig | 3 +
configs/ap325rxa_defconfig | 2 +
configs/ap_sh4a_4a_defconfig | 2 +
configs/apf27_defconfig | 3 +
configs/apx4devkit_defconfig | 3 +
configs/arcangel4-be_defconfig | 2 +
configs/arcangel4_defconfig | 2 +
configs/arches_defconfig | 4 +
configs/aria_defconfig | 3 +
configs/armadillo-800eva_defconfig | 2 +
configs/arndale_defconfig | 3 +
configs/aspenite_defconfig | 2 +
configs/astro_mcf5373l_defconfig | 2 +
configs/at91rm9200ek_defconfig | 2 +
configs/at91rm9200ek_ram_defconfig | 3 +
configs/at91sam9260ek_dataflash_cs0_defconfig | 3 +
configs/at91sam9260ek_dataflash_cs1_defconfig | 3 +
configs/at91sam9260ek_nandflash_defconfig | 3 +
configs/at91sam9261ek_dataflash_cs0_defconfig | 3 +
configs/at91sam9261ek_dataflash_cs3_defconfig | 3 +
configs/at91sam9261ek_nandflash_defconfig | 3 +
configs/at91sam9263ek_dataflash_cs0_defconfig | 3 +
configs/at91sam9263ek_dataflash_defconfig | 3 +
configs/at91sam9263ek_nandflash_defconfig | 3 +
configs/at91sam9263ek_norflash_boot_defconfig | 3 +
configs/at91sam9263ek_norflash_defconfig | 3 +
configs/at91sam9g10ek_dataflash_cs0_defconfig | 3 +
configs/at91sam9g10ek_dataflash_cs3_defconfig | 3 +
configs/at91sam9g10ek_nandflash_defconfig | 3 +
configs/at91sam9g20ek_2mmc_nandflash_defconfig | 3 +
configs/at91sam9g20ek_dataflash_cs0_defconfig | 3 +
configs/at91sam9g20ek_dataflash_cs1_defconfig | 3 +
configs/at91sam9g20ek_mmc_defconfig | 3 +
configs/at91sam9g20ek_nandflash_defconfig | 3 +
configs/at91sam9m10g45ek_mmc_defconfig | 3 +
configs/at91sam9m10g45ek_nandflash_defconfig | 3 +
configs/at91sam9n12ek_mmc_defconfig | 3 +
configs/at91sam9n12ek_nandflash_defconfig | 3 +
configs/at91sam9n12ek_spiflash_defconfig | 3 +
configs/at91sam9rlek_dataflash_defconfig | 3 +
configs/at91sam9rlek_nandflash_defconfig | 3 +
configs/at91sam9x5ek_dataflash_defconfig | 3 +
configs/at91sam9x5ek_mmc_defconfig | 3 +
configs/at91sam9x5ek_nandflash_defconfig | 3 +
configs/at91sam9x5ek_spiflash_defconfig | 3 +
configs/at91sam9xeek_dataflash_cs0_defconfig | 3 +
configs/at91sam9xeek_dataflash_cs1_defconfig | 3 +
configs/at91sam9xeek_nandflash_defconfig | 3 +
configs/atc_defconfig | 3 +
configs/atngw100_defconfig | 2 +
configs/atngw100mkii_defconfig | 2 +
configs/atstk1002_defconfig | 2 +
configs/atstk1003_defconfig | 2 +
configs/atstk1004_defconfig | 2 +
configs/atstk1006_defconfig | 2 +
configs/axm_defconfig | 3 +
configs/axs101_defconfig | 2 +
configs/balloon3_defconfig | 2 +
configs/bamboo_defconfig | 3 +
configs/bcm28155_ap_defconfig | 2 +
configs/bct-brettl2_defconfig | 2 +
configs/beaver_defconfig | 3 +
configs/bf506f-ezkit_defconfig | 2 +
configs/bf518f-ezbrd_defconfig | 2 +
configs/bf525-ucr2_defconfig | 2 +
configs/bf526-ezbrd_defconfig | 2 +
configs/bf527-ad7160-eval_defconfig | 2 +
configs/bf527-ezkit-v2_defconfig | 3 +
configs/bf527-ezkit_defconfig | 2 +
configs/bf527-sdp_defconfig | 2 +
configs/bf533-ezkit_defconfig | 2 +
configs/bf533-stamp_defconfig | 2 +
configs/bf537-minotaur_defconfig | 2 +
configs/bf537-pnav_defconfig | 2 +
configs/bf537-srv1_defconfig | 2 +
configs/bf537-stamp_defconfig | 2 +
configs/bf538f-ezkit_defconfig | 2 +
configs/bf548-ezkit_defconfig | 2 +
configs/bf561-acvilon_defconfig | 2 +
configs/bf561-ezkit_defconfig | 2 +
configs/bf609-ezkit_defconfig | 2 +
configs/bg0900_defconfig | 3 +
configs/blackstamp_defconfig | 2 +
configs/blackvme_defconfig | 2 +
configs/bluestone_defconfig | 3 +
configs/br4_defconfig | 2 +
configs/bubinga_defconfig | 3 +
configs/caddy2_defconfig | 4 +
configs/calimain_defconfig | 2 +
configs/cam5200_defconfig | 4 +
configs/cam5200_niosflash_defconfig | 4 +
configs/cam_enc_4xx_defconfig | 3 +
configs/canmb_defconfig | 3 +
configs/canyonlands_defconfig | 4 +
configs/cardhu_defconfig | 3 +
configs/cgtqmx6qeval_defconfig | 3 +
configs/charon_defconfig | 3 +
configs/cm-bf527_defconfig | 2 +
configs/cm-bf533_defconfig | 2 +
configs/cm-bf537e_defconfig | 2 +
configs/cm-bf537u_defconfig | 2 +
configs/cm-bf548_defconfig | 2 +
configs/cm-bf561_defconfig | 2 +
configs/cm4008_defconfig | 2 +
configs/cm41xx_defconfig | 2 +
configs/cm5200_defconfig | 3 +
configs/cm_t335_defconfig | 3 +
configs/cm_t35_defconfig | 3 +
configs/cm_t54_defconfig | 3 +
configs/cmi_mpc5xx_defconfig | 3 +
configs/cobra5272_defconfig | 2 +
configs/cogent_mpc8260_defconfig | 3 +
configs/cogent_mpc8xx_defconfig | 3 +
configs/colibri_pxa270_defconfig | 2 +
configs/colibri_t20_iris_defconfig | 3 +
.../controlcenterd_36BIT_SDCARD_DEVELOP_defconfig | 4 +
configs/controlcenterd_36BIT_SDCARD_defconfig | 4 +
.../controlcenterd_TRAILBLAZER_DEVELOP_defconfig | 4 +
configs/controlcenterd_TRAILBLAZER_defconfig | 4 +
configs/coreboot-x86_defconfig | 3 +
configs/corvus_defconfig | 3 +
configs/cpci5200_defconfig | 3 +
configs/cpu9260_128M_defconfig | 3 +
configs/cpu9260_defconfig | 3 +
configs/cpu9260_nand_128M_defconfig | 3 +
configs/cpu9260_nand_defconfig | 3 +
configs/cpu9G20_128M_defconfig | 3 +
configs/cpu9G20_defconfig | 3 +
configs/cpu9G20_nand_128M_defconfig | 3 +
configs/cpu9G20_nand_defconfig | 3 +
configs/cpuat91_defconfig | 2 +
configs/cpuat91_ram_defconfig | 3 +
configs/csb272_defconfig | 3 +
configs/csb472_defconfig | 3 +
configs/d2net_v2_defconfig | 3 +
configs/da830evm_defconfig | 2 +
configs/da850_am18xxevm_defconfig | 4 +
configs/da850evm_defconfig | 4 +
configs/da850evm_direct_nor_defconfig | 3 +
configs/dalmore_defconfig | 3 +
configs/davinci_dm355evm_defconfig | 2 +
configs/davinci_dm355leopard_defconfig | 2 +
configs/davinci_dm365evm_defconfig | 2 +
configs/davinci_dm6467Tevm_defconfig | 3 +
configs/davinci_dm6467evm_defconfig | 3 +
configs/davinci_dvevm_defconfig | 2 +
configs/davinci_schmoogie_defconfig | 2 +
configs/davinci_sffsdr_defconfig | 2 +
configs/davinci_sonata_defconfig | 2 +
configs/dbau1000_defconfig | 3 +
configs/dbau1100_defconfig | 3 +
configs/dbau1500_defconfig | 3 +
configs/dbau1550_defconfig | 3 +
configs/dbau1550_el_defconfig | 3 +
configs/devconcenter_defconfig | 4 +
configs/devkit3250_defconfig | 2 +
configs/devkit8000_defconfig | 3 +
configs/dig297_defconfig | 2 +
configs/digsy_mtc_RAMBOOT_defconfig | 4 +
configs/digsy_mtc_defconfig | 3 +
configs/digsy_mtc_rev5_RAMBOOT_defconfig | 4 +
configs/digsy_mtc_rev5_defconfig | 4 +
configs/dkb_defconfig | 2 +
configs/dlvision-10g_defconfig | 3 +
configs/dlvision_defconfig | 3 +
configs/dnp5370_defconfig | 2 +
configs/dns325_defconfig | 2 +
configs/dockstar_defconfig | 2 +
configs/dra7xx_evm_defconfig | 4 +
configs/dra7xx_evm_qspiboot_defconfig | 4 +
configs/dra7xx_evm_uart3_defconfig | 4 +
configs/draco_defconfig | 3 +
configs/dreamplug_defconfig | 2 +
configs/duovero_defconfig | 3 +
configs/dxr2_defconfig | 3 +
configs/eXalion_defconfig | 3 +
configs/ea20_defconfig | 2 +
configs/eb_cpu5282_defconfig | 3 +
configs/eb_cpu5282_internal_defconfig | 3 +
configs/eb_cpux9k2_defconfig | 2 +
configs/eb_cpux9k2_ram_defconfig | 3 +
configs/ebony_defconfig | 3 +
configs/eco5pk_defconfig | 3 +
configs/ecovec_defconfig | 2 +
configs/edb9315a_defconfig | 3 +
configs/edminiv2_defconfig | 2 +
configs/enbw_cmc_defconfig | 2 +
configs/ep8260_defconfig | 3 +
configs/ep82xxm_defconfig | 3 +
configs/espt_defconfig | 2 +
configs/ethernut5_defconfig | 3 +
configs/favr-32-ezkit_defconfig | 2 +
configs/flea3_defconfig | 2 +
configs/fo300_defconfig | 4 +
configs/fx12mm_defconfig | 4 +
configs/fx12mm_flash_defconfig | 4 +
configs/galaxy5200_LOWBOOT_defconfig | 4 +
configs/galaxy5200_defconfig | 4 +
configs/gdppc440etx_defconfig | 3 +
configs/glacier_defconfig | 4 +
configs/goflexhome_defconfig | 2 +
configs/gplugd_defconfig | 2 +
configs/gr_cpci_ax2000_defconfig | 2 +
configs/gr_ep2s60_defconfig | 2 +
configs/gr_xc3s_1500_defconfig | 2 +
configs/grasshopper_defconfig | 2 +
configs/grsim_defconfig | 2 +
configs/grsim_leon2_defconfig | 2 +
configs/guruplug_defconfig | 2 +
configs/gw8260_defconfig | 3 +
configs/gwventana_defconfig | 4 +
configs/h2200_defconfig | 2 +
configs/haleakala_defconfig | 4 +
configs/hammerhead_defconfig | 2 +
configs/harmony_defconfig | 3 +
configs/hawkboard_defconfig | 3 +
configs/hawkboard_uart_defconfig | 4 +
configs/hermes_defconfig | 3 +
configs/highbank_defconfig | 2 +
configs/hmi1001_defconfig | 3 +
configs/hummingboard_solo_defconfig | 3 +
configs/hymod_defconfig | 3 +
configs/ib62x0_defconfig | 2 +
configs/ibf-dsp561_defconfig | 2 +
configs/icecube_5200_DDR_LOWBOOT08_defconfig | 4 +
configs/icecube_5200_DDR_LOWBOOT_defconfig | 4 +
configs/icecube_5200_DDR_defconfig | 4 +
configs/icecube_5200_LOWBOOT08_defconfig | 4 +
configs/icecube_5200_LOWBOOT_defconfig | 4 +
configs/icecube_5200_defconfig | 3 +
configs/icon_defconfig | 3 +
configs/iconnect_defconfig | 2 +
configs/ids8313_defconfig | 4 +
configs/igep0020_defconfig | 4 +
configs/igep0020_nand_defconfig | 4 +
configs/igep0030_defconfig | 4 +
configs/igep0030_nand_defconfig | 4 +
configs/igep0032_defconfig | 4 +
configs/ima3-mx53_defconfig | 3 +
configs/imx27lite_defconfig | 2 +
configs/imx31_litekit_defconfig | 2 +
configs/imx31_phycore_defconfig | 2 +
configs/imx31_phycore_eet_defconfig | 3 +
configs/inetspace_v2_defconfig | 3 +
configs/inka4x0_defconfig | 3 +
configs/integratorap_cm720t_defconfig | 3 +
configs/integratorap_cm920t_defconfig | 3 +
configs/integratorap_cm926ejs_defconfig | 3 +
configs/integratorap_cm946es_defconfig | 3 +
configs/integratorcp_cm1136_defconfig | 3 +
configs/integratorcp_cm920t_defconfig | 3 +
configs/integratorcp_cm926ejs_defconfig | 3 +
configs/integratorcp_cm946es_defconfig | 3 +
configs/intip_defconfig | 4 +
configs/io64_defconfig | 3 +
configs/io_defconfig | 3 +
configs/iocon_defconfig | 3 +
configs/ip04_defconfig | 2 +
configs/ipam390_defconfig | 3 +
configs/ipek01_defconfig | 3 +
configs/jadecpu_defconfig | 2 +
configs/jetson-tk1_defconfig | 4 +
configs/jornada_defconfig | 2 +
configs/jupiter_defconfig | 3 +
configs/k2hk_evm_defconfig | 2 +
configs/katmai_defconfig | 3 +
configs/kilauea_defconfig | 4 +
configs/km_kirkwood_128m16_defconfig | 3 +
configs/km_kirkwood_defconfig | 3 +
configs/km_kirkwood_pci_defconfig | 3 +
configs/kmcoge4_defconfig | 4 +
configs/kmcoge5ne_defconfig | 4 +
configs/kmcoge5un_defconfig | 3 +
configs/kmeter1_defconfig | 4 +
configs/kmlion1_defconfig | 4 +
configs/kmnusa_defconfig | 3 +
configs/kmopti2_defconfig | 4 +
configs/kmsugp1_defconfig | 3 +
configs/kmsupx5_defconfig | 4 +
configs/kmsuv31_defconfig | 3 +
configs/kmvect1_defconfig | 4 +
configs/koelsch_defconfig | 2 +
configs/korat_defconfig | 3 +
configs/korat_perm_defconfig | 4 +
configs/kwb_defconfig | 4 +
configs/kzm9g_defconfig | 2 +
configs/lager_defconfig | 2 +
configs/lcd4_lwmon5_defconfig | 5 +
configs/lite5200b_LOWBOOT_defconfig | 4 +
configs/lite5200b_PM_defconfig | 4 +
configs/lite5200b_defconfig | 4 +
configs/lp8x4x_defconfig | 2 +
configs/ls2085a_emu_D4_defconfig | 3 +
configs/ls2085a_emu_defconfig | 3 +
configs/ls2085a_simu_defconfig | 3 +
configs/lschlv2_defconfig | 3 +
configs/lsxhl_defconfig | 3 +
configs/luan_defconfig | 3 +
configs/lwmon5_defconfig | 3 +
configs/lwmon_defconfig | 3 +
configs/m28evk_defconfig | 3 +
configs/m53evk_defconfig | 4 +
configs/magnesium_defconfig | 2 +
configs/makalu_defconfig | 3 +
configs/malta_defconfig | 3 +
configs/maltael_defconfig | 3 +
configs/marsboard_defconfig | 3 +
configs/mcc200_COM12_SDRAM_defconfig | 4 +
configs/mcc200_COM12_defconfig | 4 +
configs/mcc200_COM12_highboot_SDRAM_defconfig | 4 +
configs/mcc200_COM12_highboot_defconfig | 4 +
configs/mcc200_SDRAM_defconfig | 4 +
configs/mcc200_defconfig | 3 +
configs/mcc200_highboot_SDRAM_defconfig | 4 +
configs/mcc200_highboot_defconfig | 4 +
configs/mcx_defconfig | 3 +
configs/mecp5123_defconfig | 3 +
configs/mecp5200_defconfig | 3 +
configs/medcom-wide_defconfig | 3 +
configs/meesc_dataflash_defconfig | 3 +
configs/meesc_defconfig | 3 +
configs/mgcoge3ne_defconfig | 4 +
configs/mgcoge3un_defconfig | 3 +
configs/mgcoge_defconfig | 4 +
configs/microblaze-generic_defconfig | 3 +
configs/mimc200_defconfig | 2 +
configs/ml507_defconfig | 4 +
configs/ml507_flash_defconfig | 4 +
configs/motionpro_defconfig | 3 +
configs/mpc5121ads_defconfig | 3 +
configs/mpc5121ads_rev2_defconfig | 4 +
configs/mpc7448hpc2_defconfig | 3 +
configs/mpc8308_p1m_defconfig | 3 +
configs/mpr2_defconfig | 2 +
configs/ms7720se_defconfig | 2 +
configs/ms7722se_defconfig | 2 +
configs/ms7750se_defconfig | 2 +
configs/mt_ventoux_defconfig | 3 +
configs/muas3001_defconfig | 3 +
configs/muas3001_dev_defconfig | 4 +
configs/mucmc52_defconfig | 3 +
configs/munices_defconfig | 3 +
configs/mv88f6281gtw_ge_defconfig | 2 +
configs/mx23_olinuxino_defconfig | 3 +
configs/mx23evk_defconfig | 3 +
configs/mx25pdk_defconfig | 3 +
configs/mx28evk_auart_console_defconfig | 4 +
configs/mx28evk_defconfig | 4 +
configs/mx28evk_nand_defconfig | 4 +
configs/mx28evk_spi_defconfig | 4 +
configs/mx31ads_defconfig | 2 +
configs/mx31pdk_defconfig | 3 +
configs/mx35pdk_defconfig | 2 +
configs/mx51_efikamx_defconfig | 3 +
configs/mx51_efikasb_defconfig | 3 +
configs/mx51evk_defconfig | 3 +
configs/mx53ard_defconfig | 3 +
configs/mx53evk_defconfig | 3 +
configs/mx53loco_defconfig | 3 +
configs/mx53smd_defconfig | 3 +
configs/mx6dlsabreauto_defconfig | 3 +
configs/mx6dlsabresd_defconfig | 3 +
configs/mx6qarm2_defconfig | 3 +
configs/mx6qsabreauto_defconfig | 3 +
configs/mx6qsabrelite_defconfig | 3 +
configs/mx6qsabresd_defconfig | 3 +
configs/mx6slevk_defconfig | 3 +
configs/neo_defconfig | 3 +
configs/net2big_v2_defconfig | 3 +
configs/netspace_lite_v2_defconfig | 3 +
configs/netspace_max_v2_defconfig | 3 +
configs/netspace_mini_v2_defconfig | 3 +
configs/netspace_v2_defconfig | 3 +
configs/nhk8815_defconfig | 2 +
configs/nhk8815_onenand_defconfig | 3 +
configs/nios2-generic_defconfig | 2 +
configs/nitrogen6dl2g_defconfig | 3 +
configs/nitrogen6dl_defconfig | 3 +
configs/nitrogen6q2g_defconfig | 3 +
configs/nitrogen6q_defconfig | 3 +
configs/nitrogen6s1g_defconfig | 3 +
configs/nitrogen6s_defconfig | 3 +
configs/nokia_rx51_defconfig | 2 +
configs/ocotea_defconfig | 3 +
configs/omap3_beagle_defconfig | 4 +
configs/omap3_evm_defconfig | 3 +
configs/omap3_evm_quick_mmc_defconfig | 3 +
configs/omap3_evm_quick_nand_defconfig | 3 +
configs/omap3_ha_defconfig | 4 +
configs/omap3_logic_defconfig | 2 +
configs/omap3_mvblx_defconfig | 2 +
configs/omap3_overo_defconfig | 3 +
configs/omap3_pandora_defconfig | 2 +
configs/omap3_sdp3430_defconfig | 2 +
configs/omap3_zoom1_defconfig | 2 +
configs/omap4_panda_defconfig | 3 +
configs/omap4_sdp4430_defconfig | 3 +
configs/omap5912osk_defconfig | 2 +
configs/omap5_uevm_defconfig | 3 +
configs/openrd_base_defconfig | 3 +
configs/openrd_client_defconfig | 3 +
configs/openrd_ultimate_defconfig | 3 +
configs/openrisc-generic_defconfig | 2 +
configs/origen_defconfig | 3 +
configs/otc570_dataflash_defconfig | 3 +
configs/otc570_defconfig | 3 +
configs/p3m7448_defconfig | 4 +
configs/p3m750_defconfig | 4 +
configs/p3p440_defconfig | 3 +
configs/palmld_defconfig | 2 +
configs/palmtc_defconfig | 2 +
configs/palmtreo680_defconfig | 3 +
configs/paz00_defconfig | 3 +
configs/pb1000_defconfig | 3 +
configs/pcm030_LOWBOOT_defconfig | 4 +
configs/pcm030_defconfig | 3 +
configs/pcm051_rev1_defconfig | 4 +
configs/pcm051_rev3_defconfig | 4 +
configs/pcs440ep_defconfig | 3 +
configs/pdm360ng_defconfig | 3 +
configs/peach-pit_defconfig | 3 +
configs/pengwyn_defconfig | 3 +
configs/pepper_defconfig | 3 +
configs/pf5200_defconfig | 3 +
configs/plutux_defconfig | 3 +
configs/pm9261_defconfig | 3 +
configs/pm9263_defconfig | 3 +
configs/pm9g45_defconfig | 3 +
configs/pogo_e02_defconfig | 2 +
configs/polaris_defconfig | 3 +
configs/portl2_defconfig | 3 +
configs/portuxg20_defconfig | 3 +
configs/ppmc7xx_defconfig | 3 +
configs/ppmc8260_defconfig | 3 +
configs/pr1_defconfig | 2 +
configs/prs200_DDR_defconfig | 4 +
configs/prs200_defconfig | 4 +
configs/prs200_highboot_DDR_defconfig | 4 +
configs/prs200_highboot_defconfig | 4 +
configs/pxa255_idp_defconfig | 2 +
configs/pxm2_defconfig | 3 +
configs/qemu-ppce500_defconfig | 3 +
configs/qemu_mips64_defconfig | 3 +
configs/qemu_mips64el_defconfig | 3 +
configs/qemu_mips_defconfig | 3 +
configs/qemu_mipsel_defconfig | 3 +
configs/qong_defconfig | 2 +
configs/r0p7734_defconfig | 2 +
configs/r2dplus_defconfig | 2 +
configs/r7780mp_defconfig | 2 +
configs/rainier_defconfig | 4 +
configs/rainier_ramboot_defconfig | 4 +
configs/rd6281a_defconfig | 2 +
configs/redwood_defconfig | 3 +
configs/riotboard_defconfig | 3 +
configs/rpi_b_defconfig | 2 +
configs/rsk7203_defconfig | 2 +
configs/rsk7264_defconfig | 2 +
configs/rsk7269_defconfig | 2 +
configs/rut_defconfig | 3 +
configs/s5p_goni_defconfig | 2 +
configs/s5pc210_universal_defconfig | 2 +
configs/sacsng_defconfig | 3 +
configs/sama5d3_xplained_mmc_defconfig | 4 +
configs/sama5d3_xplained_nandflash_defconfig | 4 +
configs/sama5d3xek_mmc_defconfig | 4 +
configs/sama5d3xek_nandflash_defconfig | 4 +
configs/sama5d3xek_spiflash_defconfig | 4 +
configs/sandbox_defconfig | 0
configs/sansa_fuze_plus_defconfig | 3 +
configs/sbc35_a9g20_eeprom_defconfig | 3 +
configs/sbc35_a9g20_nandflash_defconfig | 3 +
configs/sbc405_defconfig | 3 +
configs/sbc8349_PCI_33_defconfig | 4 +
configs/sbc8349_PCI_66_defconfig | 4 +
configs/sbc8349_defconfig | 3 +
configs/sbc8548_PCI_33_PCIE_defconfig | 4 +
configs/sbc8548_PCI_33_defconfig | 4 +
configs/sbc8548_PCI_66_PCIE_defconfig | 4 +
configs/sbc8548_PCI_66_defconfig | 4 +
configs/sbc8548_defconfig | 3 +
configs/sbc8641d_defconfig | 3 +
configs/sc3_defconfig | 3 +
configs/sc_sps_1_defconfig | 3 +
configs/scb9328_defconfig | 2 +
configs/seaboard_defconfig | 3 +
configs/sequoia_defconfig | 4 +
configs/sequoia_ramboot_defconfig | 4 +
configs/sh7752evb_defconfig | 2 +
configs/sh7753evb_defconfig | 2 +
configs/sh7757lcr_defconfig | 2 +
configs/sh7763rdp_defconfig | 2 +
configs/sh7785lcr_32bit_defconfig | 3 +
configs/sh7785lcr_defconfig | 2 +
configs/sheevaplug_defconfig | 2 +
configs/shmin_defconfig | 2 +
configs/smdk2410_defconfig | 2 +
configs/smdk5250_defconfig | 3 +
configs/smdk5420_defconfig | 3 +
configs/smdkc100_defconfig | 2 +
configs/smdkv310_defconfig | 3 +
configs/snapper9260_defconfig | 3 +
configs/snapper9g20_defconfig | 3 +
configs/snow_defconfig | 3 +
configs/snowball_defconfig | 2 +
configs/socfpga_cyclone5_defconfig | 3 +
configs/socrates_defconfig | 3 +
configs/spear300_defconfig | 3 +
configs/spear300_nand_defconfig | 3 +
configs/spear300_usbtty_defconfig | 3 +
configs/spear300_usbtty_nand_defconfig | 3 +
configs/spear310_defconfig | 3 +
configs/spear310_nand_defconfig | 3 +
configs/spear310_pnor_defconfig | 3 +
configs/spear310_usbtty_defconfig | 3 +
configs/spear310_usbtty_nand_defconfig | 3 +
configs/spear310_usbtty_pnor_defconfig | 3 +
configs/spear320_defconfig | 3 +
configs/spear320_nand_defconfig | 3 +
configs/spear320_pnor_defconfig | 3 +
configs/spear320_usbtty_defconfig | 3 +
configs/spear320_usbtty_nand_defconfig | 3 +
configs/spear320_usbtty_pnor_defconfig | 3 +
configs/spear600_defconfig | 3 +
configs/spear600_nand_defconfig | 3 +
configs/spear600_usbtty_defconfig | 3 +
configs/spear600_usbtty_nand_defconfig | 3 +
configs/stamp9g20_defconfig | 3 +
configs/stxgp3_defconfig | 3 +
configs/stxssa_4M_defconfig | 4 +
configs/stxssa_defconfig | 3 +
configs/stxxtc_defconfig | 3 +
configs/suvd3_defconfig | 4 +
configs/svm_sc8xx_defconfig | 3 +
configs/sycamore_defconfig | 3 +
configs/t3corp_defconfig | 3 +
configs/taihu_defconfig | 3 +
configs/taishan_defconfig | 3 +
configs/tao3530_defconfig | 3 +
configs/taurus_defconfig | 3 +
configs/tb100_defconfig | 2 +
configs/tcm-bf518_defconfig | 2 +
configs/tcm-bf537_defconfig | 2 +
configs/tec-ng_defconfig | 3 +
configs/tec_defconfig | 3 +
configs/ti814x_evm_defconfig | 3 +
configs/ti816x_evm_defconfig | 3 +
configs/titanium_defconfig | 3 +
configs/tk71_defconfig | 2 +
configs/tnetv107x_evm_defconfig | 2 +
configs/tny_a9260_eeprom_defconfig | 3 +
configs/tny_a9260_nandflash_defconfig | 3 +
configs/tny_a9g20_eeprom_defconfig | 3 +
configs/tny_a9g20_nandflash_defconfig | 3 +
configs/top9000eval_xe_defconfig | 3 +
configs/top9000su_xe_defconfig | 3 +
configs/trats2_defconfig | 2 +
configs/trats_defconfig | 2 +
configs/tricorder_defconfig | 3 +
configs/tricorder_flash_defconfig | 4 +
configs/trimslice_defconfig | 3 +
configs/trizepsiv_defconfig | 2 +
configs/tseries_mmc_defconfig | 4 +
configs/tseries_nand_defconfig | 4 +
configs/tseries_spi_defconfig | 4 +
configs/tt01_defconfig | 2 +
configs/tuge1_defconfig | 4 +
configs/tuxx1_defconfig | 4 +
configs/twister_defconfig | 3 +
configs/tx25_defconfig | 3 +
configs/u8500_href_defconfig | 2 +
configs/uc100_defconfig | 3 +
configs/uc101_defconfig | 3 +
configs/udoo_quad_defconfig | 3 +
configs/usb_a9263_dataflash_defconfig | 3 +
configs/utx8245_defconfig | 3 +
configs/v38b_defconfig | 3 +
configs/v5fx30teval_defconfig | 4 +
configs/v5fx30teval_flash_defconfig | 4 +
configs/vct_platinum_defconfig | 3 +
configs/vct_platinum_onenand_defconfig | 3 +
configs/vct_platinum_onenand_small_defconfig | 3 +
configs/vct_platinum_small_defconfig | 3 +
configs/vct_platinumavc_defconfig | 3 +
configs/vct_platinumavc_onenand_defconfig | 3 +
configs/vct_platinumavc_onenand_small_defconfig | 3 +
configs/vct_platinumavc_small_defconfig | 3 +
configs/vct_premium_defconfig | 3 +
configs/vct_premium_onenand_defconfig | 3 +
configs/vct_premium_onenand_small_defconfig | 3 +
configs/vct_premium_small_defconfig | 3 +
configs/ve8313_defconfig | 3 +
configs/venice2_defconfig | 3 +
configs/ventana_defconfig | 3 +
configs/versatileab_defconfig | 3 +
configs/versatilepb_defconfig | 3 +
configs/versatileqemu_defconfig | 3 +
configs/vexpress_aemv8a_defconfig | 3 +
configs/vexpress_aemv8a_semi_defconfig | 3 +
configs/vexpress_ca15_tc2_defconfig | 2 +
configs/vexpress_ca5x2_defconfig | 2 +
configs/vexpress_ca9x4_defconfig | 2 +
configs/vf610twr_defconfig | 3 +
configs/virtlab2_defconfig | 3 +
configs/vision2_defconfig | 3 +
configs/vl_ma2sc_defconfig | 2 +
configs/vl_ma2sc_ram_defconfig | 3 +
configs/vme8349_defconfig | 3 +
configs/vpac270_nor_128_defconfig | 3 +
configs/vpac270_nor_256_defconfig | 3 +
configs/vpac270_ond_256_defconfig | 4 +
configs/walnut_defconfig | 3 +
configs/wandboard_dl_defconfig | 3 +
configs/wandboard_quad_defconfig | 3 +
configs/wandboard_solo_defconfig | 3 +
configs/whistler_defconfig | 3 +
configs/wireless_space_defconfig | 2 +
configs/woodburn_defconfig | 2 +
configs/woodburn_sd_defconfig | 4 +
configs/wtk_defconfig | 4 +
configs/x600_defconfig | 3 +
configs/xaeniax_defconfig | 2 +
configs/xfi3_defconfig | 3 +
configs/xilinx-ppc405-generic_defconfig | 4 +
configs/xilinx-ppc405-generic_flash_defconfig | 4 +
configs/xilinx-ppc440-generic_defconfig | 4 +
configs/xilinx-ppc440-generic_flash_defconfig | 4 +
configs/xpedite1000_defconfig | 3 +
configs/xpedite517x_defconfig | 3 +
configs/xpedite520x_defconfig | 3 +
configs/xpedite537x_defconfig | 3 +
configs/xpedite550x_defconfig | 3 +
configs/yellowstone_defconfig | 4 +
configs/yosemite_defconfig | 4 +
configs/yucca_defconfig | 3 +
configs/zeus_defconfig | 3 +
configs/zipitz2_defconfig | 2 +
configs/zmx25_defconfig | 2 +
configs/zynq_microzed_defconfig | 3 +
configs/zynq_zc70x_defconfig | 3 +
configs/zynq_zc770_xm010_defconfig | 4 +
configs/zynq_zc770_xm012_defconfig | 4 +
configs/zynq_zc770_xm013_defconfig | 4 +
configs/zynq_zed_defconfig | 3 +
doc/README.SPL | 2 +-
include/.gitignore | 1 -
include/configs/B4860QDS.h | 1 -
include/configs/BSC9131RDB.h | 1 -
include/configs/BSC9132QDS.h | 1 -
include/configs/C29XPCIE.h | 2 -
include/configs/MPC8313ERDB.h | 1 -
include/configs/P1010RDB.h | 4 -
include/configs/P1022DS.h | 4 -
include/configs/P1_P2_RDB.h | 4 -
include/configs/T104xRDB.h | 1 -
include/configs/T208xQDS.h | 1 -
include/configs/T208xRDB.h | 1 -
include/configs/T4240QDS.h | 1 -
include/configs/a3m071.h | 1 -
include/configs/am335x_igep0033.h | 1 -
include/configs/am3517_crane.h | 1 -
include/configs/am3517_evm.h | 1 -
include/configs/apf27.h | 1 -
include/configs/arndale.h | 1 -
include/configs/bur_am335x_common.h | 1 -
include/configs/cam_enc_4xx.h | 1 -
include/configs/cm_t35.h | 1 -
include/configs/da850evm.h | 1 -
include/configs/devkit8000.h | 1 -
include/configs/exynos5-dt.h | 1 -
include/configs/hawkboard.h | 1 -
include/configs/ipam390.h | 1 -
include/configs/lwmon5.h | 1 -
include/configs/m53evk.h | 1 -
include/configs/mcx.h | 1 -
include/configs/microblaze-generic.h | 2 -
include/configs/mx31pdk.h | 1 -
include/configs/mxs.h | 1 -
include/configs/omap3_evm_common.h | 1 -
include/configs/omap3_zoom1.h | 1 -
include/configs/origen.h | 1 -
include/configs/p1_p2_rdb_pc.h | 4 -
include/configs/palmtreo680.h | 1 -
include/configs/pcm051.h | 1 -
include/configs/sama5d3_xplained.h | 1 -
include/configs/sama5d3xek.h | 1 -
include/configs/siemens-am33x-common.h | 1 -
include/configs/smdkv310.h | 1 -
include/configs/socfpga_cyclone5.h | 1 -
include/configs/sunxi-common.h | 1 -
include/configs/tam3517-common.h | 1 -
include/configs/tao3530.h | 1 -
include/configs/tegra-common.h | 1 -
include/configs/ti814x_evm.h | 1 -
include/configs/ti816x_evm.h | 1 -
include/configs/ti_armv7_common.h | 1 -
include/configs/tricorder.h | 1 -
include/configs/tx25.h | 1 -
include/configs/vpac270.h | 1 -
include/configs/woodburn_sd.h | 1 -
include/configs/x600.h | 1 -
include/configs/zynq-common.h | 1 -
include/linux/kconfig.h | 46 +
mkconfig | 186 --
scripts/Makefile | 2 +-
scripts/Makefile.autoconf | 100 +
scripts/Makefile.build | 31 +-
scripts/Makefile.spl | 31 +-
scripts/basic/fixdep.c | 6 +-
scripts/kconfig/.gitignore | 22 +
scripts/kconfig/Makefile | 321 +++
scripts/kconfig/POTFILES.in | 12 +
scripts/kconfig/check.sh | 13 +
scripts/kconfig/conf.c | 718 ++++++
scripts/kconfig/confdata.c | 1250 ++++++++++
scripts/kconfig/expr.c | 1168 +++++++++
scripts/kconfig/expr.h | 241 ++
scripts/kconfig/gconf.c | 1542 ++++++++++++
scripts/kconfig/gconf.glade | 661 +++++
scripts/kconfig/images.c | 326 +++
scripts/kconfig/kxgettext.c | 235 ++
scripts/kconfig/list.h | 131 +
scripts/kconfig/lkc.h | 200 ++
scripts/kconfig/lkc_proto.h | 57 +
scripts/kconfig/lxdialog/.gitignore | 4 +
scripts/kconfig/lxdialog/BIG.FAT.WARNING | 4 +
scripts/kconfig/lxdialog/check-lxdialog.sh | 87 +
scripts/kconfig/lxdialog/checklist.c | 332 +++
scripts/kconfig/lxdialog/dialog.h | 257 ++
scripts/kconfig/lxdialog/inputbox.c | 301 +++
scripts/kconfig/lxdialog/menubox.c | 437 ++++
scripts/kconfig/lxdialog/textbox.c | 408 ++++
scripts/kconfig/lxdialog/util.c | 713 ++++++
scripts/kconfig/lxdialog/yesno.c | 114 +
scripts/kconfig/mconf.c | 1036 ++++++++
scripts/kconfig/menu.c | 697 ++++++
scripts/kconfig/merge_config.sh | 150 ++
scripts/kconfig/nconf.c | 1556 ++++++++++++
scripts/kconfig/nconf.gui.c | 656 +++++
scripts/kconfig/nconf.h | 96 +
scripts/kconfig/qconf.cc | 1795 ++++++++++++++
scripts/kconfig/qconf.h | 338 +++
scripts/kconfig/streamline_config.pl | 647 +++++
scripts/kconfig/symbol.c | 1373 +++++++++++
scripts/kconfig/util.c | 157 ++
scripts/kconfig/zconf.gperf | 48 +
scripts/kconfig/zconf.hash.c_shipped | 289 +++
scripts/kconfig/zconf.l | 363 +++
scripts/kconfig/zconf.lex.c_shipped | 2420 +++++++++++++++++++
scripts/kconfig/zconf.tab.c_shipped | 2538 ++++++++++++++++++++
scripts/kconfig/zconf.y | 733 ++++++
scripts/multiconfig.py | 410 ++++
tools/Makefile | 2 +-
tools/buildman/board.py | 2 +-
tools/buildman/builder.py | 6 +-
tools/buildman/control.py | 10 +
tools/env/Makefile | 2 +-
tools/gen_maintainers.py | 117 +
tools/genboardscfg.py | 504 ++++
tools/genkconfig | 371 +++
tools/print_allconfigs | 77 +
2468 files changed, 48517 insertions(+), 1640 deletions(-)
create mode 100644 Kconfig
create mode 100644 arch/Kconfig
create mode 100644 arch/arc/Kconfig
create mode 100644 arch/arm/Kconfig
create mode 100644 arch/avr32/Kconfig
create mode 100644 arch/blackfin/Kconfig
create mode 100644 arch/m68k/Kconfig
create mode 100644 arch/microblaze/Kconfig
create mode 100644 arch/mips/Kconfig
create mode 100644 arch/nds32/Kconfig
create mode 100644 arch/nios2/Kconfig
create mode 100644 arch/openrisc/Kconfig
create mode 100644 arch/powerpc/Kconfig
create mode 100644 arch/powerpc/cpu/74xx_7xx/Kconfig
create mode 100644 arch/powerpc/cpu/mpc512x/Kconfig
create mode 100644 arch/powerpc/cpu/mpc5xx/Kconfig
create mode 100644 arch/powerpc/cpu/mpc5xxx/Kconfig
create mode 100644 arch/powerpc/cpu/mpc824x/Kconfig
create mode 100644 arch/powerpc/cpu/mpc8260/Kconfig
create mode 100644 arch/powerpc/cpu/mpc83xx/Kconfig
create mode 100644 arch/powerpc/cpu/mpc85xx/Kconfig
create mode 100644 arch/powerpc/cpu/mpc86xx/Kconfig
create mode 100644 arch/powerpc/cpu/mpc8xx/Kconfig
create mode 100644 arch/powerpc/cpu/ppc4xx/Kconfig
create mode 100644 arch/sandbox/Kconfig
create mode 100644 arch/sh/Kconfig
create mode 100644 arch/sparc/Kconfig
create mode 100644 arch/x86/Kconfig
create mode 100644 board/8dtech/eco5pk/Kconfig
create mode 100644 board/8dtech/eco5pk/MAINTAINERS
create mode 100644 board/AndesTech/adp-ag101/Kconfig
create mode 100644 board/AndesTech/adp-ag101/MAINTAINERS
create mode 100644 board/AndesTech/adp-ag101p/Kconfig
create mode 100644 board/AndesTech/adp-ag101p/MAINTAINERS
create mode 100644 board/AndesTech/adp-ag102/Kconfig
create mode 100644 board/AndesTech/adp-ag102/MAINTAINERS
create mode 100644 board/Barix/ipam390/Kconfig
create mode 100644 board/Barix/ipam390/MAINTAINERS
create mode 100644 board/BuR/kwb/Kconfig
create mode 100644 board/BuR/kwb/MAINTAINERS
create mode 100644 board/BuR/tseries/Kconfig
create mode 100644 board/BuR/tseries/MAINTAINERS
create mode 100644 board/BuS/eb_cpu5282/Kconfig
create mode 100644 board/BuS/eb_cpu5282/MAINTAINERS
create mode 100644 board/BuS/eb_cpux9k2/Kconfig
create mode 100644 board/BuS/eb_cpux9k2/MAINTAINERS
create mode 100644 board/BuS/vl_ma2sc/Kconfig
create mode 100644 board/BuS/vl_ma2sc/MAINTAINERS
create mode 100644 board/CarMediaLab/flea3/Kconfig
create mode 100644 board/CarMediaLab/flea3/MAINTAINERS
create mode 100644 board/LEOX/elpt860/Kconfig
create mode 100644 board/LEOX/elpt860/MAINTAINERS
create mode 100644 board/LaCie/edminiv2/Kconfig
create mode 100644 board/LaCie/edminiv2/MAINTAINERS
create mode 100644 board/LaCie/net2big_v2/Kconfig
create mode 100644 board/LaCie/net2big_v2/MAINTAINERS
create mode 100644 board/LaCie/netspace_v2/Kconfig
create mode 100644 board/LaCie/netspace_v2/MAINTAINERS
create mode 100644 board/LaCie/wireless_space/Kconfig
create mode 100644 board/LaCie/wireless_space/MAINTAINERS
create mode 100644 board/Marvell/aspenite/Kconfig
create mode 100644 board/Marvell/aspenite/MAINTAINERS
create mode 100644 board/Marvell/db64360/Kconfig
create mode 100644 board/Marvell/db64360/MAINTAINERS
create mode 100644 board/Marvell/db64460/Kconfig
create mode 100644 board/Marvell/db64460/MAINTAINERS
create mode 100644 board/Marvell/dkb/Kconfig
create mode 100644 board/Marvell/dkb/MAINTAINERS
create mode 100644 board/Marvell/dreamplug/Kconfig
create mode 100644 board/Marvell/dreamplug/MAINTAINERS
create mode 100644 board/Marvell/gplugd/Kconfig
create mode 100644 board/Marvell/gplugd/MAINTAINERS
create mode 100644 board/Marvell/guruplug/Kconfig
create mode 100644 board/Marvell/guruplug/MAINTAINERS
create mode 100644 board/Marvell/mv88f6281gtw_ge/Kconfig
create mode 100644 board/Marvell/mv88f6281gtw_ge/MAINTAINERS
create mode 100644 board/Marvell/openrd/Kconfig
create mode 100644 board/Marvell/openrd/MAINTAINERS
create mode 100644 board/Marvell/rd6281a/Kconfig
create mode 100644 board/Marvell/rd6281a/MAINTAINERS
create mode 100644 board/Marvell/sheevaplug/Kconfig
create mode 100644 board/Marvell/sheevaplug/MAINTAINERS
create mode 100644 board/RRvision/Kconfig
create mode 100644 board/RRvision/MAINTAINERS
create mode 100644 board/Seagate/dockstar/Kconfig
create mode 100644 board/Seagate/dockstar/MAINTAINERS
create mode 100644 board/Seagate/goflexhome/Kconfig
create mode 100644 board/Seagate/goflexhome/MAINTAINERS
create mode 100644 board/a3000/Kconfig
create mode 100644 board/a3000/MAINTAINERS
create mode 100644 board/a3m071/Kconfig
create mode 100644 board/a3m071/MAINTAINERS
create mode 100644 board/a4m072/Kconfig
create mode 100644 board/a4m072/MAINTAINERS
create mode 100644 board/abilis/tb100/Kconfig
create mode 100644 board/abilis/tb100/MAINTAINERS
create mode 100644 board/afeb9260/Kconfig
create mode 100644 board/afeb9260/MAINTAINERS
create mode 100644 board/ait/cam_enc_4xx/Kconfig
create mode 100644 board/ait/cam_enc_4xx/MAINTAINERS
create mode 100644 board/alphaproject/ap_sh4a_4a/Kconfig
create mode 100644 board/alphaproject/ap_sh4a_4a/MAINTAINERS
create mode 100644 board/altera/nios2-generic/Kconfig
create mode 100644 board/altera/nios2-generic/MAINTAINERS
create mode 100644 board/altera/socfpga/Kconfig
create mode 100644 board/altera/socfpga/MAINTAINERS
create mode 100644 board/amcc/acadia/Kconfig
create mode 100644 board/amcc/acadia/MAINTAINERS
create mode 100644 board/amcc/bamboo/Kconfig
create mode 100644 board/amcc/bamboo/MAINTAINERS
create mode 100644 board/amcc/bluestone/Kconfig
create mode 100644 board/amcc/bluestone/MAINTAINERS
create mode 100644 board/amcc/bubinga/Kconfig
create mode 100644 board/amcc/bubinga/MAINTAINERS
create mode 100644 board/amcc/canyonlands/Kconfig
create mode 100644 board/amcc/canyonlands/MAINTAINERS
create mode 100644 board/amcc/ebony/Kconfig
create mode 100644 board/amcc/ebony/MAINTAINERS
create mode 100644 board/amcc/katmai/Kconfig
create mode 100644 board/amcc/katmai/MAINTAINERS
create mode 100644 board/amcc/kilauea/Kconfig
create mode 100644 board/amcc/kilauea/MAINTAINERS
create mode 100644 board/amcc/luan/Kconfig
create mode 100644 board/amcc/luan/MAINTAINERS
create mode 100644 board/amcc/makalu/Kconfig
create mode 100644 board/amcc/makalu/MAINTAINERS
create mode 100644 board/amcc/ocotea/Kconfig
create mode 100644 board/amcc/ocotea/MAINTAINERS
create mode 100644 board/amcc/redwood/Kconfig
create mode 100644 board/amcc/redwood/MAINTAINERS
create mode 100644 board/amcc/sequoia/Kconfig
create mode 100644 board/amcc/sequoia/MAINTAINERS
create mode 100644 board/amcc/taihu/Kconfig
create mode 100644 board/amcc/taihu/MAINTAINERS
create mode 100644 board/amcc/taishan/Kconfig
create mode 100644 board/amcc/taishan/MAINTAINERS
create mode 100644 board/amcc/walnut/Kconfig
create mode 100644 board/amcc/walnut/MAINTAINERS
create mode 100644 board/amcc/yosemite/Kconfig
create mode 100644 board/amcc/yosemite/MAINTAINERS
create mode 100644 board/amcc/yucca/Kconfig
create mode 100644 board/amcc/yucca/MAINTAINERS
create mode 100644 board/armadeus/apf27/Kconfig
create mode 100644 board/armadeus/apf27/MAINTAINERS
create mode 100644 board/armltd/integrator/Kconfig
create mode 100644 board/armltd/integrator/MAINTAINERS
create mode 100644 board/armltd/versatile/Kconfig
create mode 100644 board/armltd/versatile/MAINTAINERS
create mode 100644 board/armltd/vexpress/Kconfig
create mode 100644 board/armltd/vexpress/MAINTAINERS
create mode 100644 board/armltd/vexpress64/Kconfig
create mode 100644 board/armltd/vexpress64/MAINTAINERS
create mode 100644 board/astro/mcf5373l/Kconfig
create mode 100644 board/astro/mcf5373l/MAINTAINERS
create mode 100644 board/atc/Kconfig
create mode 100644 board/atc/MAINTAINERS
create mode 100644 board/atmark-techno/armadillo-800eva/Kconfig
create mode 100644 board/atmark-techno/armadillo-800eva/MAINTAINERS
create mode 100644 board/atmel/at91rm9200ek/Kconfig
create mode 100644 board/atmel/at91rm9200ek/MAINTAINERS
create mode 100644 board/atmel/at91sam9260ek/Kconfig
create mode 100644 board/atmel/at91sam9260ek/MAINTAINERS
create mode 100644 board/atmel/at91sam9261ek/Kconfig
create mode 100644 board/atmel/at91sam9261ek/MAINTAINERS
create mode 100644 board/atmel/at91sam9263ek/Kconfig
create mode 100644 board/atmel/at91sam9263ek/MAINTAINERS
create mode 100644 board/atmel/at91sam9m10g45ek/Kconfig
create mode 100644 board/atmel/at91sam9m10g45ek/MAINTAINERS
create mode 100644 board/atmel/at91sam9n12ek/Kconfig
create mode 100644 board/atmel/at91sam9n12ek/MAINTAINERS
create mode 100644 board/atmel/at91sam9rlek/Kconfig
create mode 100644 board/atmel/at91sam9rlek/MAINTAINERS
create mode 100644 board/atmel/at91sam9x5ek/Kconfig
create mode 100644 board/atmel/at91sam9x5ek/MAINTAINERS
create mode 100644 board/atmel/atngw100/Kconfig
create mode 100644 board/atmel/atngw100/MAINTAINERS
create mode 100644 board/atmel/atngw100mkii/Kconfig
create mode 100644 board/atmel/atngw100mkii/MAINTAINERS
create mode 100644 board/atmel/atstk1000/Kconfig
create mode 100644 board/atmel/atstk1000/MAINTAINERS
create mode 100644 board/atmel/sama5d3_xplained/Kconfig
create mode 100644 board/atmel/sama5d3_xplained/MAINTAINERS
create mode 100644 board/atmel/sama5d3xek/Kconfig
create mode 100644 board/atmel/sama5d3xek/MAINTAINERS
create mode 100644 board/avionic-design/medcom-wide/Kconfig
create mode 100644 board/avionic-design/medcom-wide/MAINTAINERS
create mode 100644 board/avionic-design/plutux/Kconfig
create mode 100644 board/avionic-design/plutux/MAINTAINERS
create mode 100644 board/avionic-design/tec-ng/Kconfig
create mode 100644 board/avionic-design/tec-ng/MAINTAINERS
create mode 100644 board/avionic-design/tec/Kconfig
create mode 100644 board/avionic-design/tec/MAINTAINERS
create mode 100644 board/avnet/fx12mm/Kconfig
create mode 100644 board/avnet/fx12mm/MAINTAINERS
create mode 100644 board/avnet/v5fx30teval/Kconfig
create mode 100644 board/avnet/v5fx30teval/MAINTAINERS
create mode 100644 board/balloon3/Kconfig
create mode 100644 board/balloon3/MAINTAINERS
create mode 100644 board/barco/titanium/Kconfig
create mode 100644 board/barco/titanium/MAINTAINERS
create mode 100644 board/bc3450/Kconfig
create mode 100644 board/bc3450/MAINTAINERS
create mode 100644 board/bct-brettl2/Kconfig
create mode 100644 board/bct-brettl2/MAINTAINERS
create mode 100644 board/bf506f-ezkit/Kconfig
create mode 100644 board/bf506f-ezkit/MAINTAINERS
create mode 100644 board/bf518f-ezbrd/Kconfig
create mode 100644 board/bf518f-ezbrd/MAINTAINERS
create mode 100644 board/bf525-ucr2/Kconfig
create mode 100644 board/bf525-ucr2/MAINTAINERS
create mode 100644 board/bf526-ezbrd/Kconfig
create mode 100644 board/bf526-ezbrd/MAINTAINERS
create mode 100644 board/bf527-ad7160-eval/Kconfig
create mode 100644 board/bf527-ad7160-eval/MAINTAINERS
create mode 100644 board/bf527-ezkit/Kconfig
create mode 100644 board/bf527-ezkit/MAINTAINERS
create mode 100644 board/bf527-sdp/Kconfig
create mode 100644 board/bf527-sdp/MAINTAINERS
create mode 100644 board/bf533-ezkit/Kconfig
create mode 100644 board/bf533-ezkit/MAINTAINERS
create mode 100644 board/bf533-stamp/Kconfig
create mode 100644 board/bf533-stamp/MAINTAINERS
create mode 100644 board/bf537-minotaur/Kconfig
create mode 100644 board/bf537-minotaur/MAINTAINERS
create mode 100644 board/bf537-pnav/Kconfig
create mode 100644 board/bf537-pnav/MAINTAINERS
create mode 100644 board/bf537-srv1/Kconfig
create mode 100644 board/bf537-srv1/MAINTAINERS
create mode 100644 board/bf537-stamp/Kconfig
create mode 100644 board/bf537-stamp/MAINTAINERS
create mode 100644 board/bf538f-ezkit/Kconfig
create mode 100644 board/bf538f-ezkit/MAINTAINERS
create mode 100644 board/bf548-ezkit/Kconfig
create mode 100644 board/bf548-ezkit/MAINTAINERS
create mode 100644 board/bf561-acvilon/Kconfig
create mode 100644 board/bf561-acvilon/MAINTAINERS
create mode 100644 board/bf561-ezkit/Kconfig
create mode 100644 board/bf561-ezkit/MAINTAINERS
create mode 100644 board/bf609-ezkit/Kconfig
create mode 100644 board/bf609-ezkit/MAINTAINERS
create mode 100644 board/blackstamp/Kconfig
create mode 100644 board/blackstamp/MAINTAINERS
create mode 100644 board/blackvme/Kconfig
create mode 100644 board/blackvme/MAINTAINERS
create mode 100644 board/bluegiga/apx4devkit/Kconfig
create mode 100644 board/bluegiga/apx4devkit/MAINTAINERS
create mode 100644 board/bluewater/snapper9260/Kconfig
create mode 100644 board/bluewater/snapper9260/MAINTAINERS
create mode 100644 board/boundary/nitrogen6x/Kconfig
create mode 100644 board/boundary/nitrogen6x/MAINTAINERS
create mode 100644 board/br4/Kconfig
create mode 100644 board/br4/MAINTAINERS
create mode 100644 board/broadcom/bcm28155_ap/Kconfig
create mode 100644 board/broadcom/bcm28155_ap/MAINTAINERS
create mode 100644 board/buffalo/lsxl/Kconfig
create mode 100644 board/buffalo/lsxl/MAINTAINERS
create mode 100644 board/calao/sbc35_a9g20/Kconfig
create mode 100644 board/calao/sbc35_a9g20/MAINTAINERS
create mode 100644 board/calao/tny_a9260/Kconfig
create mode 100644 board/calao/tny_a9260/MAINTAINERS
create mode 100644 board/calao/usb_a9263/Kconfig
create mode 100644 board/calao/usb_a9263/MAINTAINERS
create mode 100644 board/canmb/Kconfig
create mode 100644 board/canmb/MAINTAINERS
create mode 100644 board/chromebook-x86/coreboot/Kconfig
create mode 100644 board/chromebook-x86/coreboot/MAINTAINERS
create mode 100644 board/cirrus/edb93xx/Kconfig
create mode 100644 board/cirrus/edb93xx/MAINTAINERS
create mode 100644 board/cloudengines/pogo_e02/Kconfig
create mode 100644 board/cloudengines/pogo_e02/MAINTAINERS
create mode 100644 board/cm-bf527/Kconfig
create mode 100644 board/cm-bf527/MAINTAINERS
create mode 100644 board/cm-bf533/Kconfig
create mode 100644 board/cm-bf533/MAINTAINERS
create mode 100644 board/cm-bf537e/Kconfig
create mode 100644 board/cm-bf537e/MAINTAINERS
create mode 100644 board/cm-bf537u/Kconfig
create mode 100644 board/cm-bf537u/MAINTAINERS
create mode 100644 board/cm-bf548/Kconfig
create mode 100644 board/cm-bf548/MAINTAINERS
create mode 100644 board/cm-bf561/Kconfig
create mode 100644 board/cm-bf561/MAINTAINERS
create mode 100644 board/cm4008/Kconfig
create mode 100644 board/cm4008/MAINTAINERS
create mode 100644 board/cm41xx/Kconfig
create mode 100644 board/cm41xx/MAINTAINERS
create mode 100644 board/cm5200/Kconfig
create mode 100644 board/cm5200/MAINTAINERS
create mode 100644 board/cmi/Kconfig
create mode 100644 board/cmi/MAINTAINERS
create mode 100644 board/cobra5272/Kconfig
create mode 100644 board/cobra5272/MAINTAINERS
create mode 100644 board/cogent/Kconfig
create mode 100644 board/cogent/MAINTAINERS
create mode 100644 board/comelit/dig297/Kconfig
create mode 100644 board/comelit/dig297/MAINTAINERS
create mode 100644 board/compal/paz00/Kconfig
create mode 100644 board/compal/paz00/MAINTAINERS
create mode 100644 board/compulab/cm_t335/Kconfig
create mode 100644 board/compulab/cm_t335/MAINTAINERS
create mode 100644 board/compulab/cm_t35/Kconfig
create mode 100644 board/compulab/cm_t35/MAINTAINERS
create mode 100644 board/compulab/cm_t54/Kconfig
create mode 100644 board/compulab/cm_t54/MAINTAINERS
create mode 100644 board/compulab/trimslice/Kconfig
create mode 100644 board/compulab/trimslice/MAINTAINERS
create mode 100644 board/congatec/cgtqmx6eval/Kconfig
create mode 100644 board/congatec/cgtqmx6eval/MAINTAINERS
create mode 100644 board/corscience/tricorder/Kconfig
create mode 100644 board/corscience/tricorder/MAINTAINERS
create mode 100644 board/cpc45/Kconfig
create mode 100644 board/cpc45/MAINTAINERS
create mode 100644 board/cpu86/Kconfig
create mode 100644 board/cpu86/MAINTAINERS
create mode 100644 board/cpu87/Kconfig
create mode 100644 board/cpu87/MAINTAINERS
create mode 100644 board/cray/L1/Kconfig
create mode 100644 board/cray/L1/MAINTAINERS
create mode 100644 board/creative/xfi3/Kconfig
create mode 100644 board/creative/xfi3/MAINTAINERS
create mode 100644 board/csb272/Kconfig
create mode 100644 board/csb272/MAINTAINERS
create mode 100644 board/csb472/Kconfig
create mode 100644 board/csb472/MAINTAINERS
create mode 100644 board/cu824/Kconfig
create mode 100644 board/cu824/MAINTAINERS
create mode 100644 board/d-link/dns325/Kconfig
create mode 100644 board/d-link/dns325/MAINTAINERS
create mode 100644 board/dave/PPChameleonEVB/Kconfig
create mode 100644 board/dave/PPChameleonEVB/MAINTAINERS
create mode 100644 board/davedenx/aria/Kconfig
create mode 100644 board/davedenx/aria/MAINTAINERS
create mode 100644 board/davedenx/qong/Kconfig
create mode 100644 board/davedenx/qong/MAINTAINERS
create mode 100644 board/davinci/da8xxevm/Kconfig
create mode 100644 board/davinci/da8xxevm/MAINTAINERS
create mode 100644 board/davinci/dm355evm/Kconfig
create mode 100644 board/davinci/dm355evm/MAINTAINERS
create mode 100644 board/davinci/dm355leopard/Kconfig
create mode 100644 board/davinci/dm355leopard/MAINTAINERS
create mode 100644 board/davinci/dm365evm/Kconfig
create mode 100644 board/davinci/dm365evm/MAINTAINERS
create mode 100644 board/davinci/dm6467evm/Kconfig
create mode 100644 board/davinci/dm6467evm/MAINTAINERS
create mode 100644 board/davinci/dvevm/Kconfig
create mode 100644 board/davinci/dvevm/MAINTAINERS
create mode 100644 board/davinci/ea20/Kconfig
create mode 100644 board/davinci/ea20/MAINTAINERS
create mode 100644 board/davinci/schmoogie/Kconfig
create mode 100644 board/davinci/schmoogie/MAINTAINERS
create mode 100644 board/davinci/sffsdr/Kconfig
create mode 100644 board/davinci/sffsdr/MAINTAINERS
create mode 100644 board/davinci/sonata/Kconfig
create mode 100644 board/davinci/sonata/MAINTAINERS
create mode 100644 board/dbau1x00/Kconfig
create mode 100644 board/dbau1x00/MAINTAINERS
create mode 100644 board/denx/m28evk/Kconfig
create mode 100644 board/denx/m28evk/MAINTAINERS
create mode 100644 board/denx/m53evk/Kconfig
create mode 100644 board/denx/m53evk/MAINTAINERS
create mode 100644 board/dnp5370/Kconfig
create mode 100644 board/dnp5370/MAINTAINERS
create mode 100644 board/eXalion/Kconfig
create mode 100644 board/eXalion/MAINTAINERS
create mode 100644 board/earthlcd/favr-32-ezkit/Kconfig
create mode 100644 board/earthlcd/favr-32-ezkit/MAINTAINERS
create mode 100644 board/egnite/ethernut5/Kconfig
create mode 100644 board/egnite/ethernut5/MAINTAINERS
create mode 100644 board/eltec/elppc/Kconfig
create mode 100644 board/eltec/elppc/MAINTAINERS
create mode 100644 board/eltec/mhpc/Kconfig
create mode 100644 board/eltec/mhpc/MAINTAINERS
create mode 100644 board/embest/mx6boards/Kconfig
create mode 100644 board/embest/mx6boards/MAINTAINERS
create mode 100644 board/emk/top5200/Kconfig
create mode 100644 board/emk/top5200/MAINTAINERS
create mode 100644 board/emk/top860/Kconfig
create mode 100644 board/emk/top860/MAINTAINERS
create mode 100644 board/emk/top9000/Kconfig
create mode 100644 board/emk/top9000/MAINTAINERS
create mode 100644 board/enbw/enbw_cmc/Kconfig
create mode 100644 board/enbw/enbw_cmc/MAINTAINERS
create mode 100644 board/ep8260/Kconfig
create mode 100644 board/ep8260/MAINTAINERS
create mode 100644 board/ep82xxm/Kconfig
create mode 100644 board/ep82xxm/MAINTAINERS
create mode 100644 board/esd/apc405/Kconfig
create mode 100644 board/esd/apc405/MAINTAINERS
create mode 100644 board/esd/ar405/Kconfig
create mode 100644 board/esd/ar405/MAINTAINERS
create mode 100644 board/esd/ash405/Kconfig
create mode 100644 board/esd/ash405/MAINTAINERS
create mode 100644 board/esd/cms700/Kconfig
create mode 100644 board/esd/cms700/MAINTAINERS
create mode 100644 board/esd/cpci2dp/Kconfig
create mode 100644 board/esd/cpci2dp/MAINTAINERS
create mode 100644 board/esd/cpci405/Kconfig
create mode 100644 board/esd/cpci405/MAINTAINERS
create mode 100644 board/esd/cpci5200/Kconfig
create mode 100644 board/esd/cpci5200/MAINTAINERS
create mode 100644 board/esd/cpci750/Kconfig
create mode 100644 board/esd/cpci750/MAINTAINERS
create mode 100644 board/esd/cpciiser4/Kconfig
create mode 100644 board/esd/cpciiser4/MAINTAINERS
create mode 100644 board/esd/dp405/Kconfig
create mode 100644 board/esd/dp405/MAINTAINERS
create mode 100644 board/esd/du405/Kconfig
create mode 100644 board/esd/du405/MAINTAINERS
create mode 100644 board/esd/du440/Kconfig
create mode 100644 board/esd/du440/MAINTAINERS
create mode 100644 board/esd/hh405/Kconfig
create mode 100644 board/esd/hh405/MAINTAINERS
create mode 100644 board/esd/hub405/Kconfig
create mode 100644 board/esd/hub405/MAINTAINERS
create mode 100644 board/esd/mecp5123/Kconfig
create mode 100644 board/esd/mecp5123/MAINTAINERS
create mode 100644 board/esd/mecp5200/Kconfig
create mode 100644 board/esd/mecp5200/MAINTAINERS
create mode 100644 board/esd/meesc/Kconfig
create mode 100644 board/esd/meesc/MAINTAINERS
create mode 100644 board/esd/ocrtc/Kconfig
create mode 100644 board/esd/ocrtc/MAINTAINERS
create mode 100644 board/esd/otc570/Kconfig
create mode 100644 board/esd/otc570/MAINTAINERS
create mode 100644 board/esd/pci405/Kconfig
create mode 100644 board/esd/pci405/MAINTAINERS
create mode 100644 board/esd/pf5200/Kconfig
create mode 100644 board/esd/pf5200/MAINTAINERS
create mode 100644 board/esd/plu405/Kconfig
create mode 100644 board/esd/plu405/MAINTAINERS
create mode 100644 board/esd/pmc405/Kconfig
create mode 100644 board/esd/pmc405/MAINTAINERS
create mode 100644 board/esd/pmc405de/Kconfig
create mode 100644 board/esd/pmc405de/MAINTAINERS
create mode 100644 board/esd/pmc440/Kconfig
create mode 100644 board/esd/pmc440/MAINTAINERS
create mode 100644 board/esd/tasreg/Kconfig
create mode 100644 board/esd/tasreg/MAINTAINERS
create mode 100644 board/esd/vme8349/Kconfig
create mode 100644 board/esd/vme8349/MAINTAINERS
create mode 100644 board/esd/voh405/Kconfig
create mode 100644 board/esd/voh405/MAINTAINERS
create mode 100644 board/esd/vom405/Kconfig
create mode 100644 board/esd/vom405/MAINTAINERS
create mode 100644 board/esd/wuh405/Kconfig
create mode 100644 board/esd/wuh405/MAINTAINERS
create mode 100644 board/esg/ima3-mx53/Kconfig
create mode 100644 board/esg/ima3-mx53/MAINTAINERS
create mode 100644 board/espt/Kconfig
create mode 100644 board/espt/MAINTAINERS
create mode 100644 board/esteem192e/Kconfig
create mode 100644 board/esteem192e/MAINTAINERS
create mode 100644 board/eukrea/cpu9260/Kconfig
create mode 100644 board/eukrea/cpu9260/MAINTAINERS
create mode 100644 board/eukrea/cpuat91/Kconfig
create mode 100644 board/eukrea/cpuat91/MAINTAINERS
create mode 100644 board/evb64260/Kconfig
create mode 100644 board/evb64260/MAINTAINERS
create mode 100644 board/exmeritus/hww1u1a/Kconfig
create mode 100644 board/exmeritus/hww1u1a/MAINTAINERS
create mode 100644 board/faraday/a320evb/Kconfig
create mode 100644 board/faraday/a320evb/MAINTAINERS
create mode 100644 board/flagadm/Kconfig
create mode 100644 board/flagadm/MAINTAINERS
create mode 100644 board/freescale/b4860qds/Kconfig
create mode 100644 board/freescale/b4860qds/MAINTAINERS
create mode 100644 board/freescale/bsc9131rdb/Kconfig
create mode 100644 board/freescale/bsc9131rdb/MAINTAINERS
create mode 100644 board/freescale/bsc9132qds/Kconfig
create mode 100644 board/freescale/bsc9132qds/MAINTAINERS
create mode 100644 board/freescale/c29xpcie/Kconfig
create mode 100644 board/freescale/c29xpcie/MAINTAINERS
create mode 100644 board/freescale/corenet_ds/Kconfig
create mode 100644 board/freescale/corenet_ds/MAINTAINERS
create mode 100644 board/freescale/ls2085a/Kconfig
create mode 100644 board/freescale/ls2085a/MAINTAINERS
create mode 100644 board/freescale/m5208evbe/Kconfig
create mode 100644 board/freescale/m5208evbe/MAINTAINERS
create mode 100644 board/freescale/m52277evb/Kconfig
create mode 100644 board/freescale/m52277evb/MAINTAINERS
create mode 100644 board/freescale/m5235evb/Kconfig
create mode 100644 board/freescale/m5235evb/MAINTAINERS
create mode 100644 board/freescale/m5249evb/Kconfig
create mode 100644 board/freescale/m5249evb/MAINTAINERS
create mode 100644 board/freescale/m5253demo/Kconfig
create mode 100644 board/freescale/m5253demo/MAINTAINERS
create mode 100644 board/freescale/m5253evbe/Kconfig
create mode 100644 board/freescale/m5253evbe/MAINTAINERS
create mode 100644 board/freescale/m5272c3/Kconfig
create mode 100644 board/freescale/m5272c3/MAINTAINERS
create mode 100644 board/freescale/m5275evb/Kconfig
create mode 100644 board/freescale/m5275evb/MAINTAINERS
create mode 100644 board/freescale/m5282evb/Kconfig
create mode 100644 board/freescale/m5282evb/MAINTAINERS
create mode 100644 board/freescale/m53017evb/Kconfig
create mode 100644 board/freescale/m53017evb/MAINTAINERS
create mode 100644 board/freescale/m5329evb/Kconfig
create mode 100644 board/freescale/m5329evb/MAINTAINERS
create mode 100644 board/freescale/m5373evb/Kconfig
create mode 100644 board/freescale/m5373evb/MAINTAINERS
create mode 100644 board/freescale/m54418twr/Kconfig
create mode 100644 board/freescale/m54418twr/MAINTAINERS
create mode 100644 board/freescale/m54451evb/Kconfig
create mode 100644 board/freescale/m54451evb/MAINTAINERS
create mode 100644 board/freescale/m54455evb/Kconfig
create mode 100644 board/freescale/m54455evb/MAINTAINERS
create mode 100644 board/freescale/m547xevb/Kconfig
create mode 100644 board/freescale/m547xevb/MAINTAINERS
create mode 100644 board/freescale/m548xevb/Kconfig
create mode 100644 board/freescale/m548xevb/MAINTAINERS
create mode 100644 board/freescale/mpc5121ads/Kconfig
create mode 100644 board/freescale/mpc5121ads/MAINTAINERS
create mode 100644 board/freescale/mpc7448hpc2/Kconfig
create mode 100644 board/freescale/mpc7448hpc2/MAINTAINERS
create mode 100644 board/freescale/mpc8266ads/Kconfig
create mode 100644 board/freescale/mpc8266ads/MAINTAINERS
create mode 100644 board/freescale/mpc8308rdb/Kconfig
create mode 100644 board/freescale/mpc8308rdb/MAINTAINERS
create mode 100644 board/freescale/mpc8313erdb/Kconfig
create mode 100644 board/freescale/mpc8313erdb/MAINTAINERS
create mode 100644 board/freescale/mpc8315erdb/Kconfig
create mode 100644 board/freescale/mpc8315erdb/MAINTAINERS
create mode 100644 board/freescale/mpc8323erdb/Kconfig
create mode 100644 board/freescale/mpc8323erdb/MAINTAINERS
create mode 100644 board/freescale/mpc832xemds/Kconfig
create mode 100644 board/freescale/mpc832xemds/MAINTAINERS
create mode 100644 board/freescale/mpc8349emds/Kconfig
create mode 100644 board/freescale/mpc8349emds/MAINTAINERS
create mode 100644 board/freescale/mpc8349itx/Kconfig
create mode 100644 board/freescale/mpc8349itx/MAINTAINERS
create mode 100644 board/freescale/mpc8360emds/Kconfig
create mode 100644 board/freescale/mpc8360emds/MAINTAINERS
create mode 100644 board/freescale/mpc8360erdk/Kconfig
create mode 100644 board/freescale/mpc8360erdk/MAINTAINERS
create mode 100644 board/freescale/mpc837xemds/Kconfig
create mode 100644 board/freescale/mpc837xemds/MAINTAINERS
create mode 100644 board/freescale/mpc837xerdb/Kconfig
create mode 100644 board/freescale/mpc837xerdb/MAINTAINERS
create mode 100644 board/freescale/mpc8536ds/Kconfig
create mode 100644 board/freescale/mpc8536ds/MAINTAINERS
create mode 100644 board/freescale/mpc8540ads/Kconfig
create mode 100644 board/freescale/mpc8540ads/MAINTAINERS
create mode 100644 board/freescale/mpc8541cds/Kconfig
create mode 100644 board/freescale/mpc8541cds/MAINTAINERS
create mode 100644 board/freescale/mpc8544ds/Kconfig
create mode 100644 board/freescale/mpc8544ds/MAINTAINERS
create mode 100644 board/freescale/mpc8548cds/Kconfig
create mode 100644 board/freescale/mpc8548cds/MAINTAINERS
create mode 100644 board/freescale/mpc8555cds/Kconfig
create mode 100644 board/freescale/mpc8555cds/MAINTAINERS
create mode 100644 board/freescale/mpc8560ads/Kconfig
create mode 100644 board/freescale/mpc8560ads/MAINTAINERS
create mode 100644 board/freescale/mpc8568mds/Kconfig
create mode 100644 board/freescale/mpc8568mds/MAINTAINERS
create mode 100644 board/freescale/mpc8569mds/Kconfig
create mode 100644 board/freescale/mpc8569mds/MAINTAINERS
create mode 100644 board/freescale/mpc8572ds/Kconfig
create mode 100644 board/freescale/mpc8572ds/MAINTAINERS
create mode 100644 board/freescale/mpc8610hpcd/Kconfig
create mode 100644 board/freescale/mpc8610hpcd/MAINTAINERS
create mode 100644 board/freescale/mpc8641hpcn/Kconfig
create mode 100644 board/freescale/mpc8641hpcn/MAINTAINERS
create mode 100644 board/freescale/mx23evk/Kconfig
create mode 100644 board/freescale/mx23evk/MAINTAINERS
create mode 100644 board/freescale/mx25pdk/Kconfig
create mode 100644 board/freescale/mx25pdk/MAINTAINERS
create mode 100644 board/freescale/mx28evk/Kconfig
create mode 100644 board/freescale/mx28evk/MAINTAINERS
create mode 100644 board/freescale/mx31ads/Kconfig
create mode 100644 board/freescale/mx31ads/MAINTAINERS
create mode 100644 board/freescale/mx31pdk/Kconfig
create mode 100644 board/freescale/mx31pdk/MAINTAINERS
create mode 100644 board/freescale/mx35pdk/Kconfig
create mode 100644 board/freescale/mx35pdk/MAINTAINERS
create mode 100644 board/freescale/mx51evk/Kconfig
create mode 100644 board/freescale/mx51evk/MAINTAINERS
create mode 100644 board/freescale/mx53ard/Kconfig
create mode 100644 board/freescale/mx53ard/MAINTAINERS
create mode 100644 board/freescale/mx53evk/Kconfig
create mode 100644 board/freescale/mx53evk/MAINTAINERS
create mode 100644 board/freescale/mx53loco/Kconfig
create mode 100644 board/freescale/mx53loco/MAINTAINERS
create mode 100644 board/freescale/mx53smd/Kconfig
create mode 100644 board/freescale/mx53smd/MAINTAINERS
create mode 100644 board/freescale/mx6qarm2/Kconfig
create mode 100644 board/freescale/mx6qarm2/MAINTAINERS
create mode 100644 board/freescale/mx6qsabreauto/Kconfig
create mode 100644 board/freescale/mx6qsabreauto/MAINTAINERS
create mode 100644 board/freescale/mx6sabresd/Kconfig
create mode 100644 board/freescale/mx6sabresd/MAINTAINERS
create mode 100644 board/freescale/mx6slevk/Kconfig
create mode 100644 board/freescale/mx6slevk/MAINTAINERS
create mode 100644 board/freescale/p1010rdb/Kconfig
create mode 100644 board/freescale/p1010rdb/MAINTAINERS
create mode 100644 board/freescale/p1022ds/Kconfig
create mode 100644 board/freescale/p1022ds/MAINTAINERS
create mode 100644 board/freescale/p1023rdb/Kconfig
create mode 100644 board/freescale/p1023rdb/MAINTAINERS
create mode 100644 board/freescale/p1_p2_rdb/Kconfig
create mode 100644 board/freescale/p1_p2_rdb/MAINTAINERS
create mode 100644 board/freescale/p1_p2_rdb_pc/Kconfig
create mode 100644 board/freescale/p1_p2_rdb_pc/MAINTAINERS
create mode 100644 board/freescale/p1_twr/Kconfig
create mode 100644 board/freescale/p1_twr/MAINTAINERS
create mode 100644 board/freescale/p2020come/Kconfig
create mode 100644 board/freescale/p2020come/MAINTAINERS
create mode 100644 board/freescale/p2020ds/Kconfig
create mode 100644 board/freescale/p2020ds/MAINTAINERS
create mode 100644 board/freescale/p2041rdb/Kconfig
create mode 100644 board/freescale/p2041rdb/MAINTAINERS
create mode 100644 board/freescale/qemu-ppce500/Kconfig
create mode 100644 board/freescale/qemu-ppce500/MAINTAINERS
create mode 100644 board/freescale/t1040qds/Kconfig
create mode 100644 board/freescale/t1040qds/MAINTAINERS
create mode 100644 board/freescale/t104xrdb/Kconfig
create mode 100644 board/freescale/t104xrdb/MAINTAINERS
create mode 100644 board/freescale/t208xqds/Kconfig
create mode 100644 board/freescale/t208xqds/MAINTAINERS
create mode 100644 board/freescale/t208xrdb/Kconfig
create mode 100644 board/freescale/t208xrdb/MAINTAINERS
create mode 100644 board/freescale/t4qds/Kconfig
create mode 100644 board/freescale/t4qds/MAINTAINERS
create mode 100644 board/freescale/t4rdb/Kconfig
create mode 100644 board/freescale/t4rdb/MAINTAINERS
create mode 100644 board/freescale/vf610twr/Kconfig
create mode 100644 board/freescale/vf610twr/MAINTAINERS
create mode 100644 board/funkwerk/vovpn-gw/Kconfig
create mode 100644 board/funkwerk/vovpn-gw/MAINTAINERS
create mode 100644 board/g2000/Kconfig
create mode 100644 board/g2000/MAINTAINERS
create mode 100644 board/gaisler/gr_cpci_ax2000/Kconfig
create mode 100644 board/gaisler/gr_cpci_ax2000/MAINTAINERS
create mode 100644 board/gaisler/gr_ep2s60/Kconfig
create mode 100644 board/gaisler/gr_ep2s60/MAINTAINERS
create mode 100644 board/gaisler/gr_xc3s_1500/Kconfig
create mode 100644 board/gaisler/gr_xc3s_1500/MAINTAINERS
create mode 100644 board/gaisler/grsim/Kconfig
create mode 100644 board/gaisler/grsim/MAINTAINERS
create mode 100644 board/gaisler/grsim_leon2/Kconfig
create mode 100644 board/gaisler/grsim_leon2/MAINTAINERS
create mode 100644 board/galaxy5200/Kconfig
create mode 100644 board/galaxy5200/MAINTAINERS
create mode 100644 board/gateworks/gw_ventana/Kconfig
create mode 100644 board/gateworks/gw_ventana/MAINTAINERS
create mode 100644 board/gdsys/405ep/Kconfig
create mode 100644 board/gdsys/405ep/MAINTAINERS
create mode 100644 board/gdsys/405ex/Kconfig
create mode 100644 board/gdsys/405ex/MAINTAINERS
create mode 100644 board/gdsys/dlvision/Kconfig
create mode 100644 board/gdsys/dlvision/MAINTAINERS
create mode 100644 board/gdsys/gdppc440etx/Kconfig
create mode 100644 board/gdsys/gdppc440etx/MAINTAINERS
create mode 100644 board/gdsys/intip/Kconfig
create mode 100644 board/gdsys/intip/MAINTAINERS
create mode 100644 board/gdsys/p1022/Kconfig
create mode 100644 board/gdsys/p1022/MAINTAINERS
create mode 100644 board/gen860t/Kconfig
create mode 100644 board/gen860t/MAINTAINERS
create mode 100644 board/genesi/mx51_efikamx/Kconfig
create mode 100644 board/genesi/mx51_efikamx/MAINTAINERS
create mode 100644 board/gumstix/duovero/Kconfig
create mode 100644 board/gumstix/duovero/MAINTAINERS
create mode 100644 board/gumstix/pepper/Kconfig
create mode 100644 board/gumstix/pepper/MAINTAINERS
create mode 100644 board/gw8260/Kconfig
create mode 100644 board/gw8260/MAINTAINERS
create mode 100644 board/h2200/Kconfig
create mode 100644 board/h2200/MAINTAINERS
create mode 100644 board/hale/tt01/Kconfig
create mode 100644 board/hale/tt01/MAINTAINERS
create mode 100644 board/hermes/Kconfig
create mode 100644 board/hermes/MAINTAINERS
create mode 100644 board/highbank/Kconfig
create mode 100644 board/highbank/MAINTAINERS
create mode 100644 board/htkw/mcx/Kconfig
create mode 100644 board/htkw/mcx/MAINTAINERS
create mode 100644 board/hymod/Kconfig
create mode 100644 board/hymod/MAINTAINERS
create mode 100644 board/ibf-dsp561/Kconfig
create mode 100644 board/ibf-dsp561/MAINTAINERS
create mode 100644 board/icecube/Kconfig
create mode 100644 board/icecube/MAINTAINERS
create mode 100644 board/icpdas/lp8x4x/Kconfig
create mode 100644 board/icpdas/lp8x4x/MAINTAINERS
create mode 100644 board/icu862/Kconfig
create mode 100644 board/icu862/MAINTAINERS
create mode 100644 board/ids/ids8247/Kconfig
create mode 100644 board/ids/ids8247/MAINTAINERS
create mode 100644 board/ids/ids8313/Kconfig
create mode 100644 board/ids/ids8313/MAINTAINERS
create mode 100644 board/ifm/ac14xx/Kconfig
create mode 100644 board/ifm/ac14xx/MAINTAINERS
create mode 100644 board/ifm/o2dnt2/Kconfig
create mode 100644 board/ifm/o2dnt2/MAINTAINERS
create mode 100644 board/imgtec/malta/Kconfig
create mode 100644 board/imgtec/malta/MAINTAINERS
create mode 100644 board/imx31_phycore/Kconfig
create mode 100644 board/imx31_phycore/MAINTAINERS
create mode 100644 board/in-circuit/grasshopper/Kconfig
create mode 100644 board/in-circuit/grasshopper/MAINTAINERS
create mode 100644 board/inka4x0/Kconfig
create mode 100644 board/inka4x0/MAINTAINERS
create mode 100644 board/intercontrol/digsy_mtc/Kconfig
create mode 100644 board/intercontrol/digsy_mtc/MAINTAINERS
create mode 100644 board/iomega/iconnect/Kconfig
create mode 100644 board/iomega/iconnect/MAINTAINERS
create mode 100644 board/ip04/Kconfig
create mode 100644 board/ip04/MAINTAINERS
create mode 100644 board/ip860/Kconfig
create mode 100644 board/ip860/MAINTAINERS
create mode 100644 board/ipek01/Kconfig
create mode 100644 board/ipek01/MAINTAINERS
create mode 100644 board/iphase4539/Kconfig
create mode 100644 board/iphase4539/MAINTAINERS
create mode 100644 board/isee/igep0033/Kconfig
create mode 100644 board/isee/igep0033/MAINTAINERS
create mode 100644 board/isee/igep00x0/Kconfig
create mode 100644 board/isee/igep00x0/MAINTAINERS
create mode 100644 board/ivm/Kconfig
create mode 100644 board/ivm/MAINTAINERS
create mode 100644 board/jornada/Kconfig
create mode 100644 board/jornada/MAINTAINERS
create mode 100644 board/jse/Kconfig
create mode 100644 board/jse/MAINTAINERS
create mode 100644 board/jupiter/Kconfig
create mode 100644 board/jupiter/MAINTAINERS
create mode 100644 board/karo/tk71/Kconfig
create mode 100644 board/karo/tk71/MAINTAINERS
create mode 100644 board/karo/tx25/Kconfig
create mode 100644 board/karo/tx25/MAINTAINERS
create mode 100644 board/keymile/km82xx/Kconfig
create mode 100644 board/keymile/km82xx/MAINTAINERS
create mode 100644 board/keymile/km83xx/Kconfig
create mode 100644 board/keymile/km83xx/MAINTAINERS
create mode 100644 board/keymile/km_arm/Kconfig
create mode 100644 board/keymile/km_arm/MAINTAINERS
create mode 100644 board/keymile/kmp204x/Kconfig
create mode 100644 board/keymile/kmp204x/MAINTAINERS
create mode 100644 board/kmc/kzm9g/Kconfig
create mode 100644 board/kmc/kzm9g/MAINTAINERS
create mode 100644 board/korat/Kconfig
create mode 100644 board/korat/MAINTAINERS
create mode 100644 board/kup/kup4k/Kconfig
create mode 100644 board/kup/kup4k/MAINTAINERS
create mode 100644 board/kup/kup4x/Kconfig
create mode 100644 board/kup/kup4x/MAINTAINERS
create mode 100644 board/logicpd/am3517evm/Kconfig
create mode 100644 board/logicpd/am3517evm/MAINTAINERS
create mode 100644 board/logicpd/imx27lite/Kconfig
create mode 100644 board/logicpd/imx27lite/MAINTAINERS
create mode 100644 board/logicpd/imx31_litekit/Kconfig
create mode 100644 board/logicpd/imx31_litekit/MAINTAINERS
create mode 100644 board/logicpd/omap3som/Kconfig
create mode 100644 board/logicpd/omap3som/MAINTAINERS
create mode 100644 board/logicpd/zoom1/Kconfig
create mode 100644 board/logicpd/zoom1/MAINTAINERS
create mode 100644 board/lwmon/Kconfig
create mode 100644 board/lwmon/MAINTAINERS
create mode 100644 board/lwmon5/Kconfig
create mode 100644 board/lwmon5/MAINTAINERS
create mode 100644 board/manroland/hmi1001/Kconfig
create mode 100644 board/manroland/hmi1001/MAINTAINERS
create mode 100644 board/manroland/mucmc52/Kconfig
create mode 100644 board/manroland/mucmc52/MAINTAINERS
create mode 100644 board/manroland/uc100/Kconfig
create mode 100644 board/manroland/uc100/MAINTAINERS
create mode 100644 board/manroland/uc101/Kconfig
create mode 100644 board/manroland/uc101/MAINTAINERS
create mode 100644 board/matrix_vision/mergerbox/Kconfig
create mode 100644 board/matrix_vision/mergerbox/MAINTAINERS
create mode 100644 board/matrix_vision/mvbc_p/Kconfig
create mode 100644 board/matrix_vision/mvbc_p/MAINTAINERS
create mode 100644 board/matrix_vision/mvblm7/Kconfig
create mode 100644 board/matrix_vision/mvblm7/MAINTAINERS
create mode 100644 board/matrix_vision/mvblx/Kconfig
create mode 100644 board/matrix_vision/mvblx/MAINTAINERS
create mode 100644 board/matrix_vision/mvsmr/Kconfig
create mode 100644 board/matrix_vision/mvsmr/MAINTAINERS
create mode 100644 board/mcc200/Kconfig
create mode 100644 board/mcc200/MAINTAINERS
create mode 100644 board/micronas/vct/Kconfig
create mode 100644 board/micronas/vct/MAINTAINERS
create mode 100644 board/mimc/mimc200/Kconfig
create mode 100644 board/mimc/mimc200/MAINTAINERS
create mode 100644 board/miromico/hammerhead/Kconfig
create mode 100644 board/miromico/hammerhead/MAINTAINERS
create mode 100644 board/mosaixtech/icon/Kconfig
create mode 100644 board/mosaixtech/icon/MAINTAINERS
create mode 100644 board/motionpro/Kconfig
create mode 100644 board/motionpro/MAINTAINERS
create mode 100644 board/mpc8308_p1m/Kconfig
create mode 100644 board/mpc8308_p1m/MAINTAINERS
create mode 100644 board/mpl/mip405/Kconfig
create mode 100644 board/mpl/mip405/MAINTAINERS
create mode 100644 board/mpl/pati/Kconfig
create mode 100644 board/mpl/pati/MAINTAINERS
create mode 100644 board/mpl/pip405/Kconfig
create mode 100644 board/mpl/pip405/MAINTAINERS
create mode 100644 board/mpl/vcma9/Kconfig
create mode 100644 board/mpl/vcma9/MAINTAINERS
create mode 100644 board/mpr2/Kconfig
create mode 100644 board/mpr2/MAINTAINERS
create mode 100644 board/ms7720se/Kconfig
create mode 100644 board/ms7720se/MAINTAINERS
create mode 100644 board/ms7722se/Kconfig
create mode 100644 board/ms7722se/MAINTAINERS
create mode 100644 board/ms7750se/Kconfig
create mode 100644 board/ms7750se/MAINTAINERS
create mode 100644 board/muas3001/Kconfig
create mode 100644 board/muas3001/MAINTAINERS
create mode 100644 board/munices/Kconfig
create mode 100644 board/munices/MAINTAINERS
create mode 100644 board/musenki/Kconfig
create mode 100644 board/musenki/MAINTAINERS
create mode 100644 board/mvblue/Kconfig
create mode 100644 board/mvblue/MAINTAINERS
create mode 100644 board/netvia/Kconfig
create mode 100644 board/netvia/MAINTAINERS
create mode 100644 board/nokia/rx51/Kconfig
create mode 100644 board/nokia/rx51/MAINTAINERS
create mode 100644 board/nvidia/beaver/Kconfig
create mode 100644 board/nvidia/beaver/MAINTAINERS
create mode 100644 board/nvidia/cardhu/Kconfig
create mode 100644 board/nvidia/cardhu/MAINTAINERS
create mode 100644 board/nvidia/dalmore/Kconfig
create mode 100644 board/nvidia/dalmore/MAINTAINERS
create mode 100644 board/nvidia/harmony/Kconfig
create mode 100644 board/nvidia/harmony/MAINTAINERS
create mode 100644 board/nvidia/jetson-tk1/Kconfig
create mode 100644 board/nvidia/jetson-tk1/MAINTAINERS
create mode 100644 board/nvidia/seaboard/Kconfig
create mode 100644 board/nvidia/seaboard/MAINTAINERS
create mode 100644 board/nvidia/venice2/Kconfig
create mode 100644 board/nvidia/venice2/MAINTAINERS
create mode 100644 board/nvidia/ventana/Kconfig
create mode 100644 board/nvidia/ventana/MAINTAINERS
create mode 100644 board/nvidia/whistler/Kconfig
create mode 100644 board/nvidia/whistler/MAINTAINERS
create mode 100644 board/olimex/mx23_olinuxino/Kconfig
create mode 100644 board/olimex/mx23_olinuxino/MAINTAINERS
create mode 100644 board/omicron/calimain/Kconfig
create mode 100644 board/omicron/calimain/MAINTAINERS
create mode 100644 board/openrisc/openrisc-generic/Kconfig
create mode 100644 board/openrisc/openrisc-generic/MAINTAINERS
create mode 100644 board/overo/Kconfig
create mode 100644 board/overo/MAINTAINERS
create mode 100644 board/palmld/Kconfig
create mode 100644 board/palmld/MAINTAINERS
create mode 100644 board/palmtc/Kconfig
create mode 100644 board/palmtc/MAINTAINERS
create mode 100644 board/palmtreo680/Kconfig
create mode 100644 board/palmtreo680/MAINTAINERS
create mode 100644 board/pandora/Kconfig
create mode 100644 board/pandora/MAINTAINERS
create mode 100644 board/pb1x00/Kconfig
create mode 100644 board/pb1x00/MAINTAINERS
create mode 100644 board/pcs440ep/Kconfig
create mode 100644 board/pcs440ep/MAINTAINERS
create mode 100644 board/pdm360ng/Kconfig
create mode 100644 board/pdm360ng/MAINTAINERS
create mode 100644 board/phytec/pcm030/Kconfig
create mode 100644 board/phytec/pcm030/MAINTAINERS
create mode 100644 board/phytec/pcm051/Kconfig
create mode 100644 board/phytec/pcm051/MAINTAINERS
create mode 100644 board/pm520/Kconfig
create mode 100644 board/pm520/MAINTAINERS
create mode 100644 board/pm826/Kconfig
create mode 100644 board/pm826/MAINTAINERS
create mode 100644 board/pm828/Kconfig
create mode 100644 board/pm828/MAINTAINERS
create mode 100644 board/ppcag/bg0900/Kconfig
create mode 100644 board/ppcag/bg0900/MAINTAINERS
create mode 100644 board/ppmc7xx/Kconfig
create mode 100644 board/ppmc7xx/MAINTAINERS
create mode 100644 board/ppmc8260/Kconfig
create mode 100644 board/ppmc8260/MAINTAINERS
create mode 100644 board/pr1/Kconfig
create mode 100644 board/pr1/MAINTAINERS
create mode 100644 board/prodrive/alpr/Kconfig
create mode 100644 board/prodrive/alpr/MAINTAINERS
create mode 100644 board/prodrive/p3mx/Kconfig
create mode 100644 board/prodrive/p3mx/MAINTAINERS
create mode 100644 board/prodrive/p3p440/Kconfig
create mode 100644 board/prodrive/p3p440/MAINTAINERS
create mode 100644 board/psyent/pci5441/Kconfig
create mode 100644 board/psyent/pci5441/MAINTAINERS
create mode 100644 board/psyent/pk1c20/Kconfig
create mode 100644 board/psyent/pk1c20/MAINTAINERS
create mode 100644 board/pxa255_idp/Kconfig
create mode 100644 board/pxa255_idp/MAINTAINERS
create mode 100644 board/qemu-mips/Kconfig
create mode 100644 board/qemu-mips/MAINTAINERS
create mode 100644 board/r360mpi/Kconfig
create mode 100644 board/r360mpi/MAINTAINERS
create mode 100644 board/raidsonic/ib62x0/Kconfig
create mode 100644 board/raidsonic/ib62x0/MAINTAINERS
create mode 100644 board/raspberrypi/rpi_b/Kconfig
create mode 100644 board/raspberrypi/rpi_b/MAINTAINERS
create mode 100644 board/renesas/MigoR/Kconfig
create mode 100644 board/renesas/MigoR/MAINTAINERS
create mode 100644 board/renesas/ap325rxa/Kconfig
create mode 100644 board/renesas/ap325rxa/MAINTAINERS
create mode 100644 board/renesas/ecovec/Kconfig
create mode 100644 board/renesas/ecovec/MAINTAINERS
create mode 100644 board/renesas/koelsch/Kconfig
create mode 100644 board/renesas/koelsch/MAINTAINERS
create mode 100644 board/renesas/lager/Kconfig
create mode 100644 board/renesas/lager/MAINTAINERS
create mode 100644 board/renesas/r0p7734/Kconfig
create mode 100644 board/renesas/r0p7734/MAINTAINERS
create mode 100644 board/renesas/r2dplus/Kconfig
create mode 100644 board/renesas/r2dplus/MAINTAINERS
create mode 100644 board/renesas/r7780mp/Kconfig
create mode 100644 board/renesas/r7780mp/MAINTAINERS
create mode 100644 board/renesas/rsk7203/Kconfig
create mode 100644 board/renesas/rsk7203/MAINTAINERS
create mode 100644 board/renesas/rsk7264/Kconfig
create mode 100644 board/renesas/rsk7264/MAINTAINERS
create mode 100644 board/renesas/rsk7269/Kconfig
create mode 100644 board/renesas/rsk7269/MAINTAINERS
create mode 100644 board/renesas/sh7752evb/Kconfig
create mode 100644 board/renesas/sh7752evb/MAINTAINERS
create mode 100644 board/renesas/sh7753evb/Kconfig
create mode 100644 board/renesas/sh7753evb/MAINTAINERS
create mode 100644 board/renesas/sh7757lcr/Kconfig
create mode 100644 board/renesas/sh7757lcr/MAINTAINERS
create mode 100644 board/renesas/sh7763rdp/Kconfig
create mode 100644 board/renesas/sh7763rdp/MAINTAINERS
create mode 100644 board/renesas/sh7785lcr/Kconfig
create mode 100644 board/renesas/sh7785lcr/MAINTAINERS
create mode 100644 board/ronetix/pm9261/Kconfig
create mode 100644 board/ronetix/pm9261/MAINTAINERS
create mode 100644 board/ronetix/pm9263/Kconfig
create mode 100644 board/ronetix/pm9263/MAINTAINERS
create mode 100644 board/ronetix/pm9g45/Kconfig
create mode 100644 board/ronetix/pm9g45/MAINTAINERS
create mode 100644 board/sacsng/Kconfig
create mode 100644 board/sacsng/MAINTAINERS
create mode 100644 board/samsung/arndale/Kconfig
create mode 100644 board/samsung/arndale/MAINTAINERS
create mode 100644 board/samsung/goni/Kconfig
create mode 100644 board/samsung/goni/MAINTAINERS
create mode 100644 board/samsung/origen/Kconfig
create mode 100644 board/samsung/origen/MAINTAINERS
create mode 100644 board/samsung/smdk2410/Kconfig
create mode 100644 board/samsung/smdk2410/MAINTAINERS
create mode 100644 board/samsung/smdk5250/Kconfig
create mode 100644 board/samsung/smdk5250/MAINTAINERS
create mode 100644 board/samsung/smdk5420/Kconfig
create mode 100644 board/samsung/smdk5420/MAINTAINERS
create mode 100644 board/samsung/smdkc100/Kconfig
create mode 100644 board/samsung/smdkc100/MAINTAINERS
create mode 100644 board/samsung/smdkv310/Kconfig
create mode 100644 board/samsung/smdkv310/MAINTAINERS
create mode 100644 board/samsung/trats/Kconfig
create mode 100644 board/samsung/trats/MAINTAINERS
create mode 100644 board/samsung/trats2/Kconfig
create mode 100644 board/samsung/trats2/MAINTAINERS
create mode 100644 board/samsung/universal_c210/Kconfig
create mode 100644 board/samsung/universal_c210/MAINTAINERS
create mode 100644 board/sandbox/MAINTAINERS
create mode 100644 board/sandburst/karef/Kconfig
create mode 100644 board/sandburst/karef/MAINTAINERS
create mode 100644 board/sandburst/metrobox/Kconfig
create mode 100644 board/sandburst/metrobox/MAINTAINERS
create mode 100644 board/sandisk/sansa_fuze_plus/Kconfig
create mode 100644 board/sandisk/sansa_fuze_plus/MAINTAINERS
create mode 100644 board/sandpoint/Kconfig
create mode 100644 board/sandpoint/MAINTAINERS
create mode 100644 board/sbc405/Kconfig
create mode 100644 board/sbc405/MAINTAINERS
create mode 100644 board/sbc8349/Kconfig
create mode 100644 board/sbc8349/MAINTAINERS
create mode 100644 board/sbc8548/Kconfig
create mode 100644 board/sbc8548/MAINTAINERS
create mode 100644 board/sbc8641d/Kconfig
create mode 100644 board/sbc8641d/MAINTAINERS
create mode 100644 board/sc3/Kconfig
create mode 100644 board/sc3/MAINTAINERS
create mode 100644 board/scb9328/Kconfig
create mode 100644 board/scb9328/MAINTAINERS
create mode 100644 board/schulercontrol/sc_sps_1/Kconfig
create mode 100644 board/schulercontrol/sc_sps_1/MAINTAINERS
create mode 100644 board/shmin/Kconfig
create mode 100644 board/shmin/MAINTAINERS
create mode 100644 board/siemens/corvus/Kconfig
create mode 100644 board/siemens/corvus/MAINTAINERS
create mode 100644 board/siemens/draco/Kconfig
create mode 100644 board/siemens/draco/MAINTAINERS
create mode 100644 board/siemens/pxm2/Kconfig
create mode 100644 board/siemens/pxm2/MAINTAINERS
create mode 100644 board/siemens/rut/Kconfig
create mode 100644 board/siemens/rut/MAINTAINERS
create mode 100644 board/siemens/taurus/Kconfig
create mode 100644 board/siemens/taurus/MAINTAINERS
create mode 100644 board/silica/pengwyn/Kconfig
create mode 100644 board/silica/pengwyn/MAINTAINERS
create mode 100644 board/sixnet/Kconfig
create mode 100644 board/sixnet/MAINTAINERS
create mode 100644 board/socrates/Kconfig
create mode 100644 board/socrates/MAINTAINERS
create mode 100644 board/solidrun/hummingboard/Kconfig
create mode 100644 board/solidrun/hummingboard/MAINTAINERS
create mode 100644 board/spd8xx/Kconfig
create mode 100644 board/spd8xx/MAINTAINERS
create mode 100644 board/spear/spear300/Kconfig
create mode 100644 board/spear/spear300/MAINTAINERS
create mode 100644 board/spear/spear310/Kconfig
create mode 100644 board/spear/spear310/MAINTAINERS
create mode 100644 board/spear/spear320/Kconfig
create mode 100644 board/spear/spear320/MAINTAINERS
create mode 100644 board/spear/spear600/Kconfig
create mode 100644 board/spear/spear600/MAINTAINERS
create mode 100644 board/spear/x600/Kconfig
create mode 100644 board/spear/x600/MAINTAINERS
create mode 100644 board/st-ericsson/snowball/Kconfig
create mode 100644 board/st-ericsson/snowball/MAINTAINERS
create mode 100644 board/st-ericsson/u8500/Kconfig
create mode 100644 board/st-ericsson/u8500/MAINTAINERS
create mode 100644 board/st/nhk8815/Kconfig
create mode 100644 board/st/nhk8815/MAINTAINERS
create mode 100644 board/stx/stxgp3/Kconfig
create mode 100644 board/stx/stxgp3/MAINTAINERS
create mode 100644 board/stx/stxssa/Kconfig
create mode 100644 board/stx/stxssa/MAINTAINERS
create mode 100644 board/stx/stxxtc/Kconfig
create mode 100644 board/stx/stxxtc/MAINTAINERS
create mode 100644 board/sunxi/Kconfig
create mode 100644 board/sunxi/MAINTAINERS
create mode 100644 board/svm_sc8xx/Kconfig
create mode 100644 board/svm_sc8xx/MAINTAINERS
create mode 100644 board/synopsys/Kconfig
create mode 100644 board/synopsys/MAINTAINERS
create mode 100644 board/synopsys/axs101/Kconfig
create mode 100644 board/synopsys/axs101/MAINTAINERS
create mode 100644 board/syteco/jadecpu/Kconfig
create mode 100644 board/syteco/jadecpu/MAINTAINERS
create mode 100644 board/syteco/zmx25/Kconfig
create mode 100644 board/syteco/zmx25/MAINTAINERS
create mode 100644 board/t3corp/Kconfig
create mode 100644 board/t3corp/MAINTAINERS
create mode 100644 board/taskit/stamp9g20/Kconfig
create mode 100644 board/taskit/stamp9g20/MAINTAINERS
create mode 100644 board/tcm-bf518/Kconfig
create mode 100644 board/tcm-bf518/MAINTAINERS
create mode 100644 board/tcm-bf537/Kconfig
create mode 100644 board/tcm-bf537/MAINTAINERS
create mode 100644 board/technexion/tao3530/Kconfig
create mode 100644 board/technexion/tao3530/MAINTAINERS
create mode 100644 board/technexion/twister/Kconfig
create mode 100644 board/technexion/twister/MAINTAINERS
create mode 100644 board/teejet/mt_ventoux/Kconfig
create mode 100644 board/teejet/mt_ventoux/MAINTAINERS
create mode 100644 board/ti/am335x/Kconfig
create mode 100644 board/ti/am335x/MAINTAINERS
create mode 100644 board/ti/am3517crane/Kconfig
create mode 100644 board/ti/am3517crane/MAINTAINERS
create mode 100644 board/ti/am43xx/Kconfig
create mode 100644 board/ti/am43xx/MAINTAINERS
create mode 100644 board/ti/beagle/Kconfig
create mode 100644 board/ti/beagle/MAINTAINERS
create mode 100644 board/ti/dra7xx/Kconfig
create mode 100644 board/ti/dra7xx/MAINTAINERS
create mode 100644 board/ti/evm/Kconfig
create mode 100644 board/ti/evm/MAINTAINERS
create mode 100644 board/ti/k2hk_evm/Kconfig
create mode 100644 board/ti/k2hk_evm/MAINTAINERS
create mode 100644 board/ti/omap5912osk/Kconfig
create mode 100644 board/ti/omap5912osk/MAINTAINERS
create mode 100644 board/ti/omap5_uevm/Kconfig
create mode 100644 board/ti/omap5_uevm/MAINTAINERS
create mode 100644 board/ti/panda/Kconfig
create mode 100644 board/ti/panda/MAINTAINERS
create mode 100644 board/ti/sdp3430/Kconfig
create mode 100644 board/ti/sdp3430/MAINTAINERS
create mode 100644 board/ti/sdp4430/Kconfig
create mode 100644 board/ti/sdp4430/MAINTAINERS
create mode 100644 board/ti/ti814x/Kconfig
create mode 100644 board/ti/ti814x/MAINTAINERS
create mode 100644 board/ti/ti816x/Kconfig
create mode 100644 board/ti/ti816x/MAINTAINERS
create mode 100644 board/ti/tnetv107xevm/Kconfig
create mode 100644 board/ti/tnetv107xevm/MAINTAINERS
create mode 100644 board/timll/devkit3250/Kconfig
create mode 100644 board/timll/devkit3250/MAINTAINERS
create mode 100644 board/timll/devkit8000/Kconfig
create mode 100644 board/timll/devkit8000/MAINTAINERS
create mode 100644 board/toradex/colibri_pxa270/Kconfig
create mode 100644 board/toradex/colibri_pxa270/MAINTAINERS
create mode 100644 board/toradex/colibri_t20_iris/Kconfig
create mode 100644 board/toradex/colibri_t20_iris/MAINTAINERS
create mode 100644 board/total5200/Kconfig
create mode 100644 board/total5200/MAINTAINERS
create mode 100644 board/tqc/tqm5200/Kconfig
create mode 100644 board/tqc/tqm5200/MAINTAINERS
create mode 100644 board/tqc/tqm8260/Kconfig
create mode 100644 board/tqc/tqm8260/MAINTAINERS
create mode 100644 board/tqc/tqm8272/Kconfig
create mode 100644 board/tqc/tqm8272/MAINTAINERS
create mode 100644 board/tqc/tqm834x/Kconfig
create mode 100644 board/tqc/tqm834x/MAINTAINERS
create mode 100644 board/tqc/tqm8xx/Kconfig
create mode 100644 board/tqc/tqm8xx/MAINTAINERS
create mode 100644 board/trizepsiv/Kconfig
create mode 100644 board/trizepsiv/MAINTAINERS
create mode 100644 board/ttcontrol/vision2/Kconfig
create mode 100644 board/ttcontrol/vision2/MAINTAINERS
create mode 100644 board/udoo/Kconfig
create mode 100644 board/udoo/MAINTAINERS
create mode 100644 board/utx8245/Kconfig
create mode 100644 board/utx8245/MAINTAINERS
create mode 100644 board/v38b/Kconfig
create mode 100644 board/v38b/MAINTAINERS
create mode 100644 board/ve8313/Kconfig
create mode 100644 board/ve8313/MAINTAINERS
create mode 100644 board/vpac270/Kconfig
create mode 100644 board/vpac270/MAINTAINERS
create mode 100644 board/w7o/Kconfig
create mode 100644 board/w7o/MAINTAINERS
create mode 100644 board/wandboard/Kconfig
create mode 100644 board/wandboard/MAINTAINERS
create mode 100644 board/woodburn/Kconfig
create mode 100644 board/woodburn/MAINTAINERS
create mode 100644 board/xaeniax/Kconfig
create mode 100644 board/xaeniax/MAINTAINERS
create mode 100644 board/xes/xpedite1000/Kconfig
create mode 100644 board/xes/xpedite1000/MAINTAINERS
create mode 100644 board/xes/xpedite517x/Kconfig
create mode 100644 board/xes/xpedite517x/MAINTAINERS
create mode 100644 board/xes/xpedite520x/Kconfig
create mode 100644 board/xes/xpedite520x/MAINTAINERS
create mode 100644 board/xes/xpedite537x/Kconfig
create mode 100644 board/xes/xpedite537x/MAINTAINERS
create mode 100644 board/xes/xpedite550x/Kconfig
create mode 100644 board/xes/xpedite550x/MAINTAINERS
create mode 100644 board/xilinx/microblaze-generic/Kconfig
create mode 100644 board/xilinx/microblaze-generic/MAINTAINERS
create mode 100644 board/xilinx/ml507/Kconfig
create mode 100644 board/xilinx/ml507/MAINTAINERS
create mode 100644 board/xilinx/ppc405-generic/Kconfig
create mode 100644 board/xilinx/ppc405-generic/MAINTAINERS
create mode 100644 board/xilinx/ppc440-generic/Kconfig
create mode 100644 board/xilinx/ppc440-generic/MAINTAINERS
create mode 100644 board/xilinx/zynq/Kconfig
create mode 100644 board/xilinx/zynq/MAINTAINERS
create mode 100644 board/zeus/Kconfig
create mode 100644 board/zeus/MAINTAINERS
create mode 100644 board/zipitz2/Kconfig
create mode 100644 board/zipitz2/MAINTAINERS
delete mode 100644 boards.cfg
create mode 100644 configs/A3000_defconfig
create mode 100644 configs/APC405_defconfig
create mode 100644 configs/AR405_defconfig
create mode 100644 configs/ASH405_defconfig
create mode 100644 configs/B4420QDS_NAND_defconfig
create mode 100644 configs/B4420QDS_SPIFLASH_defconfig
create mode 100644 configs/B4420QDS_defconfig
create mode 100644 configs/B4860QDS_NAND_defconfig
create mode 100644 configs/B4860QDS_SECURE_BOOT_defconfig
create mode 100644 configs/B4860QDS_SPIFLASH_defconfig
create mode 100644 configs/B4860QDS_SRIO_PCIE_BOOT_defconfig
create mode 100644 configs/B4860QDS_defconfig
create mode 100644 configs/BC3450_defconfig
create mode 100644 configs/BSC9131RDB_NAND_SYSCLK100_defconfig
create mode 100644 configs/BSC9131RDB_NAND_defconfig
create mode 100644 configs/BSC9131RDB_SPIFLASH_SYSCLK100_defconfig
create mode 100644 configs/BSC9131RDB_SPIFLASH_defconfig
create mode 100644 configs/BSC9132QDS_NAND_DDRCLK100_SECURE_defconfig
create mode 100644 configs/BSC9132QDS_NAND_DDRCLK100_defconfig
create mode 100644 configs/BSC9132QDS_NAND_DDRCLK133_SECURE_defconfig
create mode 100644 configs/BSC9132QDS_NAND_DDRCLK133_defconfig
create mode 100644 configs/BSC9132QDS_NOR_DDRCLK100_SECURE_defconfig
create mode 100644 configs/BSC9132QDS_NOR_DDRCLK100_defconfig
create mode 100644 configs/BSC9132QDS_NOR_DDRCLK133_SECURE_defconfig
create mode 100644 configs/BSC9132QDS_NOR_DDRCLK133_defconfig
create mode 100644 configs/BSC9132QDS_SDCARD_DDRCLK100_SECURE_defconfig
create mode 100644 configs/BSC9132QDS_SDCARD_DDRCLK100_defconfig
create mode 100644 configs/BSC9132QDS_SDCARD_DDRCLK133_SECURE_defconfig
create mode 100644 configs/BSC9132QDS_SDCARD_DDRCLK133_defconfig
create mode 100644 configs/BSC9132QDS_SPIFLASH_DDRCLK100_SECURE_defconfig
create mode 100644 configs/BSC9132QDS_SPIFLASH_DDRCLK100_defconfig
create mode 100644 configs/BSC9132QDS_SPIFLASH_DDRCLK133_SECURE_defconfig
create mode 100644 configs/BSC9132QDS_SPIFLASH_DDRCLK133_defconfig
create mode 100644 configs/C29XPCIE_NAND_defconfig
create mode 100644 configs/C29XPCIE_SPIFLASH_defconfig
create mode 100644 configs/C29XPCIE_defconfig
create mode 100644 configs/CATcenter_25_defconfig
create mode 100644 configs/CATcenter_33_defconfig
create mode 100644 configs/CATcenter_defconfig
create mode 100644 configs/CMS700_defconfig
create mode 100644 configs/CPC45_ROMBOOT_defconfig
create mode 100644 configs/CPC45_defconfig
create mode 100644 configs/CPCI2DP_defconfig
create mode 100644 configs/CPCI4052_defconfig
create mode 100644 configs/CPCI405AB_defconfig
create mode 100644 configs/CPCI405DT_defconfig
create mode 100644 configs/CPCI405_defconfig
create mode 100644 configs/CPCI750_defconfig
create mode 100644 configs/CPCIISER4_defconfig
create mode 100644 configs/CPU86_ROMBOOT_defconfig
create mode 100644 configs/CPU86_defconfig
create mode 100644 configs/CPU87_ROMBOOT_defconfig
create mode 100644 configs/CPU87_defconfig
create mode 100644 configs/CRAYL1_defconfig
create mode 100644 configs/CU824_defconfig
create mode 100644 configs/Cubietruck_FEL_defconfig
create mode 100644 configs/Cubietruck_defconfig
create mode 100644 configs/DB64360_defconfig
create mode 100644 configs/DB64460_defconfig
create mode 100644 configs/DP405_defconfig
create mode 100644 configs/DU405_defconfig
create mode 100644 configs/DU440_defconfig
create mode 100644 configs/ELPPC_defconfig
create mode 100644 configs/ELPT860_defconfig
create mode 100644 configs/ESTEEM192E_defconfig
create mode 100644 configs/EVAL5200_defconfig
create mode 100644 configs/FLAGADM_defconfig
create mode 100644 configs/FPS850L_defconfig
create mode 100644 configs/FPS860L_defconfig
create mode 100644 configs/G2000_defconfig
create mode 100644 configs/GEN860T_SC_defconfig
create mode 100644 configs/GEN860T_defconfig
create mode 100644 configs/HH405_defconfig
create mode 100644 configs/HUB405_defconfig
create mode 100644 configs/HWW1U1A_defconfig
create mode 100644 configs/ICU862_100MHz_defconfig
create mode 100644 configs/ICU862_defconfig
create mode 100644 configs/IDS8247_defconfig
create mode 100644 configs/IP860_defconfig
create mode 100644 configs/IPHASE4539_defconfig
create mode 100644 configs/IVML24_128_defconfig
create mode 100644 configs/IVML24_256_defconfig
create mode 100644 configs/IVML24_defconfig
create mode 100644 configs/IVMS8_128_defconfig
create mode 100644 configs/IVMS8_256_defconfig
create mode 100644 configs/IVMS8_defconfig
create mode 100644 configs/JSE_defconfig
create mode 100644 configs/KAREF_defconfig
create mode 100644 configs/KUP4K_defconfig
create mode 100644 configs/KUP4X_defconfig
create mode 100644 configs/Lite5200_LOWBOOT08_defconfig
create mode 100644 configs/Lite5200_LOWBOOT_defconfig
create mode 100644 configs/Lite5200_defconfig
create mode 100644 configs/M5208EVBE_defconfig
create mode 100644 configs/M52277EVB_defconfig
create mode 100644 configs/M52277EVB_stmicro_defconfig
create mode 100644 configs/M5235EVB_Flash32_defconfig
create mode 100644 configs/M5235EVB_defconfig
create mode 100644 configs/M5249EVB_defconfig
create mode 100644 configs/M5253DEMO_defconfig
create mode 100644 configs/M5253EVBE_defconfig
create mode 100644 configs/M5272C3_defconfig
create mode 100644 configs/M5275EVB_defconfig
create mode 100644 configs/M5282EVB_defconfig
create mode 100644 configs/M53017EVB_defconfig
create mode 100644 configs/M5329AFEE_defconfig
create mode 100644 configs/M5329BFEE_defconfig
create mode 100644 configs/M5373EVB_defconfig
create mode 100644 configs/M54418TWR_defconfig
create mode 100644 configs/M54418TWR_nand_mii_defconfig
create mode 100644 configs/M54418TWR_nand_rmii_defconfig
create mode 100644 configs/M54418TWR_nand_rmii_lowfreq_defconfig
create mode 100644 configs/M54418TWR_serial_mii_defconfig
create mode 100644 configs/M54418TWR_serial_rmii_defconfig
create mode 100644 configs/M54451EVB_defconfig
create mode 100644 configs/M54451EVB_stmicro_defconfig
create mode 100644 configs/M54455EVB_a66_defconfig
create mode 100644 configs/M54455EVB_defconfig
create mode 100644 configs/M54455EVB_i66_defconfig
create mode 100644 configs/M54455EVB_intel_defconfig
create mode 100644 configs/M54455EVB_stm33_defconfig
create mode 100644 configs/M5475AFE_defconfig
create mode 100644 configs/M5475BFE_defconfig
create mode 100644 configs/M5475CFE_defconfig
create mode 100644 configs/M5475DFE_defconfig
create mode 100644 configs/M5475EFE_defconfig
create mode 100644 configs/M5475FFE_defconfig
create mode 100644 configs/M5475GFE_defconfig
create mode 100644 configs/M5485AFE_defconfig
create mode 100644 configs/M5485BFE_defconfig
create mode 100644 configs/M5485CFE_defconfig
create mode 100644 configs/M5485DFE_defconfig
create mode 100644 configs/M5485EFE_defconfig
create mode 100644 configs/M5485FFE_defconfig
create mode 100644 configs/M5485GFE_defconfig
create mode 100644 configs/M5485HFE_defconfig
create mode 100644 configs/MERGERBOX_defconfig
create mode 100644 configs/METROBOX_defconfig
create mode 100644 configs/MHPC_defconfig
create mode 100644 configs/MINI5200_defconfig
create mode 100644 configs/MIP405T_defconfig
create mode 100644 configs/MIP405_defconfig
create mode 100644 configs/MPC8266ADS_defconfig
create mode 100644 configs/MPC8308RDB_defconfig
create mode 100644 configs/MPC8313ERDB_33_defconfig
create mode 100644 configs/MPC8313ERDB_66_defconfig
create mode 100644 configs/MPC8313ERDB_NAND_33_defconfig
create mode 100644 configs/MPC8313ERDB_NAND_66_defconfig
create mode 100644 configs/MPC8315ERDB_defconfig
create mode 100644 configs/MPC8323ERDB_defconfig
create mode 100644 configs/MPC832XEMDS_ATM_defconfig
create mode 100644 configs/MPC832XEMDS_HOST_33_defconfig
create mode 100644 configs/MPC832XEMDS_HOST_66_defconfig
create mode 100644 configs/MPC832XEMDS_SLAVE_defconfig
create mode 100644 configs/MPC832XEMDS_defconfig
create mode 100644 configs/MPC8349EMDS_defconfig
create mode 100644 configs/MPC8349ITXGP_defconfig
create mode 100644 configs/MPC8349ITX_LOWBOOT_defconfig
create mode 100644 configs/MPC8349ITX_defconfig
create mode 100644 configs/MPC8360EMDS_33_ATM_defconfig
create mode 100644 configs/MPC8360EMDS_33_HOST_33_defconfig
create mode 100644 configs/MPC8360EMDS_33_HOST_66_defconfig
create mode 100644 configs/MPC8360EMDS_33_SLAVE_defconfig
create mode 100644 configs/MPC8360EMDS_33_defconfig
create mode 100644 configs/MPC8360EMDS_66_ATM_defconfig
create mode 100644 configs/MPC8360EMDS_66_HOST_33_defconfig
create mode 100644 configs/MPC8360EMDS_66_HOST_66_defconfig
create mode 100644 configs/MPC8360EMDS_66_SLAVE_defconfig
create mode 100644 configs/MPC8360EMDS_66_defconfig
create mode 100644 configs/MPC8360ERDK_33_defconfig
create mode 100644 configs/MPC8360ERDK_defconfig
create mode 100644 configs/MPC837XEMDS_HOST_defconfig
create mode 100644 configs/MPC837XEMDS_defconfig
create mode 100644 configs/MPC837XERDB_defconfig
create mode 100644 configs/MPC8536DS_36BIT_defconfig
create mode 100644 configs/MPC8536DS_SDCARD_defconfig
create mode 100644 configs/MPC8536DS_SPIFLASH_defconfig
create mode 100644 configs/MPC8536DS_defconfig
create mode 100644 configs/MPC8540ADS_defconfig
create mode 100644 configs/MPC8541CDS_defconfig
create mode 100644 configs/MPC8541CDS_legacy_defconfig
create mode 100644 configs/MPC8544DS_defconfig
create mode 100644 configs/MPC8548CDS_36BIT_defconfig
create mode 100644 configs/MPC8548CDS_defconfig
create mode 100644 configs/MPC8548CDS_legacy_defconfig
create mode 100644 configs/MPC8555CDS_defconfig
create mode 100644 configs/MPC8555CDS_legacy_defconfig
create mode 100644 configs/MPC8560ADS_defconfig
create mode 100644 configs/MPC8568MDS_defconfig
create mode 100644 configs/MPC8569MDS_ATM_defconfig
create mode 100644 configs/MPC8569MDS_defconfig
create mode 100644 configs/MPC8572DS_36BIT_defconfig
create mode 100644 configs/MPC8572DS_defconfig
create mode 100644 configs/MPC8610HPCD_defconfig
create mode 100644 configs/MPC8641HPCN_36BIT_defconfig
create mode 100644 configs/MPC8641HPCN_defconfig
create mode 100644 configs/MUSENKI_defconfig
create mode 100644 configs/MVBC_P_defconfig
create mode 100644 configs/MVBLM7_defconfig
create mode 100644 configs/MVBLUE_defconfig
create mode 100644 configs/MVSMR_defconfig
create mode 100644 configs/MigoR_defconfig
create mode 100644 configs/MiniFAP_defconfig
create mode 100644 configs/NETVIA_V2_defconfig
create mode 100644 configs/NETVIA_defconfig
create mode 100644 configs/NSCU_defconfig
create mode 100644 configs/O2D300_defconfig
create mode 100644 configs/O2DNT2_RAMBOOT_defconfig
create mode 100644 configs/O2DNT2_defconfig
create mode 100644 configs/O2D_defconfig
create mode 100644 configs/O2I_defconfig
create mode 100644 configs/O2MNT_O2M110_defconfig
create mode 100644 configs/O2MNT_O2M112_defconfig
create mode 100644 configs/O2MNT_O2M113_defconfig
create mode 100644 configs/O2MNT_defconfig
create mode 100644 configs/O3DNT_defconfig
create mode 100644 configs/OCRTC_defconfig
create mode 100644 configs/P1010RDB-PA_36BIT_NAND_SECBOOT_defconfig
create mode 100644 configs/P1010RDB-PA_36BIT_NAND_defconfig
create mode 100644 configs/P1010RDB-PA_36BIT_NOR_SECBOOT_defconfig
create mode 100644 configs/P1010RDB-PA_36BIT_NOR_defconfig
create mode 100644 configs/P1010RDB-PA_36BIT_SDCARD_defconfig
create mode 100644 configs/P1010RDB-PA_36BIT_SPIFLASH_SECBOOT_defconfig
create mode 100644 configs/P1010RDB-PA_36BIT_SPIFLASH_defconfig
create mode 100644 configs/P1010RDB-PA_NAND_SECBOOT_defconfig
create mode 100644 configs/P1010RDB-PA_NAND_defconfig
create mode 100644 configs/P1010RDB-PA_NOR_SECBOOT_defconfig
create mode 100644 configs/P1010RDB-PA_NOR_defconfig
create mode 100644 configs/P1010RDB-PA_SDCARD_defconfig
create mode 100644 configs/P1010RDB-PA_SPIFLASH_SECBOOT_defconfig
create mode 100644 configs/P1010RDB-PA_SPIFLASH_defconfig
create mode 100644 configs/P1010RDB-PB_36BIT_NAND_SECBOOT_defconfig
create mode 100644 configs/P1010RDB-PB_36BIT_NAND_defconfig
create mode 100644 configs/P1010RDB-PB_36BIT_NOR_SECBOOT_defconfig
create mode 100644 configs/P1010RDB-PB_36BIT_NOR_defconfig
create mode 100644 configs/P1010RDB-PB_36BIT_SDCARD_defconfig
create mode 100644 configs/P1010RDB-PB_36BIT_SPIFLASH_SECBOOT_defconfig
create mode 100644 configs/P1010RDB-PB_36BIT_SPIFLASH_defconfig
create mode 100644 configs/P1010RDB-PB_NAND_SECBOOT_defconfig
create mode 100644 configs/P1010RDB-PB_NAND_defconfig
create mode 100644 configs/P1010RDB-PB_NOR_SECBOOT_defconfig
create mode 100644 configs/P1010RDB-PB_NOR_defconfig
create mode 100644 configs/P1010RDB-PB_SDCARD_defconfig
create mode 100644 configs/P1010RDB-PB_SPIFLASH_SECBOOT_defconfig
create mode 100644 configs/P1010RDB-PB_SPIFLASH_defconfig
create mode 100644 configs/P1011RDB_36BIT_SDCARD_defconfig
create mode 100644 configs/P1011RDB_36BIT_SPIFLASH_defconfig
create mode 100644 configs/P1011RDB_36BIT_defconfig
create mode 100644 configs/P1011RDB_NAND_defconfig
create mode 100644 configs/P1011RDB_SDCARD_defconfig
create mode 100644 configs/P1011RDB_SPIFLASH_defconfig
create mode 100644 configs/P1011RDB_defconfig
create mode 100644 configs/P1020MBG-PC_36BIT_SDCARD_defconfig
create mode 100644 configs/P1020MBG-PC_36BIT_defconfig
create mode 100644 configs/P1020MBG-PC_SDCARD_defconfig
create mode 100644 configs/P1020MBG-PC_defconfig
create mode 100644 configs/P1020RDB-PC_36BIT_NAND_defconfig
create mode 100644 configs/P1020RDB-PC_36BIT_SDCARD_defconfig
create mode 100644 configs/P1020RDB-PC_36BIT_SPIFLASH_defconfig
create mode 100644 configs/P1020RDB-PC_36BIT_defconfig
create mode 100644 configs/P1020RDB-PC_NAND_defconfig
create mode 100644 configs/P1020RDB-PC_SDCARD_defconfig
create mode 100644 configs/P1020RDB-PC_SPIFLASH_defconfig
create mode 100644 configs/P1020RDB-PC_defconfig
create mode 100644 configs/P1020RDB-PD_NAND_defconfig
create mode 100644 configs/P1020RDB-PD_SDCARD_defconfig
create mode 100644 configs/P1020RDB-PD_SPIFLASH_defconfig
create mode 100644 configs/P1020RDB-PD_defconfig
create mode 100644 configs/P1020RDB_36BIT_SDCARD_defconfig
create mode 100644 configs/P1020RDB_36BIT_SPIFLASH_defconfig
create mode 100644 configs/P1020RDB_36BIT_defconfig
create mode 100644 configs/P1020RDB_NAND_defconfig
create mode 100644 configs/P1020RDB_SDCARD_defconfig
create mode 100644 configs/P1020RDB_SPIFLASH_defconfig
create mode 100644 configs/P1020RDB_defconfig
create mode 100644 configs/P1020UTM-PC_36BIT_SDCARD_defconfig
create mode 100644 configs/P1020UTM-PC_36BIT_defconfig
create mode 100644 configs/P1020UTM-PC_SDCARD_defconfig
create mode 100644 configs/P1020UTM-PC_defconfig
create mode 100644 configs/P1021RDB-PC_36BIT_NAND_defconfig
create mode 100644 configs/P1021RDB-PC_36BIT_SDCARD_defconfig
create mode 100644 configs/P1021RDB-PC_36BIT_SPIFLASH_defconfig
create mode 100644 configs/P1021RDB-PC_36BIT_defconfig
create mode 100644 configs/P1021RDB-PC_NAND_defconfig
create mode 100644 configs/P1021RDB-PC_SDCARD_defconfig
create mode 100644 configs/P1021RDB-PC_SPIFLASH_defconfig
create mode 100644 configs/P1021RDB-PC_defconfig
create mode 100644 configs/P1022DS_36BIT_NAND_defconfig
create mode 100644 configs/P1022DS_36BIT_SDCARD_defconfig
create mode 100644 configs/P1022DS_36BIT_SPIFLASH_defconfig
create mode 100644 configs/P1022DS_36BIT_defconfig
create mode 100644 configs/P1022DS_NAND_defconfig
create mode 100644 configs/P1022DS_SDCARD_defconfig
create mode 100644 configs/P1022DS_SPIFLASH_defconfig
create mode 100644 configs/P1022DS_defconfig
create mode 100644 configs/P1023RDB_defconfig
create mode 100644 configs/P1024RDB_36BIT_defconfig
create mode 100644 configs/P1024RDB_NAND_defconfig
create mode 100644 configs/P1024RDB_SDCARD_defconfig
create mode 100644 configs/P1024RDB_SPIFLASH_defconfig
create mode 100644 configs/P1024RDB_defconfig
create mode 100644 configs/P1025RDB_36BIT_defconfig
create mode 100644 configs/P1025RDB_NAND_defconfig
create mode 100644 configs/P1025RDB_SDCARD_defconfig
create mode 100644 configs/P1025RDB_SPIFLASH_defconfig
create mode 100644 configs/P1025RDB_defconfig
create mode 100644 configs/P2010RDB_36BIT_SDCARD_defconfig
create mode 100644 configs/P2010RDB_36BIT_SPIFLASH_defconfig
create mode 100644 configs/P2010RDB_36BIT_defconfig
create mode 100644 configs/P2010RDB_NAND_defconfig
create mode 100644 configs/P2010RDB_SDCARD_defconfig
create mode 100644 configs/P2010RDB_SPIFLASH_defconfig
create mode 100644 configs/P2010RDB_defconfig
create mode 100644 configs/P2020COME_SDCARD_defconfig
create mode 100644 configs/P2020COME_SPIFLASH_defconfig
create mode 100644 configs/P2020DS_36BIT_defconfig
create mode 100644 configs/P2020DS_DDR2_defconfig
create mode 100644 configs/P2020DS_SDCARD_defconfig
create mode 100644 configs/P2020DS_SPIFLASH_defconfig
create mode 100644 configs/P2020DS_defconfig
create mode 100644 configs/P2020RDB-PC_36BIT_NAND_defconfig
create mode 100644 configs/P2020RDB-PC_36BIT_SDCARD_defconfig
create mode 100644 configs/P2020RDB-PC_36BIT_SPIFLASH_defconfig
create mode 100644 configs/P2020RDB-PC_36BIT_defconfig
create mode 100644 configs/P2020RDB-PC_NAND_defconfig
create mode 100644 configs/P2020RDB-PC_SDCARD_defconfig
create mode 100644 configs/P2020RDB-PC_SPIFLASH_defconfig
create mode 100644 configs/P2020RDB-PC_defconfig
create mode 100644 configs/P2020RDB_36BIT_SDCARD_defconfig
create mode 100644 configs/P2020RDB_36BIT_SPIFLASH_defconfig
create mode 100644 configs/P2020RDB_36BIT_defconfig
create mode 100644 configs/P2020RDB_NAND_defconfig
create mode 100644 configs/P2020RDB_SDCARD_defconfig
create mode 100644 configs/P2020RDB_SPIFLASH_defconfig
create mode 100644 configs/P2020RDB_defconfig
create mode 100644 configs/P2041RDB_NAND_defconfig
create mode 100644 configs/P2041RDB_SDCARD_defconfig
create mode 100644 configs/P2041RDB_SECURE_BOOT_defconfig
create mode 100644 configs/P2041RDB_SPIFLASH_defconfig
create mode 100644 configs/P2041RDB_SRIO_PCIE_BOOT_defconfig
create mode 100644 configs/P2041RDB_defconfig
create mode 100644 configs/P3041DS_NAND_defconfig
create mode 100644 configs/P3041DS_SDCARD_defconfig
create mode 100644 configs/P3041DS_SECURE_BOOT_defconfig
create mode 100644 configs/P3041DS_SPIFLASH_defconfig
create mode 100644 configs/P3041DS_SRIO_PCIE_BOOT_defconfig
create mode 100644 configs/P3041DS_defconfig
create mode 100644 configs/P3G4_defconfig
create mode 100644 configs/P4080DS_SDCARD_defconfig
create mode 100644 configs/P4080DS_SECURE_BOOT_defconfig
create mode 100644 configs/P4080DS_SPIFLASH_defconfig
create mode 100644 configs/P4080DS_SRIO_PCIE_BOOT_defconfig
create mode 100644 configs/P4080DS_defconfig
create mode 100644 configs/P5020DS_NAND_defconfig
create mode 100644 configs/P5020DS_SDCARD_defconfig
create mode 100644 configs/P5020DS_SECURE_BOOT_defconfig
create mode 100644 configs/P5020DS_SPIFLASH_defconfig
create mode 100644 configs/P5020DS_SRIO_PCIE_BOOT_defconfig
create mode 100644 configs/P5020DS_defconfig
create mode 100644 configs/P5040DS_NAND_defconfig
create mode 100644 configs/P5040DS_SDCARD_defconfig
create mode 100644 configs/P5040DS_SPIFLASH_defconfig
create mode 100644 configs/P5040DS_defconfig
create mode 100644 configs/PATI_defconfig
create mode 100644 configs/PCI405_defconfig
create mode 100644 configs/PCI5441_defconfig
create mode 100644 configs/PIP405_defconfig
create mode 100644 configs/PK1C20_defconfig
create mode 100644 configs/PLU405_defconfig
create mode 100644 configs/PM520_DDR_defconfig
create mode 100644 configs/PM520_ROMBOOT_DDR_defconfig
create mode 100644 configs/PM520_ROMBOOT_defconfig
create mode 100644 configs/PM520_defconfig
create mode 100644 configs/PM825_BIGFLASH_defconfig
create mode 100644 configs/PM825_ROMBOOT_BIGFLASH_defconfig
create mode 100644 configs/PM825_ROMBOOT_defconfig
create mode 100644 configs/PM825_defconfig
create mode 100644 configs/PM826_BIGFLASH_defconfig
create mode 100644 configs/PM826_ROMBOOT_BIGFLASH_defconfig
create mode 100644 configs/PM826_ROMBOOT_defconfig
create mode 100644 configs/PM826_defconfig
create mode 100644 configs/PM828_PCI_defconfig
create mode 100644 configs/PM828_ROMBOOT_PCI_defconfig
create mode 100644 configs/PM828_ROMBOOT_defconfig
create mode 100644 configs/PM828_defconfig
create mode 100644 configs/PMC405DE_defconfig
create mode 100644 configs/PMC405_defconfig
create mode 100644 configs/PMC440_defconfig
create mode 100644 configs/PPChameleonEVB_BA_25_defconfig
create mode 100644 configs/PPChameleonEVB_BA_33_defconfig
create mode 100644 configs/PPChameleonEVB_HI_25_defconfig
create mode 100644 configs/PPChameleonEVB_HI_33_defconfig
create mode 100644 configs/PPChameleonEVB_ME_25_defconfig
create mode 100644 configs/PPChameleonEVB_ME_33_defconfig
create mode 100644 configs/PPChameleonEVB_defconfig
create mode 100644 configs/R360MPI_defconfig
create mode 100644 configs/RRvision_LCD_defconfig
create mode 100644 configs/RRvision_defconfig
create mode 100644 configs/SM850_defconfig
create mode 100644 configs/SPD823TS_defconfig
create mode 100644 configs/SXNI855T_defconfig
create mode 100644 configs/Sandpoint8240_defconfig
create mode 100644 configs/Sandpoint8245_defconfig
create mode 100644 configs/T1040QDS_D4_defconfig
create mode 100644 configs/T1040QDS_SECURE_BOOT_defconfig
create mode 100644 configs/T1040QDS_defconfig
create mode 100644 configs/T1040RDB_NAND_defconfig
create mode 100644 configs/T1040RDB_SDCARD_defconfig
create mode 100644 configs/T1040RDB_SECURE_BOOT_defconfig
create mode 100644 configs/T1040RDB_SPIFLASH_defconfig
create mode 100644 configs/T1040RDB_defconfig
create mode 100644 configs/T1042RDB_PI_NAND_defconfig
create mode 100644 configs/T1042RDB_PI_SDCARD_defconfig
create mode 100644 configs/T1042RDB_PI_SPIFLASH_defconfig
create mode 100644 configs/T1042RDB_PI_defconfig
create mode 100644 configs/T2080QDS_NAND_defconfig
create mode 100644 configs/T2080QDS_SDCARD_defconfig
create mode 100644 configs/T2080QDS_SECURE_BOOT_defconfig
create mode 100644 configs/T2080QDS_SPIFLASH_defconfig
create mode 100644 configs/T2080QDS_SRIO_PCIE_BOOT_defconfig
create mode 100644 configs/T2080QDS_defconfig
create mode 100644 configs/T2080RDB_NAND_defconfig
create mode 100644 configs/T2080RDB_SDCARD_defconfig
create mode 100644 configs/T2080RDB_SECURE_BOOT_defconfig
create mode 100644 configs/T2080RDB_SPIFLASH_defconfig
create mode 100644 configs/T2080RDB_SRIO_PCIE_BOOT_defconfig
create mode 100644 configs/T2080RDB_defconfig
create mode 100644 configs/T2081QDS_NAND_defconfig
create mode 100644 configs/T2081QDS_SDCARD_defconfig
create mode 100644 configs/T2081QDS_SPIFLASH_defconfig
create mode 100644 configs/T2081QDS_SRIO_PCIE_BOOT_defconfig
create mode 100644 configs/T2081QDS_defconfig
create mode 100644 configs/T4160QDS_NAND_defconfig
create mode 100644 configs/T4160QDS_SDCARD_defconfig
create mode 100644 configs/T4160QDS_SECURE_BOOT_defconfig
create mode 100644 configs/T4160QDS_SPIFLASH_defconfig
create mode 100644 configs/T4160QDS_defconfig
create mode 100644 configs/T4160RDB_defconfig
create mode 100644 configs/T4240EMU_defconfig
create mode 100644 configs/T4240QDS_NAND_defconfig
create mode 100644 configs/T4240QDS_SDCARD_defconfig
create mode 100644 configs/T4240QDS_SECURE_BOOT_defconfig
create mode 100644 configs/T4240QDS_SPIFLASH_defconfig
create mode 100644 configs/T4240QDS_SRIO_PCIE_BOOT_defconfig
create mode 100644 configs/T4240QDS_defconfig
create mode 100644 configs/T4240RDB_defconfig
create mode 100644 configs/TASREG_defconfig
create mode 100644 configs/TB5200_B_defconfig
create mode 100644 configs/TB5200_defconfig
create mode 100644 configs/TK885D_defconfig
create mode 100644 configs/TOP5200_defconfig
create mode 100644 configs/TOP860_defconfig
create mode 100644 configs/TQM5200S_HIGHBOOT_defconfig
create mode 100644 configs/TQM5200S_defconfig
create mode 100644 configs/TQM5200_B_HIGHBOOT_defconfig
create mode 100644 configs/TQM5200_B_defconfig
create mode 100644 configs/TQM5200_STK100_defconfig
create mode 100644 configs/TQM5200_defconfig
create mode 100644 configs/TQM823L_LCD_defconfig
create mode 100644 configs/TQM823L_defconfig
create mode 100644 configs/TQM823M_defconfig
create mode 100644 configs/TQM8255_AA_defconfig
create mode 100644 configs/TQM8260_AA_defconfig
create mode 100644 configs/TQM8260_AB_defconfig
create mode 100644 configs/TQM8260_AC_defconfig
create mode 100644 configs/TQM8260_AD_defconfig
create mode 100644 configs/TQM8260_AE_defconfig
create mode 100644 configs/TQM8260_AF_defconfig
create mode 100644 configs/TQM8260_AG_defconfig
create mode 100644 configs/TQM8260_AH_defconfig
create mode 100644 configs/TQM8260_AI_defconfig
create mode 100644 configs/TQM8265_AA_defconfig
create mode 100644 configs/TQM8272_defconfig
create mode 100644 configs/TQM834x_defconfig
create mode 100644 configs/TQM850L_defconfig
create mode 100644 configs/TQM850M_defconfig
create mode 100644 configs/TQM855L_defconfig
create mode 100644 configs/TQM855M_defconfig
create mode 100644 configs/TQM860L_defconfig
create mode 100644 configs/TQM860M_defconfig
create mode 100644 configs/TQM862L_defconfig
create mode 100644 configs/TQM862M_defconfig
create mode 100644 configs/TQM866M_defconfig
create mode 100644 configs/TQM885D_defconfig
create mode 100644 configs/TTTech_defconfig
create mode 100644 configs/TWR-P1025_defconfig
create mode 100644 configs/Total5200_Rev2_defconfig
create mode 100644 configs/Total5200_Rev2_lowboot_defconfig
create mode 100644 configs/Total5200_defconfig
create mode 100644 configs/Total5200_lowboot_defconfig
create mode 100644 configs/VCMA9_defconfig
create mode 100644 configs/VOH405_defconfig
create mode 100644 configs/VOM405_defconfig
create mode 100644 configs/VoVPN-GW_66MHz_defconfig
create mode 100644 configs/W7OLMC_defconfig
create mode 100644 configs/W7OLMG_defconfig
create mode 100644 configs/WUH405_defconfig
create mode 100644 configs/ZUMA_defconfig
create mode 100644 configs/a320evb_defconfig
create mode 100644 configs/a3m071_defconfig
create mode 100644 configs/a4m072_defconfig
create mode 100644 configs/a4m2k_defconfig
create mode 100644 configs/ac14xx_defconfig
create mode 100644 configs/acadia_defconfig
create mode 100644 configs/adp-ag101_defconfig
create mode 100644 configs/adp-ag101p_defconfig
create mode 100644 configs/adp-ag102_defconfig
create mode 100644 configs/aev_defconfig
create mode 100644 configs/afeb9260_defconfig
create mode 100644 configs/alpr_defconfig
create mode 100644 configs/am335x_boneblack_defconfig
create mode 100644 configs/am335x_boneblack_vboot_defconfig
create mode 100644 configs/am335x_evm_defconfig
create mode 100644 configs/am335x_evm_nor_defconfig
create mode 100644 configs/am335x_evm_norboot_defconfig
create mode 100644 configs/am335x_evm_spiboot_defconfig
create mode 100644 configs/am335x_evm_uart1_defconfig
create mode 100644 configs/am335x_evm_uart2_defconfig
create mode 100644 configs/am335x_evm_uart3_defconfig
create mode 100644 configs/am335x_evm_uart4_defconfig
create mode 100644 configs/am335x_evm_uart5_defconfig
create mode 100644 configs/am335x_evm_usbspl_defconfig
create mode 100644 configs/am335x_igep0033_defconfig
create mode 100644 configs/am3517_crane_defconfig
create mode 100644 configs/am3517_evm_defconfig
create mode 100644 configs/am43xx_evm_defconfig
create mode 100644 configs/am43xx_evm_qspiboot_defconfig
create mode 100644 configs/ap325rxa_defconfig
create mode 100644 configs/ap_sh4a_4a_defconfig
create mode 100644 configs/apf27_defconfig
create mode 100644 configs/apx4devkit_defconfig
create mode 100644 configs/arcangel4-be_defconfig
create mode 100644 configs/arcangel4_defconfig
create mode 100644 configs/arches_defconfig
create mode 100644 configs/aria_defconfig
create mode 100644 configs/armadillo-800eva_defconfig
create mode 100644 configs/arndale_defconfig
create mode 100644 configs/aspenite_defconfig
create mode 100644 configs/astro_mcf5373l_defconfig
create mode 100644 configs/at91rm9200ek_defconfig
create mode 100644 configs/at91rm9200ek_ram_defconfig
create mode 100644 configs/at91sam9260ek_dataflash_cs0_defconfig
create mode 100644 configs/at91sam9260ek_dataflash_cs1_defconfig
create mode 100644 configs/at91sam9260ek_nandflash_defconfig
create mode 100644 configs/at91sam9261ek_dataflash_cs0_defconfig
create mode 100644 configs/at91sam9261ek_dataflash_cs3_defconfig
create mode 100644 configs/at91sam9261ek_nandflash_defconfig
create mode 100644 configs/at91sam9263ek_dataflash_cs0_defconfig
create mode 100644 configs/at91sam9263ek_dataflash_defconfig
create mode 100644 configs/at91sam9263ek_nandflash_defconfig
create mode 100644 configs/at91sam9263ek_norflash_boot_defconfig
create mode 100644 configs/at91sam9263ek_norflash_defconfig
create mode 100644 configs/at91sam9g10ek_dataflash_cs0_defconfig
create mode 100644 configs/at91sam9g10ek_dataflash_cs3_defconfig
create mode 100644 configs/at91sam9g10ek_nandflash_defconfig
create mode 100644 configs/at91sam9g20ek_2mmc_nandflash_defconfig
create mode 100644 configs/at91sam9g20ek_dataflash_cs0_defconfig
create mode 100644 configs/at91sam9g20ek_dataflash_cs1_defconfig
create mode 100644 configs/at91sam9g20ek_mmc_defconfig
create mode 100644 configs/at91sam9g20ek_nandflash_defconfig
create mode 100644 configs/at91sam9m10g45ek_mmc_defconfig
create mode 100644 configs/at91sam9m10g45ek_nandflash_defconfig
create mode 100644 configs/at91sam9n12ek_mmc_defconfig
create mode 100644 configs/at91sam9n12ek_nandflash_defconfig
create mode 100644 configs/at91sam9n12ek_spiflash_defconfig
create mode 100644 configs/at91sam9rlek_dataflash_defconfig
create mode 100644 configs/at91sam9rlek_nandflash_defconfig
create mode 100644 configs/at91sam9x5ek_dataflash_defconfig
create mode 100644 configs/at91sam9x5ek_mmc_defconfig
create mode 100644 configs/at91sam9x5ek_nandflash_defconfig
create mode 100644 configs/at91sam9x5ek_spiflash_defconfig
create mode 100644 configs/at91sam9xeek_dataflash_cs0_defconfig
create mode 100644 configs/at91sam9xeek_dataflash_cs1_defconfig
create mode 100644 configs/at91sam9xeek_nandflash_defconfig
create mode 100644 configs/atc_defconfig
create mode 100644 configs/atngw100_defconfig
create mode 100644 configs/atngw100mkii_defconfig
create mode 100644 configs/atstk1002_defconfig
create mode 100644 configs/atstk1003_defconfig
create mode 100644 configs/atstk1004_defconfig
create mode 100644 configs/atstk1006_defconfig
create mode 100644 configs/axm_defconfig
create mode 100644 configs/axs101_defconfig
create mode 100644 configs/balloon3_defconfig
create mode 100644 configs/bamboo_defconfig
create mode 100644 configs/bcm28155_ap_defconfig
create mode 100644 configs/bct-brettl2_defconfig
create mode 100644 configs/beaver_defconfig
create mode 100644 configs/bf506f-ezkit_defconfig
create mode 100644 configs/bf518f-ezbrd_defconfig
create mode 100644 configs/bf525-ucr2_defconfig
create mode 100644 configs/bf526-ezbrd_defconfig
create mode 100644 configs/bf527-ad7160-eval_defconfig
create mode 100644 configs/bf527-ezkit-v2_defconfig
create mode 100644 configs/bf527-ezkit_defconfig
create mode 100644 configs/bf527-sdp_defconfig
create mode 100644 configs/bf533-ezkit_defconfig
create mode 100644 configs/bf533-stamp_defconfig
create mode 100644 configs/bf537-minotaur_defconfig
create mode 100644 configs/bf537-pnav_defconfig
create mode 100644 configs/bf537-srv1_defconfig
create mode 100644 configs/bf537-stamp_defconfig
create mode 100644 configs/bf538f-ezkit_defconfig
create mode 100644 configs/bf548-ezkit_defconfig
create mode 100644 configs/bf561-acvilon_defconfig
create mode 100644 configs/bf561-ezkit_defconfig
create mode 100644 configs/bf609-ezkit_defconfig
create mode 100644 configs/bg0900_defconfig
create mode 100644 configs/blackstamp_defconfig
create mode 100644 configs/blackvme_defconfig
create mode 100644 configs/bluestone_defconfig
create mode 100644 configs/br4_defconfig
create mode 100644 configs/bubinga_defconfig
create mode 100644 configs/caddy2_defconfig
create mode 100644 configs/calimain_defconfig
create mode 100644 configs/cam5200_defconfig
create mode 100644 configs/cam5200_niosflash_defconfig
create mode 100644 configs/cam_enc_4xx_defconfig
create mode 100644 configs/canmb_defconfig
create mode 100644 configs/canyonlands_defconfig
create mode 100644 configs/cardhu_defconfig
create mode 100644 configs/cgtqmx6qeval_defconfig
create mode 100644 configs/charon_defconfig
create mode 100644 configs/cm-bf527_defconfig
create mode 100644 configs/cm-bf533_defconfig
create mode 100644 configs/cm-bf537e_defconfig
create mode 100644 configs/cm-bf537u_defconfig
create mode 100644 configs/cm-bf548_defconfig
create mode 100644 configs/cm-bf561_defconfig
create mode 100644 configs/cm4008_defconfig
create mode 100644 configs/cm41xx_defconfig
create mode 100644 configs/cm5200_defconfig
create mode 100644 configs/cm_t335_defconfig
create mode 100644 configs/cm_t35_defconfig
create mode 100644 configs/cm_t54_defconfig
create mode 100644 configs/cmi_mpc5xx_defconfig
create mode 100644 configs/cobra5272_defconfig
create mode 100644 configs/cogent_mpc8260_defconfig
create mode 100644 configs/cogent_mpc8xx_defconfig
create mode 100644 configs/colibri_pxa270_defconfig
create mode 100644 configs/colibri_t20_iris_defconfig
create mode 100644 configs/controlcenterd_36BIT_SDCARD_DEVELOP_defconfig
create mode 100644 configs/controlcenterd_36BIT_SDCARD_defconfig
create mode 100644 configs/controlcenterd_TRAILBLAZER_DEVELOP_defconfig
create mode 100644 configs/controlcenterd_TRAILBLAZER_defconfig
create mode 100644 configs/coreboot-x86_defconfig
create mode 100644 configs/corvus_defconfig
create mode 100644 configs/cpci5200_defconfig
create mode 100644 configs/cpu9260_128M_defconfig
create mode 100644 configs/cpu9260_defconfig
create mode 100644 configs/cpu9260_nand_128M_defconfig
create mode 100644 configs/cpu9260_nand_defconfig
create mode 100644 configs/cpu9G20_128M_defconfig
create mode 100644 configs/cpu9G20_defconfig
create mode 100644 configs/cpu9G20_nand_128M_defconfig
create mode 100644 configs/cpu9G20_nand_defconfig
create mode 100644 configs/cpuat91_defconfig
create mode 100644 configs/cpuat91_ram_defconfig
create mode 100644 configs/csb272_defconfig
create mode 100644 configs/csb472_defconfig
create mode 100644 configs/d2net_v2_defconfig
create mode 100644 configs/da830evm_defconfig
create mode 100644 configs/da850_am18xxevm_defconfig
create mode 100644 configs/da850evm_defconfig
create mode 100644 configs/da850evm_direct_nor_defconfig
create mode 100644 configs/dalmore_defconfig
create mode 100644 configs/davinci_dm355evm_defconfig
create mode 100644 configs/davinci_dm355leopard_defconfig
create mode 100644 configs/davinci_dm365evm_defconfig
create mode 100644 configs/davinci_dm6467Tevm_defconfig
create mode 100644 configs/davinci_dm6467evm_defconfig
create mode 100644 configs/davinci_dvevm_defconfig
create mode 100644 configs/davinci_schmoogie_defconfig
create mode 100644 configs/davinci_sffsdr_defconfig
create mode 100644 configs/davinci_sonata_defconfig
create mode 100644 configs/dbau1000_defconfig
create mode 100644 configs/dbau1100_defconfig
create mode 100644 configs/dbau1500_defconfig
create mode 100644 configs/dbau1550_defconfig
create mode 100644 configs/dbau1550_el_defconfig
create mode 100644 configs/devconcenter_defconfig
create mode 100644 configs/devkit3250_defconfig
create mode 100644 configs/devkit8000_defconfig
create mode 100644 configs/dig297_defconfig
create mode 100644 configs/digsy_mtc_RAMBOOT_defconfig
create mode 100644 configs/digsy_mtc_defconfig
create mode 100644 configs/digsy_mtc_rev5_RAMBOOT_defconfig
create mode 100644 configs/digsy_mtc_rev5_defconfig
create mode 100644 configs/dkb_defconfig
create mode 100644 configs/dlvision-10g_defconfig
create mode 100644 configs/dlvision_defconfig
create mode 100644 configs/dnp5370_defconfig
create mode 100644 configs/dns325_defconfig
create mode 100644 configs/dockstar_defconfig
create mode 100644 configs/dra7xx_evm_defconfig
create mode 100644 configs/dra7xx_evm_qspiboot_defconfig
create mode 100644 configs/dra7xx_evm_uart3_defconfig
create mode 100644 configs/draco_defconfig
create mode 100644 configs/dreamplug_defconfig
create mode 100644 configs/duovero_defconfig
create mode 100644 configs/dxr2_defconfig
create mode 100644 configs/eXalion_defconfig
create mode 100644 configs/ea20_defconfig
create mode 100644 configs/eb_cpu5282_defconfig
create mode 100644 configs/eb_cpu5282_internal_defconfig
create mode 100644 configs/eb_cpux9k2_defconfig
create mode 100644 configs/eb_cpux9k2_ram_defconfig
create mode 100644 configs/ebony_defconfig
create mode 100644 configs/eco5pk_defconfig
create mode 100644 configs/ecovec_defconfig
create mode 100644 configs/edb9315a_defconfig
create mode 100644 configs/edminiv2_defconfig
create mode 100644 configs/enbw_cmc_defconfig
create mode 100644 configs/ep8260_defconfig
create mode 100644 configs/ep82xxm_defconfig
create mode 100644 configs/espt_defconfig
create mode 100644 configs/ethernut5_defconfig
create mode 100644 configs/favr-32-ezkit_defconfig
create mode 100644 configs/flea3_defconfig
create mode 100644 configs/fo300_defconfig
create mode 100644 configs/fx12mm_defconfig
create mode 100644 configs/fx12mm_flash_defconfig
create mode 100644 configs/galaxy5200_LOWBOOT_defconfig
create mode 100644 configs/galaxy5200_defconfig
create mode 100644 configs/gdppc440etx_defconfig
create mode 100644 configs/glacier_defconfig
create mode 100644 configs/goflexhome_defconfig
create mode 100644 configs/gplugd_defconfig
create mode 100644 configs/gr_cpci_ax2000_defconfig
create mode 100644 configs/gr_ep2s60_defconfig
create mode 100644 configs/gr_xc3s_1500_defconfig
create mode 100644 configs/grasshopper_defconfig
create mode 100644 configs/grsim_defconfig
create mode 100644 configs/grsim_leon2_defconfig
create mode 100644 configs/guruplug_defconfig
create mode 100644 configs/gw8260_defconfig
create mode 100644 configs/gwventana_defconfig
create mode 100644 configs/h2200_defconfig
create mode 100644 configs/haleakala_defconfig
create mode 100644 configs/hammerhead_defconfig
create mode 100644 configs/harmony_defconfig
create mode 100644 configs/hawkboard_defconfig
create mode 100644 configs/hawkboard_uart_defconfig
create mode 100644 configs/hermes_defconfig
create mode 100644 configs/highbank_defconfig
create mode 100644 configs/hmi1001_defconfig
create mode 100644 configs/hummingboard_solo_defconfig
create mode 100644 configs/hymod_defconfig
create mode 100644 configs/ib62x0_defconfig
create mode 100644 configs/ibf-dsp561_defconfig
create mode 100644 configs/icecube_5200_DDR_LOWBOOT08_defconfig
create mode 100644 configs/icecube_5200_DDR_LOWBOOT_defconfig
create mode 100644 configs/icecube_5200_DDR_defconfig
create mode 100644 configs/icecube_5200_LOWBOOT08_defconfig
create mode 100644 configs/icecube_5200_LOWBOOT_defconfig
create mode 100644 configs/icecube_5200_defconfig
create mode 100644 configs/icon_defconfig
create mode 100644 configs/iconnect_defconfig
create mode 100644 configs/ids8313_defconfig
create mode 100644 configs/igep0020_defconfig
create mode 100644 configs/igep0020_nand_defconfig
create mode 100644 configs/igep0030_defconfig
create mode 100644 configs/igep0030_nand_defconfig
create mode 100644 configs/igep0032_defconfig
create mode 100644 configs/ima3-mx53_defconfig
create mode 100644 configs/imx27lite_defconfig
create mode 100644 configs/imx31_litekit_defconfig
create mode 100644 configs/imx31_phycore_defconfig
create mode 100644 configs/imx31_phycore_eet_defconfig
create mode 100644 configs/inetspace_v2_defconfig
create mode 100644 configs/inka4x0_defconfig
create mode 100644 configs/integratorap_cm720t_defconfig
create mode 100644 configs/integratorap_cm920t_defconfig
create mode 100644 configs/integratorap_cm926ejs_defconfig
create mode 100644 configs/integratorap_cm946es_defconfig
create mode 100644 configs/integratorcp_cm1136_defconfig
create mode 100644 configs/integratorcp_cm920t_defconfig
create mode 100644 configs/integratorcp_cm926ejs_defconfig
create mode 100644 configs/integratorcp_cm946es_defconfig
create mode 100644 configs/intip_defconfig
create mode 100644 configs/io64_defconfig
create mode 100644 configs/io_defconfig
create mode 100644 configs/iocon_defconfig
create mode 100644 configs/ip04_defconfig
create mode 100644 configs/ipam390_defconfig
create mode 100644 configs/ipek01_defconfig
create mode 100644 configs/jadecpu_defconfig
create mode 100644 configs/jetson-tk1_defconfig
create mode 100644 configs/jornada_defconfig
create mode 100644 configs/jupiter_defconfig
create mode 100644 configs/k2hk_evm_defconfig
create mode 100644 configs/katmai_defconfig
create mode 100644 configs/kilauea_defconfig
create mode 100644 configs/km_kirkwood_128m16_defconfig
create mode 100644 configs/km_kirkwood_defconfig
create mode 100644 configs/km_kirkwood_pci_defconfig
create mode 100644 configs/kmcoge4_defconfig
create mode 100644 configs/kmcoge5ne_defconfig
create mode 100644 configs/kmcoge5un_defconfig
create mode 100644 configs/kmeter1_defconfig
create mode 100644 configs/kmlion1_defconfig
create mode 100644 configs/kmnusa_defconfig
create mode 100644 configs/kmopti2_defconfig
create mode 100644 configs/kmsugp1_defconfig
create mode 100644 configs/kmsupx5_defconfig
create mode 100644 configs/kmsuv31_defconfig
create mode 100644 configs/kmvect1_defconfig
create mode 100644 configs/koelsch_defconfig
create mode 100644 configs/korat_defconfig
create mode 100644 configs/korat_perm_defconfig
create mode 100644 configs/kwb_defconfig
create mode 100644 configs/kzm9g_defconfig
create mode 100644 configs/lager_defconfig
create mode 100644 configs/lcd4_lwmon5_defconfig
create mode 100644 configs/lite5200b_LOWBOOT_defconfig
create mode 100644 configs/lite5200b_PM_defconfig
create mode 100644 configs/lite5200b_defconfig
create mode 100644 configs/lp8x4x_defconfig
create mode 100644 configs/ls2085a_emu_D4_defconfig
create mode 100644 configs/ls2085a_emu_defconfig
create mode 100644 configs/ls2085a_simu_defconfig
create mode 100644 configs/lschlv2_defconfig
create mode 100644 configs/lsxhl_defconfig
create mode 100644 configs/luan_defconfig
create mode 100644 configs/lwmon5_defconfig
create mode 100644 configs/lwmon_defconfig
create mode 100644 configs/m28evk_defconfig
create mode 100644 configs/m53evk_defconfig
create mode 100644 configs/magnesium_defconfig
create mode 100644 configs/makalu_defconfig
create mode 100644 configs/malta_defconfig
create mode 100644 configs/maltael_defconfig
create mode 100644 configs/marsboard_defconfig
create mode 100644 configs/mcc200_COM12_SDRAM_defconfig
create mode 100644 configs/mcc200_COM12_defconfig
create mode 100644 configs/mcc200_COM12_highboot_SDRAM_defconfig
create mode 100644 configs/mcc200_COM12_highboot_defconfig
create mode 100644 configs/mcc200_SDRAM_defconfig
create mode 100644 configs/mcc200_defconfig
create mode 100644 configs/mcc200_highboot_SDRAM_defconfig
create mode 100644 configs/mcc200_highboot_defconfig
create mode 100644 configs/mcx_defconfig
create mode 100644 configs/mecp5123_defconfig
create mode 100644 configs/mecp5200_defconfig
create mode 100644 configs/medcom-wide_defconfig
create mode 100644 configs/meesc_dataflash_defconfig
create mode 100644 configs/meesc_defconfig
create mode 100644 configs/mgcoge3ne_defconfig
create mode 100644 configs/mgcoge3un_defconfig
create mode 100644 configs/mgcoge_defconfig
create mode 100644 configs/microblaze-generic_defconfig
create mode 100644 configs/mimc200_defconfig
create mode 100644 configs/ml507_defconfig
create mode 100644 configs/ml507_flash_defconfig
create mode 100644 configs/motionpro_defconfig
create mode 100644 configs/mpc5121ads_defconfig
create mode 100644 configs/mpc5121ads_rev2_defconfig
create mode 100644 configs/mpc7448hpc2_defconfig
create mode 100644 configs/mpc8308_p1m_defconfig
create mode 100644 configs/mpr2_defconfig
create mode 100644 configs/ms7720se_defconfig
create mode 100644 configs/ms7722se_defconfig
create mode 100644 configs/ms7750se_defconfig
create mode 100644 configs/mt_ventoux_defconfig
create mode 100644 configs/muas3001_defconfig
create mode 100644 configs/muas3001_dev_defconfig
create mode 100644 configs/mucmc52_defconfig
create mode 100644 configs/munices_defconfig
create mode 100644 configs/mv88f6281gtw_ge_defconfig
create mode 100644 configs/mx23_olinuxino_defconfig
create mode 100644 configs/mx23evk_defconfig
create mode 100644 configs/mx25pdk_defconfig
create mode 100644 configs/mx28evk_auart_console_defconfig
create mode 100644 configs/mx28evk_defconfig
create mode 100644 configs/mx28evk_nand_defconfig
create mode 100644 configs/mx28evk_spi_defconfig
create mode 100644 configs/mx31ads_defconfig
create mode 100644 configs/mx31pdk_defconfig
create mode 100644 configs/mx35pdk_defconfig
create mode 100644 configs/mx51_efikamx_defconfig
create mode 100644 configs/mx51_efikasb_defconfig
create mode 100644 configs/mx51evk_defconfig
create mode 100644 configs/mx53ard_defconfig
create mode 100644 configs/mx53evk_defconfig
create mode 100644 configs/mx53loco_defconfig
create mode 100644 configs/mx53smd_defconfig
create mode 100644 configs/mx6dlsabreauto_defconfig
create mode 100644 configs/mx6dlsabresd_defconfig
create mode 100644 configs/mx6qarm2_defconfig
create mode 100644 configs/mx6qsabreauto_defconfig
create mode 100644 configs/mx6qsabrelite_defconfig
create mode 100644 configs/mx6qsabresd_defconfig
create mode 100644 configs/mx6slevk_defconfig
create mode 100644 configs/neo_defconfig
create mode 100644 configs/net2big_v2_defconfig
create mode 100644 configs/netspace_lite_v2_defconfig
create mode 100644 configs/netspace_max_v2_defconfig
create mode 100644 configs/netspace_mini_v2_defconfig
create mode 100644 configs/netspace_v2_defconfig
create mode 100644 configs/nhk8815_defconfig
create mode 100644 configs/nhk8815_onenand_defconfig
create mode 100644 configs/nios2-generic_defconfig
create mode 100644 configs/nitrogen6dl2g_defconfig
create mode 100644 configs/nitrogen6dl_defconfig
create mode 100644 configs/nitrogen6q2g_defconfig
create mode 100644 configs/nitrogen6q_defconfig
create mode 100644 configs/nitrogen6s1g_defconfig
create mode 100644 configs/nitrogen6s_defconfig
create mode 100644 configs/nokia_rx51_defconfig
create mode 100644 configs/ocotea_defconfig
create mode 100644 configs/omap3_beagle_defconfig
create mode 100644 configs/omap3_evm_defconfig
create mode 100644 configs/omap3_evm_quick_mmc_defconfig
create mode 100644 configs/omap3_evm_quick_nand_defconfig
create mode 100644 configs/omap3_ha_defconfig
create mode 100644 configs/omap3_logic_defconfig
create mode 100644 configs/omap3_mvblx_defconfig
create mode 100644 configs/omap3_overo_defconfig
create mode 100644 configs/omap3_pandora_defconfig
create mode 100644 configs/omap3_sdp3430_defconfig
create mode 100644 configs/omap3_zoom1_defconfig
create mode 100644 configs/omap4_panda_defconfig
create mode 100644 configs/omap4_sdp4430_defconfig
create mode 100644 configs/omap5912osk_defconfig
create mode 100644 configs/omap5_uevm_defconfig
create mode 100644 configs/openrd_base_defconfig
create mode 100644 configs/openrd_client_defconfig
create mode 100644 configs/openrd_ultimate_defconfig
create mode 100644 configs/openrisc-generic_defconfig
create mode 100644 configs/origen_defconfig
create mode 100644 configs/otc570_dataflash_defconfig
create mode 100644 configs/otc570_defconfig
create mode 100644 configs/p3m7448_defconfig
create mode 100644 configs/p3m750_defconfig
create mode 100644 configs/p3p440_defconfig
create mode 100644 configs/palmld_defconfig
create mode 100644 configs/palmtc_defconfig
create mode 100644 configs/palmtreo680_defconfig
create mode 100644 configs/paz00_defconfig
create mode 100644 configs/pb1000_defconfig
create mode 100644 configs/pcm030_LOWBOOT_defconfig
create mode 100644 configs/pcm030_defconfig
create mode 100644 configs/pcm051_rev1_defconfig
create mode 100644 configs/pcm051_rev3_defconfig
create mode 100644 configs/pcs440ep_defconfig
create mode 100644 configs/pdm360ng_defconfig
create mode 100644 configs/peach-pit_defconfig
create mode 100644 configs/pengwyn_defconfig
create mode 100644 configs/pepper_defconfig
create mode 100644 configs/pf5200_defconfig
create mode 100644 configs/plutux_defconfig
create mode 100644 configs/pm9261_defconfig
create mode 100644 configs/pm9263_defconfig
create mode 100644 configs/pm9g45_defconfig
create mode 100644 configs/pogo_e02_defconfig
create mode 100644 configs/polaris_defconfig
create mode 100644 configs/portl2_defconfig
create mode 100644 configs/portuxg20_defconfig
create mode 100644 configs/ppmc7xx_defconfig
create mode 100644 configs/ppmc8260_defconfig
create mode 100644 configs/pr1_defconfig
create mode 100644 configs/prs200_DDR_defconfig
create mode 100644 configs/prs200_defconfig
create mode 100644 configs/prs200_highboot_DDR_defconfig
create mode 100644 configs/prs200_highboot_defconfig
create mode 100644 configs/pxa255_idp_defconfig
create mode 100644 configs/pxm2_defconfig
create mode 100644 configs/qemu-ppce500_defconfig
create mode 100644 configs/qemu_mips64_defconfig
create mode 100644 configs/qemu_mips64el_defconfig
create mode 100644 configs/qemu_mips_defconfig
create mode 100644 configs/qemu_mipsel_defconfig
create mode 100644 configs/qong_defconfig
create mode 100644 configs/r0p7734_defconfig
create mode 100644 configs/r2dplus_defconfig
create mode 100644 configs/r7780mp_defconfig
create mode 100644 configs/rainier_defconfig
create mode 100644 configs/rainier_ramboot_defconfig
create mode 100644 configs/rd6281a_defconfig
create mode 100644 configs/redwood_defconfig
create mode 100644 configs/riotboard_defconfig
create mode 100644 configs/rpi_b_defconfig
create mode 100644 configs/rsk7203_defconfig
create mode 100644 configs/rsk7264_defconfig
create mode 100644 configs/rsk7269_defconfig
create mode 100644 configs/rut_defconfig
create mode 100644 configs/s5p_goni_defconfig
create mode 100644 configs/s5pc210_universal_defconfig
create mode 100644 configs/sacsng_defconfig
create mode 100644 configs/sama5d3_xplained_mmc_defconfig
create mode 100644 configs/sama5d3_xplained_nandflash_defconfig
create mode 100644 configs/sama5d3xek_mmc_defconfig
create mode 100644 configs/sama5d3xek_nandflash_defconfig
create mode 100644 configs/sama5d3xek_spiflash_defconfig
create mode 100644 configs/sandbox_defconfig
create mode 100644 configs/sansa_fuze_plus_defconfig
create mode 100644 configs/sbc35_a9g20_eeprom_defconfig
create mode 100644 configs/sbc35_a9g20_nandflash_defconfig
create mode 100644 configs/sbc405_defconfig
create mode 100644 configs/sbc8349_PCI_33_defconfig
create mode 100644 configs/sbc8349_PCI_66_defconfig
create mode 100644 configs/sbc8349_defconfig
create mode 100644 configs/sbc8548_PCI_33_PCIE_defconfig
create mode 100644 configs/sbc8548_PCI_33_defconfig
create mode 100644 configs/sbc8548_PCI_66_PCIE_defconfig
create mode 100644 configs/sbc8548_PCI_66_defconfig
create mode 100644 configs/sbc8548_defconfig
create mode 100644 configs/sbc8641d_defconfig
create mode 100644 configs/sc3_defconfig
create mode 100644 configs/sc_sps_1_defconfig
create mode 100644 configs/scb9328_defconfig
create mode 100644 configs/seaboard_defconfig
create mode 100644 configs/sequoia_defconfig
create mode 100644 configs/sequoia_ramboot_defconfig
create mode 100644 configs/sh7752evb_defconfig
create mode 100644 configs/sh7753evb_defconfig
create mode 100644 configs/sh7757lcr_defconfig
create mode 100644 configs/sh7763rdp_defconfig
create mode 100644 configs/sh7785lcr_32bit_defconfig
create mode 100644 configs/sh7785lcr_defconfig
create mode 100644 configs/sheevaplug_defconfig
create mode 100644 configs/shmin_defconfig
create mode 100644 configs/smdk2410_defconfig
create mode 100644 configs/smdk5250_defconfig
create mode 100644 configs/smdk5420_defconfig
create mode 100644 configs/smdkc100_defconfig
create mode 100644 configs/smdkv310_defconfig
create mode 100644 configs/snapper9260_defconfig
create mode 100644 configs/snapper9g20_defconfig
create mode 100644 configs/snow_defconfig
create mode 100644 configs/snowball_defconfig
create mode 100644 configs/socfpga_cyclone5_defconfig
create mode 100644 configs/socrates_defconfig
create mode 100644 configs/spear300_defconfig
create mode 100644 configs/spear300_nand_defconfig
create mode 100644 configs/spear300_usbtty_defconfig
create mode 100644 configs/spear300_usbtty_nand_defconfig
create mode 100644 configs/spear310_defconfig
create mode 100644 configs/spear310_nand_defconfig
create mode 100644 configs/spear310_pnor_defconfig
create mode 100644 configs/spear310_usbtty_defconfig
create mode 100644 configs/spear310_usbtty_nand_defconfig
create mode 100644 configs/spear310_usbtty_pnor_defconfig
create mode 100644 configs/spear320_defconfig
create mode 100644 configs/spear320_nand_defconfig
create mode 100644 configs/spear320_pnor_defconfig
create mode 100644 configs/spear320_usbtty_defconfig
create mode 100644 configs/spear320_usbtty_nand_defconfig
create mode 100644 configs/spear320_usbtty_pnor_defconfig
create mode 100644 configs/spear600_defconfig
create mode 100644 configs/spear600_nand_defconfig
create mode 100644 configs/spear600_usbtty_defconfig
create mode 100644 configs/spear600_usbtty_nand_defconfig
create mode 100644 configs/stamp9g20_defconfig
create mode 100644 configs/stxgp3_defconfig
create mode 100644 configs/stxssa_4M_defconfig
create mode 100644 configs/stxssa_defconfig
create mode 100644 configs/stxxtc_defconfig
create mode 100644 configs/suvd3_defconfig
create mode 100644 configs/svm_sc8xx_defconfig
create mode 100644 configs/sycamore_defconfig
create mode 100644 configs/t3corp_defconfig
create mode 100644 configs/taihu_defconfig
create mode 100644 configs/taishan_defconfig
create mode 100644 configs/tao3530_defconfig
create mode 100644 configs/taurus_defconfig
create mode 100644 configs/tb100_defconfig
create mode 100644 configs/tcm-bf518_defconfig
create mode 100644 configs/tcm-bf537_defconfig
create mode 100644 configs/tec-ng_defconfig
create mode 100644 configs/tec_defconfig
create mode 100644 configs/ti814x_evm_defconfig
create mode 100644 configs/ti816x_evm_defconfig
create mode 100644 configs/titanium_defconfig
create mode 100644 configs/tk71_defconfig
create mode 100644 configs/tnetv107x_evm_defconfig
create mode 100644 configs/tny_a9260_eeprom_defconfig
create mode 100644 configs/tny_a9260_nandflash_defconfig
create mode 100644 configs/tny_a9g20_eeprom_defconfig
create mode 100644 configs/tny_a9g20_nandflash_defconfig
create mode 100644 configs/top9000eval_xe_defconfig
create mode 100644 configs/top9000su_xe_defconfig
create mode 100644 configs/trats2_defconfig
create mode 100644 configs/trats_defconfig
create mode 100644 configs/tricorder_defconfig
create mode 100644 configs/tricorder_flash_defconfig
create mode 100644 configs/trimslice_defconfig
create mode 100644 configs/trizepsiv_defconfig
create mode 100644 configs/tseries_mmc_defconfig
create mode 100644 configs/tseries_nand_defconfig
create mode 100644 configs/tseries_spi_defconfig
create mode 100644 configs/tt01_defconfig
create mode 100644 configs/tuge1_defconfig
create mode 100644 configs/tuxx1_defconfig
create mode 100644 configs/twister_defconfig
create mode 100644 configs/tx25_defconfig
create mode 100644 configs/u8500_href_defconfig
create mode 100644 configs/uc100_defconfig
create mode 100644 configs/uc101_defconfig
create mode 100644 configs/udoo_quad_defconfig
create mode 100644 configs/usb_a9263_dataflash_defconfig
create mode 100644 configs/utx8245_defconfig
create mode 100644 configs/v38b_defconfig
create mode 100644 configs/v5fx30teval_defconfig
create mode 100644 configs/v5fx30teval_flash_defconfig
create mode 100644 configs/vct_platinum_defconfig
create mode 100644 configs/vct_platinum_onenand_defconfig
create mode 100644 configs/vct_platinum_onenand_small_defconfig
create mode 100644 configs/vct_platinum_small_defconfig
create mode 100644 configs/vct_platinumavc_defconfig
create mode 100644 configs/vct_platinumavc_onenand_defconfig
create mode 100644 configs/vct_platinumavc_onenand_small_defconfig
create mode 100644 configs/vct_platinumavc_small_defconfig
create mode 100644 configs/vct_premium_defconfig
create mode 100644 configs/vct_premium_onenand_defconfig
create mode 100644 configs/vct_premium_onenand_small_defconfig
create mode 100644 configs/vct_premium_small_defconfig
create mode 100644 configs/ve8313_defconfig
create mode 100644 configs/venice2_defconfig
create mode 100644 configs/ventana_defconfig
create mode 100644 configs/versatileab_defconfig
create mode 100644 configs/versatilepb_defconfig
create mode 100644 configs/versatileqemu_defconfig
create mode 100644 configs/vexpress_aemv8a_defconfig
create mode 100644 configs/vexpress_aemv8a_semi_defconfig
create mode 100644 configs/vexpress_ca15_tc2_defconfig
create mode 100644 configs/vexpress_ca5x2_defconfig
create mode 100644 configs/vexpress_ca9x4_defconfig
create mode 100644 configs/vf610twr_defconfig
create mode 100644 configs/virtlab2_defconfig
create mode 100644 configs/vision2_defconfig
create mode 100644 configs/vl_ma2sc_defconfig
create mode 100644 configs/vl_ma2sc_ram_defconfig
create mode 100644 configs/vme8349_defconfig
create mode 100644 configs/vpac270_nor_128_defconfig
create mode 100644 configs/vpac270_nor_256_defconfig
create mode 100644 configs/vpac270_ond_256_defconfig
create mode 100644 configs/walnut_defconfig
create mode 100644 configs/wandboard_dl_defconfig
create mode 100644 configs/wandboard_quad_defconfig
create mode 100644 configs/wandboard_solo_defconfig
create mode 100644 configs/whistler_defconfig
create mode 100644 configs/wireless_space_defconfig
create mode 100644 configs/woodburn_defconfig
create mode 100644 configs/woodburn_sd_defconfig
create mode 100644 configs/wtk_defconfig
create mode 100644 configs/x600_defconfig
create mode 100644 configs/xaeniax_defconfig
create mode 100644 configs/xfi3_defconfig
create mode 100644 configs/xilinx-ppc405-generic_defconfig
create mode 100644 configs/xilinx-ppc405-generic_flash_defconfig
create mode 100644 configs/xilinx-ppc440-generic_defconfig
create mode 100644 configs/xilinx-ppc440-generic_flash_defconfig
create mode 100644 configs/xpedite1000_defconfig
create mode 100644 configs/xpedite517x_defconfig
create mode 100644 configs/xpedite520x_defconfig
create mode 100644 configs/xpedite537x_defconfig
create mode 100644 configs/xpedite550x_defconfig
create mode 100644 configs/yellowstone_defconfig
create mode 100644 configs/yosemite_defconfig
create mode 100644 configs/yucca_defconfig
create mode 100644 configs/zeus_defconfig
create mode 100644 configs/zipitz2_defconfig
create mode 100644 configs/zmx25_defconfig
create mode 100644 configs/zynq_microzed_defconfig
create mode 100644 configs/zynq_zc70x_defconfig
create mode 100644 configs/zynq_zc770_xm010_defconfig
create mode 100644 configs/zynq_zc770_xm012_defconfig
create mode 100644 configs/zynq_zc770_xm013_defconfig
create mode 100644 configs/zynq_zed_defconfig
create mode 100644 include/linux/kconfig.h
delete mode 100755 mkconfig
create mode 100644 scripts/Makefile.autoconf
create mode 100644 scripts/kconfig/.gitignore
create mode 100644 scripts/kconfig/Makefile
create mode 100644 scripts/kconfig/POTFILES.in
create mode 100755 scripts/kconfig/check.sh
create mode 100644 scripts/kconfig/conf.c
create mode 100644 scripts/kconfig/confdata.c
create mode 100644 scripts/kconfig/expr.c
create mode 100644 scripts/kconfig/expr.h
create mode 100644 scripts/kconfig/gconf.c
create mode 100644 scripts/kconfig/gconf.glade
create mode 100644 scripts/kconfig/images.c
create mode 100644 scripts/kconfig/kxgettext.c
create mode 100644 scripts/kconfig/list.h
create mode 100644 scripts/kconfig/lkc.h
create mode 100644 scripts/kconfig/lkc_proto.h
create mode 100644 scripts/kconfig/lxdialog/.gitignore
create mode 100644 scripts/kconfig/lxdialog/BIG.FAT.WARNING
create mode 100644 scripts/kconfig/lxdialog/check-lxdialog.sh
create mode 100644 scripts/kconfig/lxdialog/checklist.c
create mode 100644 scripts/kconfig/lxdialog/dialog.h
create mode 100644 scripts/kconfig/lxdialog/inputbox.c
create mode 100644 scripts/kconfig/lxdialog/menubox.c
create mode 100644 scripts/kconfig/lxdialog/textbox.c
create mode 100644 scripts/kconfig/lxdialog/util.c
create mode 100644 scripts/kconfig/lxdialog/yesno.c
create mode 100644 scripts/kconfig/mconf.c
create mode 100644 scripts/kconfig/menu.c
create mode 100755 scripts/kconfig/merge_config.sh
create mode 100644 scripts/kconfig/nconf.c
create mode 100644 scripts/kconfig/nconf.gui.c
create mode 100644 scripts/kconfig/nconf.h
create mode 100644 scripts/kconfig/qconf.cc
create mode 100644 scripts/kconfig/qconf.h
create mode 100644 scripts/kconfig/streamline_config.pl
create mode 100644 scripts/kconfig/symbol.c
create mode 100644 scripts/kconfig/util.c
create mode 100644 scripts/kconfig/zconf.gperf
create mode 100644 scripts/kconfig/zconf.hash.c_shipped
create mode 100644 scripts/kconfig/zconf.l
create mode 100644 scripts/kconfig/zconf.lex.c_shipped
create mode 100644 scripts/kconfig/zconf.tab.c_shipped
create mode 100644 scripts/kconfig/zconf.y
create mode 100755 scripts/multiconfig.py
create mode 100755 tools/gen_maintainers.py
create mode 100755 tools/genboardscfg.py
create mode 100755 tools/genkconfig
create mode 100755 tools/print_allconfigs
--
1.9.1
3
20
Hey all,
So the release is out, and I want to make sure that some of these big
changes get as much testing as we can.
Simon, can you please make up a pull request with what you think is
ready to go now?
Masahiro and Jeroen, can you please make sure patchwork is up to date
and perhaps setup a bundle with your changes that are ready (and for
clang, not ARM centric, I want Albert to pick those up when he's ready,
I'll review/comment tho).
Thanks!
--
Tom
7
10