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