diff options
author | Stefano Babic <sbabic@denx.de> | 2014-08-11 10:21:03 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-08-11 10:21:03 +0200 |
commit | e82abaeb7f2a0833fccf90460c48b9f2100258f8 (patch) | |
tree | de701f5c90b7373966412d566b5c00d3837954bc /board/synopsys | |
parent | f93f21906e374d46c6abfbdf4eb9cb1ab51b6384 (diff) | |
parent | 1899fac925eda817e12234aef3d01d354788662e (diff) | |
download | u-boot-imx-e82abaeb7f2a0833fccf90460c48b9f2100258f8.zip u-boot-imx-e82abaeb7f2a0833fccf90460c48b9f2100258f8.tar.gz u-boot-imx-e82abaeb7f2a0833fccf90460c48b9f2100258f8.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Conflicts:
boards.cfg
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board/synopsys')
-rw-r--r-- | board/synopsys/Kconfig | 31 | ||||
-rw-r--r-- | board/synopsys/MAINTAINERS | 7 | ||||
-rw-r--r-- | board/synopsys/axs101/Kconfig | 19 | ||||
-rw-r--r-- | board/synopsys/axs101/MAINTAINERS | 6 |
4 files changed, 63 insertions, 0 deletions
diff --git a/board/synopsys/Kconfig b/board/synopsys/Kconfig new file mode 100644 index 0000000..22034c1 --- /dev/null +++ b/board/synopsys/Kconfig @@ -0,0 +1,31 @@ +if TARGET_ARCANGEL4 + +config SYS_CPU + string + default "arc700" + +config SYS_VENDOR + string + default "synopsys" + +config SYS_CONFIG_NAME + string + default "arcangel4" + +endif + +if TARGET_ARCANGEL4_BE + +config SYS_CPU + string + default "arc700" + +config SYS_VENDOR + string + default "synopsys" + +config SYS_CONFIG_NAME + string + default "arcangel4-be" + +endif diff --git a/board/synopsys/MAINTAINERS b/board/synopsys/MAINTAINERS new file mode 100644 index 0000000..720edd8 --- /dev/null +++ b/board/synopsys/MAINTAINERS @@ -0,0 +1,7 @@ +- BOARD +M: Alexey Brodkin <abrodkin@synopsys.com> +S: Maintained +F: include/configs/arcangel4.h +F: configs/arcangel4_defconfig +F: include/configs/arcangel4-be.h +F: configs/arcangel4-be_defconfig diff --git a/board/synopsys/axs101/Kconfig b/board/synopsys/axs101/Kconfig new file mode 100644 index 0000000..535b8eb --- /dev/null +++ b/board/synopsys/axs101/Kconfig @@ -0,0 +1,19 @@ +if TARGET_AXS101 + +config SYS_CPU + string + default "arc700" + +config SYS_BOARD + string + default "axs101" + +config SYS_VENDOR + string + default "synopsys" + +config SYS_CONFIG_NAME + string + default "axs101" + +endif diff --git a/board/synopsys/axs101/MAINTAINERS b/board/synopsys/axs101/MAINTAINERS new file mode 100644 index 0000000..481bbcc --- /dev/null +++ b/board/synopsys/axs101/MAINTAINERS @@ -0,0 +1,6 @@ +AXS101 BOARD +M: Alexey Brodkin <abrodkin@synopsys.com> +S: Maintained +F: board/synopsys/axs101/ +F: include/configs/axs101.h +F: configs/axs101_defconfig |