summaryrefslogtreecommitdiffstats
path: root/dynamic-layers
diff options
context:
space:
mode:
Diffstat (limited to 'dynamic-layers')
-rw-r--r--dynamic-layers/raspberrypi/conf/distro/include/xen-raspberrypi4-64.inc8
-rw-r--r--dynamic-layers/xilinx/recipes-extended/xen/xen-xilinx.inc4
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"
5ENABLE_UART = "1" 5ENABLE_UART = "1"
6 6
7# Build the bootable SD card image 7# Build the bootable SD card image
8IMAGE_CLASSES_append = " sdcard_image-rpi" 8IMAGE_CLASSES:append = " sdcard_image-rpi"
9IMAGE_FSTYPES_append = " rpi-sdimg" 9IMAGE_FSTYPES:append = " rpi-sdimg"
10 10
11# Add Xen to the bootable SD card image 11# Add Xen to the bootable SD card image
12RPI_SDIMG_EXTRA_DEPENDS_append = " xen:do_deploy" 12RPI_SDIMG_EXTRA_DEPENDS:append = " xen:do_deploy"
13DEPLOYPAYLOAD = "xen-${MACHINE}:xen" 13DEPLOYPAYLOAD = "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
16RPI_EXTRA_CONFIG_append = "\nenable_gic=1" 16RPI_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
19BOOT_SPACE = "61440" 19BOOT_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 @@
1FILESEXTRAPATHS_prepend := "${THISDIR}/files:" 1FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
2 2
3DEPENDS += "u-boot-mkimage-native" 3DEPENDS += "u-boot-mkimage-native"
4DEPENDS += "dtc-native" 4DEPENDS += "dtc-native"
5 5
6XENIMAGE_KERNEL_LOADADDRESS ?= "0x6000000" 6XENIMAGE_KERNEL_LOADADDRESS ?= "0x6000000"
7do_deploy_append() { 7do_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