diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2018-01-20 19:16:05 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2018-01-26 12:38:13 +0100 |
commit | 664ec31db7b99269b612360ffb3c9840a195e263 (patch) | |
tree | b3548793a64fe969265407109a33444fb8ddb3a0 /board | |
parent | 3483f28ebfaf968112ede2f075b9769a007cacdd (diff) | |
download | u-boot-664ec31db7b99269b612360ffb3c9840a195e263.tar.gz u-boot-664ec31db7b99269b612360ffb3c9840a195e263.tar.xz u-boot-664ec31db7b99269b612360ffb3c9840a195e263.zip |
MIPS: add BMIPS Comtrend AR-5315u board
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/comtrend/ar5315u/Kconfig | 12 | ||||
-rw-r--r-- | board/comtrend/ar5315u/MAINTAINERS | 6 | ||||
-rw-r--r-- | board/comtrend/ar5315u/Makefile | 5 | ||||
-rw-r--r-- | board/comtrend/ar5315u/ar-5315u.c | 7 |
4 files changed, 30 insertions, 0 deletions
diff --git a/board/comtrend/ar5315u/Kconfig b/board/comtrend/ar5315u/Kconfig new file mode 100644 index 0000000000..4baae40009 --- /dev/null +++ b/board/comtrend/ar5315u/Kconfig @@ -0,0 +1,12 @@ +if BOARD_COMTREND_AR5315U + +config SYS_BOARD + default "ar5315u" + +config SYS_VENDOR + default "comtrend" + +config SYS_CONFIG_NAME + default "comtrend_ar5315u" + +endif diff --git a/board/comtrend/ar5315u/MAINTAINERS b/board/comtrend/ar5315u/MAINTAINERS new file mode 100644 index 0000000000..048073cb42 --- /dev/null +++ b/board/comtrend/ar5315u/MAINTAINERS @@ -0,0 +1,6 @@ +COMTREND AR-5315U BOARD +M: Álvaro Fernández Rojas <noltari@gmail.com> +S: Maintained +F: board/comtrend/ar-5315u/ +F: include/configs/comtrend_ar5315u.h +F: configs/comtrend_ar5315u_ram_defconfig diff --git a/board/comtrend/ar5315u/Makefile b/board/comtrend/ar5315u/Makefile new file mode 100644 index 0000000000..5d2f590375 --- /dev/null +++ b/board/comtrend/ar5315u/Makefile @@ -0,0 +1,5 @@ +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-y += ar-5315u.o diff --git a/board/comtrend/ar5315u/ar-5315u.c b/board/comtrend/ar5315u/ar-5315u.c new file mode 100644 index 0000000000..bdb3acafad --- /dev/null +++ b/board/comtrend/ar5315u/ar-5315u.c @@ -0,0 +1,7 @@ +/* + * Copyright (C) 2018 Álvaro Fernández Rojas <noltari@gmail.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#include <common.h> |