diff options
Diffstat (limited to 'roms/u-boot/board/comtrend/ct5361')
-rw-r--r-- | roms/u-boot/board/comtrend/ct5361/Kconfig | 12 | ||||
-rw-r--r-- | roms/u-boot/board/comtrend/ct5361/MAINTAINERS | 6 | ||||
-rw-r--r-- | roms/u-boot/board/comtrend/ct5361/Makefile | 3 | ||||
-rw-r--r-- | roms/u-boot/board/comtrend/ct5361/ct-5361.c | 6 |
4 files changed, 27 insertions, 0 deletions
diff --git a/roms/u-boot/board/comtrend/ct5361/Kconfig b/roms/u-boot/board/comtrend/ct5361/Kconfig new file mode 100644 index 000000000..d77d814db --- /dev/null +++ b/roms/u-boot/board/comtrend/ct5361/Kconfig @@ -0,0 +1,12 @@ +if BOARD_COMTREND_CT5361 + +config SYS_BOARD + default "ct5361" + +config SYS_VENDOR + default "comtrend" + +config SYS_CONFIG_NAME + default "comtrend_ct5361" + +endif diff --git a/roms/u-boot/board/comtrend/ct5361/MAINTAINERS b/roms/u-boot/board/comtrend/ct5361/MAINTAINERS new file mode 100644 index 000000000..aea737a0b --- /dev/null +++ b/roms/u-boot/board/comtrend/ct5361/MAINTAINERS @@ -0,0 +1,6 @@ +COMTREND CT-5361 BOARD +M: Álvaro Fernández Rojas <noltari@gmail.com> +S: Maintained +F: board/comtrend/ct-5361/ +F: include/configs/comtrend_ct5361.h +F: configs/comtrend_ct5361_ram_defconfig diff --git a/roms/u-boot/board/comtrend/ct5361/Makefile b/roms/u-boot/board/comtrend/ct5361/Makefile new file mode 100644 index 000000000..8b41c4a07 --- /dev/null +++ b/roms/u-boot/board/comtrend/ct5361/Makefile @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0+ + +obj-y += ct-5361.o diff --git a/roms/u-boot/board/comtrend/ct5361/ct-5361.c b/roms/u-boot/board/comtrend/ct5361/ct-5361.c new file mode 100644 index 000000000..1e4b7281d --- /dev/null +++ b/roms/u-boot/board/comtrend/ct5361/ct-5361.c @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> + */ + +#include <common.h> |