diff options
Diffstat (limited to 'roms/u-boot/board/sfr/nb4_ser')
-rw-r--r-- | roms/u-boot/board/sfr/nb4_ser/Kconfig | 12 | ||||
-rw-r--r-- | roms/u-boot/board/sfr/nb4_ser/MAINTAINERS | 6 | ||||
-rw-r--r-- | roms/u-boot/board/sfr/nb4_ser/Makefile | 3 | ||||
-rw-r--r-- | roms/u-boot/board/sfr/nb4_ser/nb4-ser.c | 6 |
4 files changed, 27 insertions, 0 deletions
diff --git a/roms/u-boot/board/sfr/nb4_ser/Kconfig b/roms/u-boot/board/sfr/nb4_ser/Kconfig new file mode 100644 index 000000000..78aefb547 --- /dev/null +++ b/roms/u-boot/board/sfr/nb4_ser/Kconfig @@ -0,0 +1,12 @@ +if BOARD_SFR_NB4_SER + +config SYS_BOARD + default "nb4_ser" + +config SYS_VENDOR + default "sfr" + +config SYS_CONFIG_NAME + default "sfr_nb4_ser" + +endif diff --git a/roms/u-boot/board/sfr/nb4_ser/MAINTAINERS b/roms/u-boot/board/sfr/nb4_ser/MAINTAINERS new file mode 100644 index 000000000..bf80267f0 --- /dev/null +++ b/roms/u-boot/board/sfr/nb4_ser/MAINTAINERS @@ -0,0 +1,6 @@ +SFR NEUFBOX 4 SERCOMM BOARD +M: Álvaro Fernández Rojas <noltari@gmail.com> +S: Maintained +F: board/sfr/nb4_ser/ +F: include/configs/sfr_nb4_ser.h +F: configs/sfr_nb4-ser_ram_defconfig diff --git a/roms/u-boot/board/sfr/nb4_ser/Makefile b/roms/u-boot/board/sfr/nb4_ser/Makefile new file mode 100644 index 000000000..ab7ad76b2 --- /dev/null +++ b/roms/u-boot/board/sfr/nb4_ser/Makefile @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0+ + +obj-y += nb4-ser.o diff --git a/roms/u-boot/board/sfr/nb4_ser/nb4-ser.c b/roms/u-boot/board/sfr/nb4_ser/nb4-ser.c new file mode 100644 index 000000000..1e4b7281d --- /dev/null +++ b/roms/u-boot/board/sfr/nb4_ser/nb4-ser.c @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> + */ + +#include <common.h> |