mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-24 22:42:53 +00:00
HV: modify CONFIG_HV_RAM_START for NUC7i7DNB
When boot ACRN hypervisor from grub multiboot, HV will be loaded at CONFIG_HV_RAM_START since relocation is not supported in grub multiboot1. The CONFIG_HV_RAM_SIZE in industry scenario will take ~330MB(0x14000000), unfortunately the efi memmap on NUC7i7DNB is truncated at 0x6dba2000 although it is still usable from 0x6dba2000. So from grub point of view, it could not find a continuous memory from 0x6000000 to load industry scenario. Per efi memmap, there is a big memory area available from 0x40400000, so put CONFIG_HV_RAM_START to 0x41000000 is much safe for NUC7i7DNB. Tracked-On: #4641 Signed-off-by: Victor Sun <victor.sun@intel.com>
This commit is contained in:
parent
c431199f41
commit
22aecf83e0
@ -1,5 +1,5 @@
|
||||
# Generated by Kconfiglib (https://github.com/ulfalizer/Kconfiglib)
|
||||
CONFIG_BOARD="nuc7i7dnb"
|
||||
CONFIG_SERIAL_LEGACY=y
|
||||
CONFIG_HV_RAM_START=0x60000000
|
||||
CONFIG_HV_RAM_START=0x41000000
|
||||
CONFIG_RDT_ENABLED=n
|
||||
|
Loading…
Reference in New Issue
Block a user