diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/board/comtrend | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/board/comtrend')
20 files changed, 135 insertions, 0 deletions
diff --git a/roms/u-boot/board/comtrend/ar5315u/Kconfig b/roms/u-boot/board/comtrend/ar5315u/Kconfig new file mode 100644 index 000000000..4baae4000 --- /dev/null +++ b/roms/u-boot/board/comtrend/ar5315u/Kconfig @@ -0,0 +1,12 @@ +if BOARD_COMTREND_AR5315U + +config SYS_BOARD + default "ar5315u" + +config SYS_VENDOR + default "comtrend" + +config SYS_CONFIG_NAME + default "comtrend_ar5315u" + +endif diff --git a/roms/u-boot/board/comtrend/ar5315u/MAINTAINERS b/roms/u-boot/board/comtrend/ar5315u/MAINTAINERS new file mode 100644 index 000000000..048073cb4 --- /dev/null +++ b/roms/u-boot/board/comtrend/ar5315u/MAINTAINERS @@ -0,0 +1,6 @@ +COMTREND AR-5315U BOARD +M: Álvaro Fernández Rojas <noltari@gmail.com> +S: Maintained +F: board/comtrend/ar-5315u/ +F: include/configs/comtrend_ar5315u.h +F: configs/comtrend_ar5315u_ram_defconfig diff --git a/roms/u-boot/board/comtrend/ar5315u/Makefile b/roms/u-boot/board/comtrend/ar5315u/Makefile new file mode 100644 index 000000000..25656a8ca --- /dev/null +++ b/roms/u-boot/board/comtrend/ar5315u/Makefile @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0+ + +obj-y += ar-5315u.o diff --git a/roms/u-boot/board/comtrend/ar5315u/ar-5315u.c b/roms/u-boot/board/comtrend/ar5315u/ar-5315u.c new file mode 100644 index 000000000..343798587 --- /dev/null +++ b/roms/u-boot/board/comtrend/ar5315u/ar-5315u.c @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2018 Álvaro Fernández Rojas <noltari@gmail.com> + */ + +#include <common.h> diff --git a/roms/u-boot/board/comtrend/ar5387un/Kconfig b/roms/u-boot/board/comtrend/ar5387un/Kconfig new file mode 100644 index 000000000..45ab7e284 --- /dev/null +++ b/roms/u-boot/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/roms/u-boot/board/comtrend/ar5387un/MAINTAINERS b/roms/u-boot/board/comtrend/ar5387un/MAINTAINERS new file mode 100644 index 000000000..bcaac64db --- /dev/null +++ b/roms/u-boot/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/roms/u-boot/board/comtrend/ar5387un/Makefile b/roms/u-boot/board/comtrend/ar5387un/Makefile new file mode 100644 index 000000000..572ae1f09 --- /dev/null +++ b/roms/u-boot/board/comtrend/ar5387un/Makefile @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0+ + +obj-y += ar-5387un.o diff --git a/roms/u-boot/board/comtrend/ar5387un/ar-5387un.c b/roms/u-boot/board/comtrend/ar5387un/ar-5387un.c new file mode 100644 index 000000000..1e4b7281d --- /dev/null +++ b/roms/u-boot/board/comtrend/ar5387un/ar-5387un.c @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> + */ + +#include <common.h> diff --git a/roms/u-boot/board/comtrend/ct5361/Kconfig b/roms/u-boot/board/comtrend/ct5361/Kconfig new file mode 100644 index 000000000..d77d814db --- /dev/null +++ b/roms/u-boot/board/comtrend/ct5361/Kconfig @@ -0,0 +1,12 @@ +if BOARD_COMTREND_CT5361 + +config SYS_BOARD + default "ct5361" + +config SYS_VENDOR + default "comtrend" + +config SYS_CONFIG_NAME + default "comtrend_ct5361" + +endif diff --git a/roms/u-boot/board/comtrend/ct5361/MAINTAINERS b/roms/u-boot/board/comtrend/ct5361/MAINTAINERS new file mode 100644 index 000000000..aea737a0b --- /dev/null +++ b/roms/u-boot/board/comtrend/ct5361/MAINTAINERS @@ -0,0 +1,6 @@ +COMTREND CT-5361 BOARD +M: Álvaro Fernández Rojas <noltari@gmail.com> +S: Maintained +F: board/comtrend/ct-5361/ +F: include/configs/comtrend_ct5361.h +F: configs/comtrend_ct5361_ram_defconfig diff --git a/roms/u-boot/board/comtrend/ct5361/Makefile b/roms/u-boot/board/comtrend/ct5361/Makefile new file mode 100644 index 000000000..8b41c4a07 --- /dev/null +++ b/roms/u-boot/board/comtrend/ct5361/Makefile @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0+ + +obj-y += ct-5361.o diff --git a/roms/u-boot/board/comtrend/ct5361/ct-5361.c b/roms/u-boot/board/comtrend/ct5361/ct-5361.c new file mode 100644 index 000000000..1e4b7281d --- /dev/null +++ b/roms/u-boot/board/comtrend/ct5361/ct-5361.c @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> + */ + +#include <common.h> 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> diff --git a/roms/u-boot/board/comtrend/wap5813n/Kconfig b/roms/u-boot/board/comtrend/wap5813n/Kconfig new file mode 100644 index 000000000..2f2a14faa --- /dev/null +++ b/roms/u-boot/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/roms/u-boot/board/comtrend/wap5813n/MAINTAINERS b/roms/u-boot/board/comtrend/wap5813n/MAINTAINERS new file mode 100644 index 000000000..f4d99796b --- /dev/null +++ b/roms/u-boot/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/roms/u-boot/board/comtrend/wap5813n/Makefile b/roms/u-boot/board/comtrend/wap5813n/Makefile new file mode 100644 index 000000000..b8d4a6d5f --- /dev/null +++ b/roms/u-boot/board/comtrend/wap5813n/Makefile @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0+ + +obj-y += wap-5813n.o diff --git a/roms/u-boot/board/comtrend/wap5813n/wap-5813n.c b/roms/u-boot/board/comtrend/wap5813n/wap-5813n.c new file mode 100644 index 000000000..1e4b7281d --- /dev/null +++ b/roms/u-boot/board/comtrend/wap5813n/wap-5813n.c @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> + */ + +#include <common.h> |