diff options
Diffstat (limited to 'roms/u-boot/board/geekbuying/geekbox')
-rw-r--r-- | roms/u-boot/board/geekbuying/geekbox/Kconfig | 15 | ||||
-rw-r--r-- | roms/u-boot/board/geekbuying/geekbox/MAINTAINERS | 6 | ||||
-rw-r--r-- | roms/u-boot/board/geekbuying/geekbox/Makefile | 5 | ||||
-rw-r--r-- | roms/u-boot/board/geekbuying/geekbox/README | 1 | ||||
-rw-r--r-- | roms/u-boot/board/geekbuying/geekbox/geekbox.c | 6 |
5 files changed, 33 insertions, 0 deletions
diff --git a/roms/u-boot/board/geekbuying/geekbox/Kconfig b/roms/u-boot/board/geekbuying/geekbox/Kconfig new file mode 100644 index 000000000..41aa8fbe0 --- /dev/null +++ b/roms/u-boot/board/geekbuying/geekbox/Kconfig @@ -0,0 +1,15 @@ +if TARGET_GEEKBOX + +config SYS_BOARD + default "geekbox" + +config SYS_VENDOR + default "geekbuying" + +config SYS_CONFIG_NAME + default "geekbox" + +config BOARD_SPECIFIC_OPTIONS # dummy + def_bool y + +endif diff --git a/roms/u-boot/board/geekbuying/geekbox/MAINTAINERS b/roms/u-boot/board/geekbuying/geekbox/MAINTAINERS new file mode 100644 index 000000000..7a4989f94 --- /dev/null +++ b/roms/u-boot/board/geekbuying/geekbox/MAINTAINERS @@ -0,0 +1,6 @@ +GEEKBOX +M: Andreas Färber <afaerber@suse.de> +S: Maintained +F: board/geekbuying/geekbox +F: include/configs/geekbox.h +F: configs/geekbox_defconfig diff --git a/roms/u-boot/board/geekbuying/geekbox/Makefile b/roms/u-boot/board/geekbuying/geekbox/Makefile new file mode 100644 index 000000000..ced2ff75a --- /dev/null +++ b/roms/u-boot/board/geekbuying/geekbox/Makefile @@ -0,0 +1,5 @@ +# SPDX-License-Identifier: GPL-2.0+ +# +# Copyright (c) 2016 Andreas Färber + +obj-y += geekbox.o diff --git a/roms/u-boot/board/geekbuying/geekbox/README b/roms/u-boot/board/geekbuying/geekbox/README new file mode 100644 index 000000000..de980f2f2 --- /dev/null +++ b/roms/u-boot/board/geekbuying/geekbox/README @@ -0,0 +1 @@ +see board/rockchip/sheep_rk3368/README diff --git a/roms/u-boot/board/geekbuying/geekbox/geekbox.c b/roms/u-boot/board/geekbuying/geekbox/geekbox.c new file mode 100644 index 000000000..b0f9a5f9b --- /dev/null +++ b/roms/u-boot/board/geekbuying/geekbox/geekbox.c @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (c) 2016 Andreas Färber + */ + +#include <common.h> |