aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/board/aspeed/evb_ast2600
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/board/aspeed/evb_ast2600')
-rw-r--r--roms/u-boot/board/aspeed/evb_ast2600/Kconfig12
-rw-r--r--roms/u-boot/board/aspeed/evb_ast2600/MAINTAINERS6
-rw-r--r--roms/u-boot/board/aspeed/evb_ast2600/Makefile1
-rw-r--r--roms/u-boot/board/aspeed/evb_ast2600/evb_ast2600.c5
4 files changed, 24 insertions, 0 deletions
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>