diff options
Diffstat (limited to 'roms/u-boot/board/aspeed')
-rw-r--r-- | roms/u-boot/board/aspeed/evb_ast2500/Kconfig | 12 | ||||
-rw-r--r-- | roms/u-boot/board/aspeed/evb_ast2500/MAINTAINERS | 6 | ||||
-rw-r--r-- | roms/u-boot/board/aspeed/evb_ast2500/Makefile | 1 | ||||
-rw-r--r-- | roms/u-boot/board/aspeed/evb_ast2500/evb_ast2500.c | 5 | ||||
-rw-r--r-- | roms/u-boot/board/aspeed/evb_ast2600/Kconfig | 12 | ||||
-rw-r--r-- | roms/u-boot/board/aspeed/evb_ast2600/MAINTAINERS | 6 | ||||
-rw-r--r-- | roms/u-boot/board/aspeed/evb_ast2600/Makefile | 1 | ||||
-rw-r--r-- | roms/u-boot/board/aspeed/evb_ast2600/evb_ast2600.c | 5 |
8 files changed, 48 insertions, 0 deletions
diff --git a/roms/u-boot/board/aspeed/evb_ast2500/Kconfig b/roms/u-boot/board/aspeed/evb_ast2500/Kconfig new file mode 100644 index 000000000..73a8ae85f --- /dev/null +++ b/roms/u-boot/board/aspeed/evb_ast2500/Kconfig @@ -0,0 +1,12 @@ +if TARGET_EVB_AST2500 + +config SYS_BOARD + default "evb_ast2500" + +config SYS_VENDOR + default "aspeed" + +config SYS_CONFIG_NAME + default "evb_ast2500" + +endif diff --git a/roms/u-boot/board/aspeed/evb_ast2500/MAINTAINERS b/roms/u-boot/board/aspeed/evb_ast2500/MAINTAINERS new file mode 100644 index 000000000..7c3c2b5e0 --- /dev/null +++ b/roms/u-boot/board/aspeed/evb_ast2500/MAINTAINERS @@ -0,0 +1,6 @@ +EVB AST2500 BOARD +M: Maxim Sloyko <maxims@google.com> +S: Maintained +F: board/aspeed/evb_ast2500/ +F: include/configs/evb_ast2500.h +F: configs/evb-ast2500_defconfig diff --git a/roms/u-boot/board/aspeed/evb_ast2500/Makefile b/roms/u-boot/board/aspeed/evb_ast2500/Makefile new file mode 100644 index 000000000..456409829 --- /dev/null +++ b/roms/u-boot/board/aspeed/evb_ast2500/Makefile @@ -0,0 +1 @@ +obj-y += evb_ast2500.o diff --git a/roms/u-boot/board/aspeed/evb_ast2500/evb_ast2500.c b/roms/u-boot/board/aspeed/evb_ast2500/evb_ast2500.c new file mode 100644 index 000000000..ed162c409 --- /dev/null +++ b/roms/u-boot/board/aspeed/evb_ast2500/evb_ast2500.c @@ -0,0 +1,5 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (c) 2016 Google, Inc + */ +#include <common.h> diff --git a/roms/u-boot/board/aspeed/evb_ast2600/Kconfig b/roms/u-boot/board/aspeed/evb_ast2600/Kconfig new file mode 100644 index 000000000..42008cd03 --- /dev/null +++ b/roms/u-boot/board/aspeed/evb_ast2600/Kconfig @@ -0,0 +1,12 @@ +if TARGET_EVB_AST2600 + +config SYS_BOARD + default "evb_ast2600" + +config SYS_VENDOR + default "aspeed" + +config SYS_CONFIG_NAME + default "evb_ast2600" + +endif diff --git a/roms/u-boot/board/aspeed/evb_ast2600/MAINTAINERS b/roms/u-boot/board/aspeed/evb_ast2600/MAINTAINERS new file mode 100644 index 000000000..e83aae5d6 --- /dev/null +++ b/roms/u-boot/board/aspeed/evb_ast2600/MAINTAINERS @@ -0,0 +1,6 @@ +EVB AST2600 BOARD +M: Chia-Wei, Wang <chiawei_wang@aspeedtech.com> +S: Maintained +F: board/aspeed/evb_ast2600/ +F: include/configs/evb_ast2600.h +F: configs/evb-ast2600_defconfig diff --git a/roms/u-boot/board/aspeed/evb_ast2600/Makefile b/roms/u-boot/board/aspeed/evb_ast2600/Makefile new file mode 100644 index 000000000..9291db6ee --- /dev/null +++ b/roms/u-boot/board/aspeed/evb_ast2600/Makefile @@ -0,0 +1 @@ +obj-y += evb_ast2600.o diff --git a/roms/u-boot/board/aspeed/evb_ast2600/evb_ast2600.c b/roms/u-boot/board/aspeed/evb_ast2600/evb_ast2600.c new file mode 100644 index 000000000..e6dc8c795 --- /dev/null +++ b/roms/u-boot/board/aspeed/evb_ast2600/evb_ast2600.c @@ -0,0 +1,5 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (c) Aspeed Technology Inc. + */ +#include <common.h> |