diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/board/radxa/rock2 | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/board/radxa/rock2')
-rw-r--r-- | roms/u-boot/board/radxa/rock2/Kconfig | 15 | ||||
-rw-r--r-- | roms/u-boot/board/radxa/rock2/MAINTAINERS | 6 | ||||
-rw-r--r-- | roms/u-boot/board/radxa/rock2/Makefile | 7 | ||||
-rw-r--r-- | roms/u-boot/board/radxa/rock2/rock2.c | 6 |
4 files changed, 34 insertions, 0 deletions
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> |