qemu_x86: ia32: fix ROM size with XIP enabled
The defaults of 0x100000 for ROM and 0x400000 for RAM are intended to 'fake' a XIP configuration, this all takes place in just RAM. The gap between these two values is 3 megabytes, specify this properly. Fixes numerous test cases on qemu_x86 if CONFIG_XIP is enabled. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
d9c48563a1
commit
2bc0fa9bd5
|
@ -22,7 +22,7 @@ config RAM_SIZE
|
|||
default 256
|
||||
|
||||
config ROM_SIZE
|
||||
default 72 if XIP
|
||||
default 3072 if XIP
|
||||
|
||||
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
||||
default 150000000 if LOAPIC_TIMER
|
||||
|
|
Loading…
Reference in a new issue