mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 17:44:14 +08:00
0c00a537bc
Most of the remaining arm board files in the kernel are unused and will be removed in early 2023 if no users step up. So far I got no user replies about the orion5x and mv78xx0 machines, but these are still supported in the default kernel of the Debian 'armel' (armv5 softfloat) distro, and there is an active project on github that tries to keep some of these machines working, and Mauri Sandberg is working on a DT conversion for the D-Link DNS-323. It appears the Debian-on-Buffalo project has not got the Terastation WXL working in a few years, and the other mv78xx0 machines are just the reference designs, so I assume none of these have remaining users. For the Orion5x family, the same is probably true for its reference implementations (RD88Fxxxxx, DB88F281) and the machines with less than 64MB of memory (WNR854T, WRT350N v2). The remaining nine machines are now scheduled to be kept for at least 2023, hopefully to be replaced with DT based versions. The mv78xx0_defconfig file needs to enable CONFIG_UNUSED_BOARD_FILES to still build, while the other affected defconfig files lose the specific boards. Cc: Andrew Lunn <andrew@lunn.ch> Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Cc: Gregory Clement <gregory.clement@bootlin.com> Cc: Mauri Sandberg <maukka@ext.kapsi.fi> Link: https://github.com/1000001101000/Debian_on_Buffalo Signed-off-by: Arnd Bergmann <arnd@arndb.de>
37 lines
895 B
Plaintext
37 lines
895 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
menuconfig ARCH_MV78XX0
|
|
bool "Marvell MV78xx0"
|
|
depends on ARCH_MULTI_V5
|
|
depends on CPU_LITTLE_ENDIAN
|
|
depends on ATAGS && UNUSED_BOARD_FILES
|
|
select CPU_FEROCEON
|
|
select GPIOLIB
|
|
select MVEBU_MBUS
|
|
select FORCE_PCI
|
|
select PLAT_ORION_LEGACY
|
|
help
|
|
Support for the following Marvell MV78xx0 series SoCs:
|
|
MV781x0, MV782x0.
|
|
|
|
if ARCH_MV78XX0
|
|
|
|
config MACH_DB78X00_BP
|
|
bool "Marvell DB-78x00-BP Development Board"
|
|
help
|
|
Say 'Y' here if you want your kernel to support the
|
|
Marvell DB-78x00-BP Development Board.
|
|
|
|
config MACH_RD78X00_MASA
|
|
bool "Marvell RD-78x00-mASA Reference Design"
|
|
help
|
|
Say 'Y' here if you want your kernel to support the
|
|
Marvell RD-78x00-mASA Reference Design.
|
|
|
|
config MACH_TERASTATION_WXL
|
|
bool "Buffalo WLX (Terastation Duo) NAS"
|
|
help
|
|
Say 'Y' here if you want your kernel to support the
|
|
Buffalo WXL Nas.
|
|
|
|
endif
|