xen-boot-cmd: Remove hard assigment for ramdisk image

Setting hard assignment for RAMDISK_IMAGE will take precedence during
variable pre-expansion. Hence set RAMDISK_IMAGE variable with soft
assignment.

Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
This commit is contained in:
Sandeep Gundlupet Raju 2023-08-16 14:42:55 -06:00 committed by Bruce Ashfield
parent 2820535869
commit 7fee614060

View File

@ -18,7 +18,7 @@ XEN_LOAD_ADDRESS ?= "${@append_baseaddr(d,d.getVar('XEN_OFFSET'))}"
# If dom0-ramdisk is used for Xen boot then set RAMDISK image to cpio.gz
XEN_IMAGE_NAME ?= "xen"
RAMDISK_IMAGE = "rootfs.cpio.gz"
RAMDISK_IMAGE ?= "rootfs.cpio.gz"
# Set the amount of memory for dom0 depending on total available memory size(DDR).
DOM0_MEM ?= "1500M"