diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2017-05-16 18:39:04 +0200 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2017-05-31 14:49:55 +0200 |
commit | 5e14ce2f3302651abe7873c81f2bae34937b3a63 (patch) | |
tree | 529ac1f0f72f15c35ff937a273f7d48a670c654b /board/comtrend | |
parent | bf9012b808515bf1314538e8d423080951d012df (diff) | |
download | u-boot-5e14ce2f3302651abe7873c81f2bae34937b3a63.tar.gz |
MIPS: add BMIPS Comtrend CT-5361 board
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/comtrend')
-rw-r--r-- | board/comtrend/ct5361/Kconfig | 12 | ||||
-rw-r--r-- | board/comtrend/ct5361/MAINTAINERS | 6 | ||||
-rw-r--r-- | board/comtrend/ct5361/Makefile | 5 | ||||
-rw-r--r-- | board/comtrend/ct5361/ct-5361.c | 7 |
4 files changed, 30 insertions, 0 deletions
diff --git a/board/comtrend/ct5361/Kconfig b/board/comtrend/ct5361/Kconfig new file mode 100644 index 0000000000..d77d814db7 --- /dev/null +++ b/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/board/comtrend/ct5361/MAINTAINERS b/board/comtrend/ct5361/MAINTAINERS new file mode 100644 index 0000000000..aea737a0bb --- /dev/null +++ b/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/board/comtrend/ct5361/Makefile b/board/comtrend/ct5361/Makefile new file mode 100644 index 0000000000..872e80a0c1 --- /dev/null +++ b/board/comtrend/ct5361/Makefile @@ -0,0 +1,5 @@ +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-y += ct-5361.o diff --git a/board/comtrend/ct5361/ct-5361.c b/board/comtrend/ct5361/ct-5361.c new file mode 100644 index 0000000000..d181ca68a0 --- /dev/null +++ b/board/comtrend/ct5361/ct-5361.c @@ -0,0 +1,7 @@ +/* + * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#include <common.h> |