diff options
Diffstat (limited to 'dynamic-layers')
-rw-r--r-- | dynamic-layers/raspberrypi/conf/distro/include/xen-raspberrypi4-64.inc | 8 | ||||
-rw-r--r-- | dynamic-layers/xilinx/recipes-extended/xen/xen-xilinx.inc | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/dynamic-layers/raspberrypi/conf/distro/include/xen-raspberrypi4-64.inc b/dynamic-layers/raspberrypi/conf/distro/include/xen-raspberrypi4-64.inc index 2ea19dd4..2d5a167c 100644 --- a/dynamic-layers/raspberrypi/conf/distro/include/xen-raspberrypi4-64.inc +++ b/dynamic-layers/raspberrypi/conf/distro/include/xen-raspberrypi4-64.inc | |||
@@ -5,15 +5,15 @@ RPI_USE_U_BOOT = "1" | |||
5 | ENABLE_UART = "1" | 5 | ENABLE_UART = "1" |
6 | 6 | ||
7 | # Build the bootable SD card image | 7 | # Build the bootable SD card image |
8 | IMAGE_CLASSES_append = " sdcard_image-rpi" | 8 | IMAGE_CLASSES:append = " sdcard_image-rpi" |
9 | IMAGE_FSTYPES_append = " rpi-sdimg" | 9 | IMAGE_FSTYPES:append = " rpi-sdimg" |
10 | 10 | ||
11 | # Add Xen to the bootable SD card image | 11 | # Add Xen to the bootable SD card image |
12 | RPI_SDIMG_EXTRA_DEPENDS_append = " xen:do_deploy" | 12 | RPI_SDIMG_EXTRA_DEPENDS:append = " xen:do_deploy" |
13 | DEPLOYPAYLOAD = "xen-${MACHINE}:xen" | 13 | DEPLOYPAYLOAD = "xen-${MACHINE}:xen" |
14 | 14 | ||
15 | # We need the GIC enabled for Xen to work | 15 | # We need the GIC enabled for Xen to work |
16 | RPI_EXTRA_CONFIG_append = "\nenable_gic=1" | 16 | RPI_EXTRA_CONFIG:append = "\nenable_gic=1" |
17 | 17 | ||
18 | # Increase boot partition for space for kernel and Xen | 18 | # Increase boot partition for space for kernel and Xen |
19 | BOOT_SPACE = "61440" | 19 | BOOT_SPACE = "61440" |
diff --git a/dynamic-layers/xilinx/recipes-extended/xen/xen-xilinx.inc b/dynamic-layers/xilinx/recipes-extended/xen/xen-xilinx.inc index d27362a3..18215572 100644 --- a/dynamic-layers/xilinx/recipes-extended/xen/xen-xilinx.inc +++ b/dynamic-layers/xilinx/recipes-extended/xen/xen-xilinx.inc | |||
@@ -1,10 +1,10 @@ | |||
1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | 1 | FILESEXTRAPATHS:prepend := "${THISDIR}/files:" |
2 | 2 | ||
3 | DEPENDS += "u-boot-mkimage-native" | 3 | DEPENDS += "u-boot-mkimage-native" |
4 | DEPENDS += "dtc-native" | 4 | DEPENDS += "dtc-native" |
5 | 5 | ||
6 | XENIMAGE_KERNEL_LOADADDRESS ?= "0x6000000" | 6 | XENIMAGE_KERNEL_LOADADDRESS ?= "0x6000000" |
7 | do_deploy_append() { | 7 | do_deploy:append() { |
8 | if [ -f ${DEPLOYDIR}/xen-${MACHINE} ]; then | 8 | if [ -f ${DEPLOYDIR}/xen-${MACHINE} ]; then |
9 | uboot-mkimage -A arm64 -T kernel -a ${XENIMAGE_KERNEL_LOADADDRESS} -e ${XENIMAGE_KERNEL_LOADADDRESS} -C none -d ${DEPLOYDIR}/xen-${MACHINE} ${DEPLOYDIR}/xen.ub | 9 | uboot-mkimage -A arm64 -T kernel -a ${XENIMAGE_KERNEL_LOADADDRESS} -e ${XENIMAGE_KERNEL_LOADADDRESS} -C none -d ${DEPLOYDIR}/xen-${MACHINE} ${DEPLOYDIR}/xen.ub |
10 | fi | 10 | fi |