Command used: perl -i -p0e 's|(\#\#*)[\w*]*.*is[\#\s]*licensed[\#\s]*under[\#\s]*the[\#\s]*terms[\#\s]*of[\#\s]*the[\#\s]*GNU[\#\s]*General[\#\s]*Public[\#\s]*License[\#\s]*version[\#\s]*2,[\#\s]*as[\#\s]*published[\#\s]*by[\#\s]*the[\#\s]*Free[\#\s]*Software[\#\s]*Foundation,[\#\s]*and[\#\s]*may[\#\s]*be[\#\s]*copied,[\#\s]*distributed,[\#\s]*and[\#\s]*modified[\#\s]*under[\#\s]*those[\#\s]*terms.[\#\s]*This[\#\s]*program[\#\s]*is[\#\s]*distributed[\#\s]*in[\#\s]*the[\#\s]*hope[\#\s]*that[\#\s]*it[\#\s]*will[\#\s]*be[\#\s]*useful,[\#\s]*but[\#\s]*WITHOUT[\#\s]*ANY[\#\s]*WARRANTY;[\#\s]*without[\#\s]*even[\#\s]*the[\#\s]*implied[\#\s]*warranty[\#\s]*of[\#\s]*MERCHANTABILITY[\#\s]*or[\#\s]*FITNESS[\#\s]*FOR[\#\s]*A[\#\s]*PARTICULAR[\#\s]*PURPOSE.[\#\s]*See[\#\s]*the[\#\s]*GNU[\#\s]*General[\#\s]*Public[\#\s]*License[\#\s]*for[\#\s]*more[\#\s]*details.\s(#* *\n)*|\1 SPDX-License-Identifier: GPL-2.0-only\n\n|' $(cat filelist) Change-Id: Ia7ce0a78f96563b8dc0f6eb648c4ba4cefb2b838 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41180 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
53 lines
1.1 KiB
Plaintext
53 lines
1.1 KiB
Plaintext
##
|
|
## This file is part of the coreboot project.
|
|
##
|
|
##
|
|
## SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
# Emulation for ARM Ltd Versatile Express Cortex-A9
|
|
# http://www.arm.com/products/tools/development-boards/versatile-express
|
|
|
|
# To execute, do:
|
|
# export QEMU_AUDIO_DRV = none
|
|
# qemu-system-arm -M vexpress-a9 -m 1024M -nographic -bios build/coreboot.rom
|
|
|
|
if BOARD_EMULATION_QEMU_ARMV7
|
|
|
|
config BOARD_SPECIFIC_OPTIONS
|
|
def_bool y
|
|
select CPU_ARMLTD_CORTEX_A9
|
|
select DRIVERS_UART_PL011
|
|
select CONSOLE_SERIAL
|
|
select MAINBOARD_HAS_NATIVE_VGA_INIT
|
|
select MAINBOARD_FORCE_NATIVE_VGA_INIT
|
|
select HAVE_LINEAR_FRAMEBUFFER
|
|
select ARCH_BOOTBLOCK_ARMV7
|
|
select ARCH_ROMSTAGE_ARMV7
|
|
select ARCH_RAMSTAGE_ARMV7
|
|
select BOARD_ROMSIZE_KB_4096
|
|
select BOOT_DEVICE_NOT_SPI_FLASH
|
|
select MISSING_BOARD_RESET
|
|
select NO_MONOTONIC_TIMER
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default "emulation/qemu-armv7"
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "QEMU ARMv7"
|
|
|
|
config MAX_CPUS
|
|
int
|
|
default 2
|
|
|
|
config MAINBOARD_VENDOR
|
|
string
|
|
default "ARM Ltd."
|
|
|
|
config DRAM_SIZE_MB
|
|
int
|
|
default 1024
|
|
|
|
endif # BOARD_EMULATION_QEMU_ARMV7
|