diff options
author | 2018-06-06 10:48:12 +0200 | |
---|---|---|
committer | 2018-06-28 12:40:45 +0200 | |
commit | 16032f686a5290b1828e9ecb4054d0e359209e18 (patch) | |
tree | c2a5461b4b37b548115600f4e6581f68754de8eb /conf/machine | |
parent | 41c4856d6049fa1bc1b6d9d8c676eae54bbf58f3 (diff) | |
download | meta-qcom-morty.tar.gz meta-qcom-morty.tar.bz2 meta-qcom-morty.zip |
conf: machine: *.conf: added overwrite options for all machinesmorty
Adding overwriting options to certain variables to supply i.e. a different
kernel version or another serial output without having extra files. This also
allows setting these values via environment.
Signed-off-by: Thorben Vornholz <thorben.vornholz@baslerweb.com>
[nicolas.dechesne@linaro.org: extended initial PR to apply to all machines, not
just 820c]
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
(cherry picked from commit dfe5d143de324812ea63d4f535bf0203018ff192)
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/dragonboard-410c-32.conf | 2 | ||||
-rw-r--r-- | conf/machine/dragonboard-410c.conf | 6 | ||||
-rw-r--r-- | conf/machine/dragonboard-820c.conf | 6 | ||||
-rw-r--r-- | conf/machine/ifc6410.conf | 6 | ||||
-rw-r--r-- | conf/machine/sd-600eval.conf | 6 |
5 files changed, 13 insertions, 13 deletions
diff --git a/conf/machine/dragonboard-410c-32.conf b/conf/machine/dragonboard-410c-32.conf index 147c2ba..859bbfd 100644 --- a/conf/machine/dragonboard-410c-32.conf +++ b/conf/machine/dragonboard-410c-32.conf @@ -7,7 +7,7 @@ require conf/machine/include/tune-cortexa8.inc MACHINE_FEATURES = "usbhost usbgadget alsa screen wifi bluetooth ext2" -SERIAL_CONSOLE = "115200 ttyMSM0" +SERIAL_CONSOLE ?= "115200 ttyMSM0" # Building 32-bit kernel is not supported. PREFERRED_PROVIDER_virtual/kernel = "linux-dummy" diff --git a/conf/machine/dragonboard-410c.conf b/conf/machine/dragonboard-410c.conf index 65393c8..fbc833c 100644 --- a/conf/machine/dragonboard-410c.conf +++ b/conf/machine/dragonboard-410c.conf @@ -7,10 +7,10 @@ require conf/machine/include/arm/arch-armv8.inc MACHINE_FEATURES = "usbhost usbgadget alsa screen wifi bluetooth ext2" -KERNEL_IMAGETYPE = "Image.gz" -KERNEL_DEVICETREE = "qcom/apq8016-sbc.dtb" +KERNEL_IMAGETYPE ?= "Image.gz" +KERNEL_DEVICETREE ?= "qcom/apq8016-sbc.dtb" -SERIAL_CONSOLE = "115200 ttyMSM0" +SERIAL_CONSOLE ?= "115200 ttyMSM0" MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += " \ kernel-modules \ diff --git a/conf/machine/dragonboard-820c.conf b/conf/machine/dragonboard-820c.conf index 903d3c0..42cb58a 100644 --- a/conf/machine/dragonboard-820c.conf +++ b/conf/machine/dragonboard-820c.conf @@ -6,10 +6,10 @@ require conf/machine/include/qcom-apq8096.inc MACHINE_FEATURES = "usbhost usbgadget alsa screen wifi bluetooth ext2" -KERNEL_IMAGETYPE = "Image.gz" -KERNEL_DEVICETREE = "qcom/apq8096-db820c.dtb" +KERNEL_IMAGETYPE ?= "Image.gz" +KERNEL_DEVICETREE ?= "qcom/apq8096-db820c.dtb" -SERIAL_CONSOLE = "115200 ttyMSM0" +SERIAL_CONSOLE ?= "115200 ttyMSM0" MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += " \ firmware-qcom-dragonboard820c \ diff --git a/conf/machine/ifc6410.conf b/conf/machine/ifc6410.conf index 4a698b6..40d89b7 100644 --- a/conf/machine/ifc6410.conf +++ b/conf/machine/ifc6410.conf @@ -12,10 +12,10 @@ MACHINE_EXTRA_RRECOMMENDS = " \ ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-msm', '', d)} \ " -KERNEL_IMAGETYPE = "zImage" -KERNEL_DEVICETREE = "qcom-apq8064-ifc6410.dtb" +KERNEL_IMAGETYPE ?= "zImage" +KERNEL_DEVICETREE ?= "qcom-apq8064-ifc6410.dtb" -SERIAL_CONSOLE = "115200 ttyMSM0" +SERIAL_CONSOLE ?= "115200 ttyMSM0" QCOM_BOOTIMG_ROOTFS ?= "mmcblk0p12" diff --git a/conf/machine/sd-600eval.conf b/conf/machine/sd-600eval.conf index f731b41..f7da072 100644 --- a/conf/machine/sd-600eval.conf +++ b/conf/machine/sd-600eval.conf @@ -14,9 +14,9 @@ MACHINE_EXTRA_RRECOMMENDS = " \ firmware-qcom-sd-600eval \ " -KERNEL_IMAGETYPE = "zImage" -KERNEL_DEVICETREE = "qcom-apq8064-arrow-sd-600eval.dtb" +KERNEL_IMAGETYPE ?= "zImage" +KERNEL_DEVICETREE ?= "qcom-apq8064-arrow-sd-600eval.dtb" -SERIAL_CONSOLE = "115200 ttyMSM0" +SERIAL_CONSOLE ?= "115200 ttyMSM0" QCOM_BOOTIMG_ROOTFS ?= "mmcblk0p12" |