upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
579 B
25 lines
579 B
#
|
|
# Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
if VENDOR_EMULATION
|
|
|
|
choice
|
|
prompt "Mainboard model"
|
|
|
|
config TARGET_QEMU_X86
|
|
bool "QEMU x86"
|
|
help
|
|
This is the QEMU emulated x86 board. U-Boot supports running
|
|
as a coreboot payload as well as bare boot without coreboot.
|
|
There are two types of x86 boards supported by QEMU which are
|
|
supported by U-Boot. They are via QEMU '-M pc', an i440FX/PIIX
|
|
chipset platform and '-M q35', a Q35/ICH9 chipset platform.
|
|
|
|
endchoice
|
|
|
|
source "board/emulation/qemu-x86/Kconfig"
|
|
|
|
endif
|
|
|