From 6c7cc4288da852202118e12542ea8cffe15e3a21 Mon Sep 17 00:00:00 2001 From: Diego Sueiro Date: Thu, 3 Sep 2020 12:40:25 +0100 Subject: [PATCH] arm-autonomy/xen-devicetree: Update XEN_DEVICETREE_DOM0_BOOTARGS for N1SDP For N1SDP the wic image partition layout have the /dev/sda1 as the boot partition and /dev/sda2 as the rootfs partition. To reflect this, we need to update the XEN_DEVICETREE_DOM0_BOOTARGS to set the "root=" command line parameter to /dev/sda2. Change-Id: Iee52176ab4ac1232a3d726e955835261b0a5ae00 Issue-Id: SCM-1065 Signed-off-by: Diego Sueiro Signed-off-by: Jon Mason --- .../recipes-extended/xen-devicetree/xen-devicetree.bbappend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arm-autonomy/dynamic-layers/meta-arm-bsp/recipes-extended/xen-devicetree/xen-devicetree.bbappend b/meta-arm-autonomy/dynamic-layers/meta-arm-bsp/recipes-extended/xen-devicetree/xen-devicetree.bbappend index 37874883..91af5069 100644 --- a/meta-arm-autonomy/dynamic-layers/meta-arm-bsp/recipes-extended/xen-devicetree/xen-devicetree.bbappend +++ b/meta-arm-autonomy/dynamic-layers/meta-arm-bsp/recipes-extended/xen-devicetree/xen-devicetree.bbappend @@ -16,7 +16,7 @@ XEN_DEVICETREE_DTBS_n1sdp = "n1sdp-single-chip.dtb" XEN_DEVICETREE_DOM0_BOOTARGS_append_juno = " root=/dev/sda1 rootwait" XEN_DEVICETREE_XEN_BOOTARGS_append_juno = " console=dtuart dtuart=serial0 bootscrub=0 iommu=no" -XEN_DEVICETREE_DOM0_BOOTARGS_append_n1sdp = " root=/dev/sda1 rootwait" +XEN_DEVICETREE_DOM0_BOOTARGS_append_n1sdp = " root=/dev/sda2 rootwait" XEN_DEVICETREE_XEN_BOOTARGS_append_n1sdp = " console=dtuart dtuart=serial0 bootscrub=0 iommu=no" XEN_DEVICETREE_DOM0_BOOTARGS_append_fvp-base = " root=/dev/vda2"