aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/board/radxa
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/board/radxa')
-rw-r--r--roms/u-boot/board/radxa/rock/Kconfig15
-rw-r--r--roms/u-boot/board/radxa/rock/MAINTAINERS6
-rw-r--r--roms/u-boot/board/radxa/rock/Makefile7
-rw-r--r--roms/u-boot/board/radxa/rock/rock.c6
-rw-r--r--roms/u-boot/board/radxa/rock2/Kconfig15
-rw-r--r--roms/u-boot/board/radxa/rock2/MAINTAINERS6
-rw-r--r--roms/u-boot/board/radxa/rock2/Makefile7
-rw-r--r--roms/u-boot/board/radxa/rock2/rock2.c6
8 files changed, 68 insertions, 0 deletions
diff --git a/roms/u-boot/board/radxa/rock/Kconfig b/roms/u-boot/board/radxa/rock/Kconfig
new file mode 100644
index 000000000..855b9b695
--- /dev/null
+++ b/roms/u-boot/board/radxa/rock/Kconfig
@@ -0,0 +1,15 @@
+if TARGET_ROCK
+
+config SYS_BOARD
+ default "rock"
+
+config SYS_VENDOR
+ default "radxa"
+
+config SYS_CONFIG_NAME
+ default "rock"
+
+config BOARD_SPECIFIC_OPTIONS # dummy
+ def_bool y
+
+endif
diff --git a/roms/u-boot/board/radxa/rock/MAINTAINERS b/roms/u-boot/board/radxa/rock/MAINTAINERS
new file mode 100644
index 000000000..c5f59c0a6
--- /dev/null
+++ b/roms/u-boot/board/radxa/rock/MAINTAINERS
@@ -0,0 +1,6 @@
+RADXA_ROCK
+M: Heiko Stuebner <heiko@sntech.de>
+S: Maintained
+F: board/radxa/rock
+F: include/configs/rock.h
+F: configs/rock_defconfig
diff --git a/roms/u-boot/board/radxa/rock/Makefile b/roms/u-boot/board/radxa/rock/Makefile
new file mode 100644
index 000000000..fe94b60c3
--- /dev/null
+++ b/roms/u-boot/board/radxa/rock/Makefile
@@ -0,0 +1,7 @@
+#
+# (C) Copyright 2015 Heiko Stuebner
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+
+obj-y += rock.o
diff --git a/roms/u-boot/board/radxa/rock/rock.c b/roms/u-boot/board/radxa/rock/rock.c
new file mode 100644
index 000000000..bdc02a6a7
--- /dev/null
+++ b/roms/u-boot/board/radxa/rock/rock.c
@@ -0,0 +1,6 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * (C) Copyright 2015 Google, Inc
+ */
+
+#include <common.h>
diff --git a/roms/u-boot/board/radxa/rock2/Kconfig b/roms/u-boot/board/radxa/rock2/Kconfig
new file mode 100644
index 000000000..c2ff9e996
--- /dev/null
+++ b/roms/u-boot/board/radxa/rock2/Kconfig
@@ -0,0 +1,15 @@
+if TARGET_ROCK2
+
+config SYS_BOARD
+ default "rock2"
+
+config SYS_VENDOR
+ default "radxa"
+
+config SYS_CONFIG_NAME
+ default "rock2"
+
+config BOARD_SPECIFIC_OPTIONS # dummy
+ def_bool y
+
+endif
diff --git a/roms/u-boot/board/radxa/rock2/MAINTAINERS b/roms/u-boot/board/radxa/rock2/MAINTAINERS
new file mode 100644
index 000000000..a697e6828
--- /dev/null
+++ b/roms/u-boot/board/radxa/rock2/MAINTAINERS
@@ -0,0 +1,6 @@
+FIREFLY
+M: Simon Glass <sjg@chromium.org>
+S: Maintained
+F: board/radxa/rock2
+F: include/configs/rock2.h
+F: configs/rock2_defconfig
diff --git a/roms/u-boot/board/radxa/rock2/Makefile b/roms/u-boot/board/radxa/rock2/Makefile
new file mode 100644
index 000000000..caa305bbb
--- /dev/null
+++ b/roms/u-boot/board/radxa/rock2/Makefile
@@ -0,0 +1,7 @@
+#
+# (C) Copyright 2015 Google, Inc
+#
+# SPDX-License-Identifier: GPL-2.0+
+#
+
+obj-y += rock2.o
diff --git a/roms/u-boot/board/radxa/rock2/rock2.c b/roms/u-boot/board/radxa/rock2/rock2.c
new file mode 100644
index 000000000..bdc02a6a7
--- /dev/null
+++ b/roms/u-boot/board/radxa/rock2/rock2.c
@@ -0,0 +1,6 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * (C) Copyright 2015 Google, Inc
+ */
+
+#include <common.h>