1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-06-01 01:00:15 +00:00

Use += where ever possible instead of append

Exceptions will be cases involving overrides, machine specific
varible expansion and cases where variable modification needed to be
done after all += operations.

Change-Id: I7c76a77949d0a012238d488d5a75c489c54abf68
Signed-off-by: Vineeth Raveendran <vineeth.raveendran@arm.com>
This commit is contained in:
Vineeth Raveendran
2019-12-09 12:01:47 +00:00
committed by Bertrand Marquis
parent c601acec48
commit aab12c535e
9 changed files with 24 additions and 35 deletions
@@ -39,8 +39,3 @@ UBOOT_MACHINE = "vexpress_aemv8a_dram_defconfig"
# Xen configuration
XEN_CONFIG_EARLY_PRINTK = "fastmodel"
# parameters for xen dtb generation in meta-auto
XEN_DOM0_BOOTARGS_append = " root=/dev/vda2"
XEN_XEN_BOOTARGS_append = " console=dtuart dtuart=serial0 bootscrub=0"
+1 -1
View File
@@ -17,7 +17,7 @@ IMAGE_FSTYPES += "tar.bz2 ext4"
SERIAL_CONSOLES = "115200;ttyAMA0"
EXTRA_IMAGEDEPENDS += " virtual/gem5-bootloader"
EXTRA_IMAGEDEPENDS += "virtual/gem5-bootloader"
PREFERRED_PROVIDER_virtual/kernel = "linux-yocto"
PREFERRED_VERSION_linux-yocto ?= "4.19%"
+1 -6
View File
@@ -25,12 +25,7 @@ EXTRA_IMAGEDEPENDS += "virtual/trusted-firmware-a u-boot"
# Juno u-boot configuration
UBOOT_MACHINE = "vexpress_aemv8a_juno_defconfig"
DISTRO_FEATURES_append = " usbhost usbgadget"
DISTRO_FEATURES += "usbhost usbgadget"
# Xen configuration
XEN_CONFIG_EARLY_PRINTK = "juno"
# parameters for xen dtb generation in meta-auto
XEN_DOM0_BOOTARGS_append = " root=/dev/sda1 rootwait"
XEN_XEN_BOOTARGS_append = " console=dtuart dtuart=serial0 bootscrub=0 iommu=no"