diff options
author | Álvaro Fernández Rojas | 2017-04-25 00:39:24 +0200 |
---|---|---|
committer | Daniel Schwierzeck | 2017-05-10 16:16:09 +0200 |
commit | 0642f485dc7b22e147ec85180af1f524c04b46ce (patch) | |
tree | 88d9aa778d5a735e4b4155cc8adb270102b113ee /board/comtrend | |
parent | 6471a225e708f550077d0f6c6c1b9e8773b5e9d6 (diff) |
MIPS: add BMIPS Comtrend AR-5387un 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/ar5387un/Kconfig | 12 | ||||
-rw-r--r-- | board/comtrend/ar5387un/MAINTAINERS | 6 | ||||
-rw-r--r-- | board/comtrend/ar5387un/Makefile | 5 | ||||
-rw-r--r-- | board/comtrend/ar5387un/ar-5387un.c | 7 |
4 files changed, 30 insertions, 0 deletions
diff --git a/board/comtrend/ar5387un/Kconfig b/board/comtrend/ar5387un/Kconfig new file mode 100644 index 00000000000..45ab7e2844a --- /dev/null +++ b/board/comtrend/ar5387un/Kconfig @@ -0,0 +1,12 @@ +if BOARD_COMTREND_AR5387UN + +config SYS_BOARD + default "ar5387un" + +config SYS_VENDOR + default "comtrend" + +config SYS_CONFIG_NAME + default "comtrend_ar5387un" + +endif diff --git a/board/comtrend/ar5387un/MAINTAINERS b/board/comtrend/ar5387un/MAINTAINERS new file mode 100644 index 00000000000..bcaac64db09 --- /dev/null +++ b/board/comtrend/ar5387un/MAINTAINERS @@ -0,0 +1,6 @@ +COMTREND AR-5387UN BOARD +M: Álvaro Fernández Rojas <noltari@gmail.com> +S: Maintained +F: board/comtrend/ar-5387un/ +F: include/configs/comtrend_ar5387un.h +F: configs/comtrend_ar5387un_ram_defconfig diff --git a/board/comtrend/ar5387un/Makefile b/board/comtrend/ar5387un/Makefile new file mode 100644 index 00000000000..9de1cd2ba2d --- /dev/null +++ b/board/comtrend/ar5387un/Makefile @@ -0,0 +1,5 @@ +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-y += ar-5387un.o diff --git a/board/comtrend/ar5387un/ar-5387un.c b/board/comtrend/ar5387un/ar-5387un.c new file mode 100644 index 00000000000..d181ca68a04 --- /dev/null +++ b/board/comtrend/ar5387un/ar-5387un.c @@ -0,0 +1,7 @@ +/* + * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#include <common.h> |