diff options
Diffstat (limited to 'roms/u-boot/board/broadcom/bcm968380gerg')
5 files changed, 33 insertions, 0 deletions
diff --git a/roms/u-boot/board/broadcom/bcm968380gerg/Kconfig b/roms/u-boot/board/broadcom/bcm968380gerg/Kconfig new file mode 100644 index 000000000..c33e25d1a --- /dev/null +++ b/roms/u-boot/board/broadcom/bcm968380gerg/Kconfig @@ -0,0 +1,12 @@ +if BOARD_BROADCOM_BCM968380GERG + +config SYS_BOARD + default "bcm968380gerg" + +config SYS_VENDOR + default "broadcom" + +config SYS_CONFIG_NAME + default "broadcom_bcm968380gerg" + +endif diff --git a/roms/u-boot/board/broadcom/bcm968380gerg/MAINTAINERS b/roms/u-boot/board/broadcom/bcm968380gerg/MAINTAINERS new file mode 100644 index 000000000..52747cd9e --- /dev/null +++ b/roms/u-boot/board/broadcom/bcm968380gerg/MAINTAINERS @@ -0,0 +1,6 @@ +BCM968380GERG BOARD +M: Philippe Reynes <philippe.reynes@softathome.com> +S: Maintained +F: board/broadcom/bcm968380gerg/ +F: include/configs/broadcom_bcm968380gerg.h +F: configs/bcm968380gerg_ram_defconfig diff --git a/roms/u-boot/board/broadcom/bcm968380gerg/Makefile b/roms/u-boot/board/broadcom/bcm968380gerg/Makefile new file mode 100644 index 000000000..a525b7b9b --- /dev/null +++ b/roms/u-boot/board/broadcom/bcm968380gerg/Makefile @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0+ + +obj-y += bcm968380gerg.o diff --git a/roms/u-boot/board/broadcom/bcm968380gerg/bcm968380gerg.c b/roms/u-boot/board/broadcom/bcm968380gerg/bcm968380gerg.c new file mode 100644 index 000000000..044b3554b --- /dev/null +++ b/roms/u-boot/board/broadcom/bcm968380gerg/bcm968380gerg.c @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2018 Philippe Reynes <philippe.reynes@softathome.com> + */ + +#include <common.h> diff --git a/roms/u-boot/board/broadcom/bcm968380gerg/board.c b/roms/u-boot/board/broadcom/bcm968380gerg/board.c new file mode 100644 index 000000000..044b3554b --- /dev/null +++ b/roms/u-boot/board/broadcom/bcm968380gerg/board.c @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2018 Philippe Reynes <philippe.reynes@softathome.com> + */ + +#include <common.h> |