diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2018-01-20 14:16:56 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2018-01-26 12:35:22 +0100 |
commit | c320b923f5ef331d830cde298c48d8a72164025a (patch) | |
tree | d59645d310d7c54e3d3ab98db694f56a51a1ac02 /board/comtrend/wap5813n | |
parent | 43b7ab99ecacb1d0556de8d3c1950aefc8fb23b0 (diff) | |
download | u-boot-c320b923f5ef331d830cde298c48d8a72164025a.tar.gz u-boot-c320b923f5ef331d830cde298c48d8a72164025a.tar.bz2 u-boot-c320b923f5ef331d830cde298c48d8a72164025a.zip |
MIPS: add BMIPS Comtrend WAP-5813n board
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'board/comtrend/wap5813n')
-rw-r--r-- | board/comtrend/wap5813n/Kconfig | 12 | ||||
-rw-r--r-- | board/comtrend/wap5813n/MAINTAINERS | 6 | ||||
-rw-r--r-- | board/comtrend/wap5813n/Makefile | 5 | ||||
-rw-r--r-- | board/comtrend/wap5813n/wap-5813n.c | 7 |
4 files changed, 30 insertions, 0 deletions
diff --git a/board/comtrend/wap5813n/Kconfig b/board/comtrend/wap5813n/Kconfig new file mode 100644 index 0000000000..2f2a14faae --- /dev/null +++ b/board/comtrend/wap5813n/Kconfig @@ -0,0 +1,12 @@ +if BOARD_COMTREND_WAP5813N + +config SYS_BOARD + default "wap5813n" + +config SYS_VENDOR + default "comtrend" + +config SYS_CONFIG_NAME + default "comtrend_wap5813n" + +endif diff --git a/board/comtrend/wap5813n/MAINTAINERS b/board/comtrend/wap5813n/MAINTAINERS new file mode 100644 index 0000000000..f4d99796b4 --- /dev/null +++ b/board/comtrend/wap5813n/MAINTAINERS @@ -0,0 +1,6 @@ +COMTREND WAP-5813N BOARD +M: Álvaro Fernández Rojas <noltari@gmail.com> +S: Maintained +F: board/comtrend/wap-5813n/ +F: include/configs/comtrend_wap-5813n.h +F: configs/comtrend_wap5813n_ram_defconfig diff --git a/board/comtrend/wap5813n/Makefile b/board/comtrend/wap5813n/Makefile new file mode 100644 index 0000000000..fd7799305d --- /dev/null +++ b/board/comtrend/wap5813n/Makefile @@ -0,0 +1,5 @@ +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-y += wap-5813n.o diff --git a/board/comtrend/wap5813n/wap-5813n.c b/board/comtrend/wap5813n/wap-5813n.c new file mode 100644 index 0000000000..d181ca68a0 --- /dev/null +++ b/board/comtrend/wap5813n/wap-5813n.c @@ -0,0 +1,7 @@ +/* + * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#include <common.h> |