mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-24 16:11:27 +02:00
Generally speaking, we do not prompt for this value and define it in the board specific Kconfig file. There are some valid use cases however today where we do prompt for this value, so instead of having this be done in a number of locations, do this at the top-level location only. This removes the question from a number of other locations and makes it consistent that when we do set the value directly, we always do it the same way. We don't need to specify the type, it's always string. Signed-off-by: Tom Rini <trini@konsulko.com>
59 lines
1.5 KiB
Plaintext
59 lines
1.5 KiB
Plaintext
|
|
if SOC_MT7628
|
|
|
|
choice
|
|
prompt "Board select"
|
|
|
|
config BOARD_GARDENA_SMART_GATEWAY_MT7688
|
|
bool "GARDENA smart Gateway"
|
|
select BOARD_LATE_INIT
|
|
help
|
|
GARDENA smart Gateway boards have a MT7688 SoC with 128 MiB of RAM
|
|
and 8 MiB of flash (SPI NOR) and additional SPI NAND storage.
|
|
|
|
config BOARD_LINKIT_SMART_7688
|
|
bool "LinkIt Smart 7688"
|
|
help
|
|
Seeed LinkIt Smart 7688 boards have a MT7688 SoC with 128 MiB of RAM
|
|
and 32 MiB of flash (SPI).
|
|
Between its different peripherals there's an integrated switch with 4
|
|
ethernet ports, 1 USB port, 1 UART, GPIO buttons and LEDs, and
|
|
a MT7688 (PCIe).
|
|
|
|
config BOARD_MT7628_RFB
|
|
bool "MediaTek MT7628 RFB"
|
|
help
|
|
The reference design of MT7628. The board has 128 MiB DDR2, 8 MiB
|
|
SPI-NOR flash, 1 built-in switch with 5 ports, 1 UART, 1 USB host,
|
|
1 SDXC, 1 PCIe socket and JTAG pins.
|
|
|
|
config BOARD_VOCORE2
|
|
bool "VoCore2"
|
|
select SPL_SERIAL
|
|
select SPL_UART2_SPIS_PINMUX
|
|
help
|
|
VoCore VoCore2 board has a MT7628 SoC with 128 MiB of RAM
|
|
and 16 MiB of flash (SPI).
|
|
|
|
endchoice
|
|
|
|
config SPL_UART2_SPIS_PINMUX
|
|
bool "Use alternative pinmux for UART2 in SPL stage"
|
|
depends on SPL_SERIAL
|
|
help
|
|
Select this if the UART2 of your board is connected to GPIO 16/17
|
|
(shared with SPIS) rather than the usual GPIO 20/21.
|
|
|
|
config SYS_BOARD
|
|
string "Board name"
|
|
default "mt7628" if BOARD_MT7628_RFB
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "mt7628" if BOARD_MT7628_RFB
|
|
|
|
source "board/gardena/smart-gateway-mt7688/Kconfig"
|
|
source "board/seeed/linkit-smart-7688/Kconfig"
|
|
source "board/vocore/vocore2/Kconfig"
|
|
|
|
endif
|