diff options
Diffstat (limited to 'roms/u-boot/board/comtrend/vr3032u')
-rw-r--r-- | roms/u-boot/board/comtrend/vr3032u/Kconfig | 12 | ||||
-rw-r--r-- | roms/u-boot/board/comtrend/vr3032u/MAINTAINERS | 6 | ||||
-rw-r--r-- | roms/u-boot/board/comtrend/vr3032u/Makefile | 3 | ||||
-rw-r--r-- | roms/u-boot/board/comtrend/vr3032u/vr-3032u.c | 6 |
4 files changed, 27 insertions, 0 deletions
diff --git a/roms/u-boot/board/comtrend/vr3032u/Kconfig b/roms/u-boot/board/comtrend/vr3032u/Kconfig new file mode 100644 index 000000000..6f552cf22 --- /dev/null +++ b/roms/u-boot/board/comtrend/vr3032u/Kconfig @@ -0,0 +1,12 @@ +if BOARD_COMTREND_VR3032U + +config SYS_BOARD + default "vr3032u" + +config SYS_VENDOR + default "comtrend" + +config SYS_CONFIG_NAME + default "comtrend_vr3032u" + +endif diff --git a/roms/u-boot/board/comtrend/vr3032u/MAINTAINERS b/roms/u-boot/board/comtrend/vr3032u/MAINTAINERS new file mode 100644 index 000000000..833d7da4a --- /dev/null +++ b/roms/u-boot/board/comtrend/vr3032u/MAINTAINERS @@ -0,0 +1,6 @@ +COMTREND VR-3032U BOARD +M: Álvaro Fernández Rojas <noltari@gmail.com> +S: Maintained +F: board/comtrend/vr-3032u/ +F: include/configs/comtrend_vr-3032u.h +F: configs/comtrend_vr3032u_ram_defconfig diff --git a/roms/u-boot/board/comtrend/vr3032u/Makefile b/roms/u-boot/board/comtrend/vr3032u/Makefile new file mode 100644 index 000000000..3542fea58 --- /dev/null +++ b/roms/u-boot/board/comtrend/vr3032u/Makefile @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0+ + +obj-y += vr-3032u.o diff --git a/roms/u-boot/board/comtrend/vr3032u/vr-3032u.c b/roms/u-boot/board/comtrend/vr3032u/vr-3032u.c new file mode 100644 index 000000000..1e4b7281d --- /dev/null +++ b/roms/u-boot/board/comtrend/vr3032u/vr-3032u.c @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> + */ + +#include <common.h> |