Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 1 | if TARGET_QEMU_X86 |
| 2 | |
| 3 | config SYS_BOARD |
| 4 | default "qemu-x86" |
| 5 | |
| 6 | config SYS_VENDOR |
| 7 | default "emulation" |
| 8 | |
| 9 | config SYS_SOC |
| 10 | default "qemu" |
| 11 | |
| 12 | config SYS_CONFIG_NAME |
| 13 | default "qemu-x86" |
| 14 | |
| 15 | config SYS_TEXT_BASE |
Simon Glass | eeae510 | 2015-08-04 12:34:03 -0600 | [diff] [blame] | 16 | default 0xfff00000 if !EFI_STUB |
| 17 | default 0x01110000 if EFI_STUB |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 18 | |
| 19 | config BOARD_SPECIFIC_OPTIONS # dummy |
| 20 | def_bool y |
Simon Glass | eeae510 | 2015-08-04 12:34:03 -0600 | [diff] [blame] | 21 | select X86_RESET_VECTOR if !EFI_STUB |
Bin Meng | a65b25d | 2015-05-07 21:34:08 +0800 | [diff] [blame] | 22 | select QEMU |
| 23 | select BOARD_ROMSIZE_KB_1024 |
| 24 | |
| 25 | endif |