blob: 41a27dd933b0d8b98cb30c4b946fd0b54a10f9a9 [file] [log] [blame]
Bin Meng5b71c542017-01-18 03:33:04 -08001if TARGET_QEMU_X86 || TARGET_QEMU_X86_64
Bin Meng2229c4c2015-05-07 21:34:08 +08002
3config SYS_BOARD
4 default "qemu-x86"
5
6config SYS_VENDOR
7 default "emulation"
8
9config SYS_SOC
10 default "qemu"
11
12config SYS_CONFIG_NAME
13 default "qemu-x86"
14
15config SYS_TEXT_BASE
Bin Meng740aa422018-06-12 08:36:19 -070016 default 0xfff00000 if !SUPPORT_SPL
17 default 0x01110000 if SUPPORT_SPL
Bin Meng2229c4c2015-05-07 21:34:08 +080018
19config BOARD_SPECIFIC_OPTIONS # dummy
20 def_bool y
Bin Meng740aa422018-06-12 08:36:19 -070021 select X86_RESET_VECTOR
Bin Meng2229c4c2015-05-07 21:34:08 +080022 select QEMU
23 select BOARD_ROMSIZE_KB_1024
24
25endif