summaryrefslogtreecommitdiffstats
path: root/conf/machine
diff options
context:
space:
mode:
authorMatt Spencer <matthew@thespencers.me.uk>2021-01-14 16:23:13 +0000
committerAndrei Gherzan <andrei@gherzan.com>2021-03-16 22:25:08 +0000
commite20e770049d4151473faf08560dfb83e3bfdcf0c (patch)
tree6dff53bf55fd55819e171f080278410c0176fe48 /conf/machine
parent22e9750971ac24a49651b014f14819f481dd3318 (diff)
downloadmeta-raspberrypi-e20e770049d4151473faf08560dfb83e3bfdcf0c.tar.gz
linux-raspberrypi: Enable use of 'RPI_EXTRA_CONFIG += ...' in local.conf
Before this patch, use of RPI_EXTRA_CONFIG += in a local.conf would overwrite the needed 'arm_64bit=1' defined in the core recipes. The net result would be a system that did not boot. This patch fixes the assignment of 'arm_64bit=1' even if RPI_EXTRA_CONFIG has been set elsewhere. Signed-off-by: matthew@thespencers.me.uk (cherry picked from commit 881e603ca240576f63ecaf9ca0f6370e8c3dd549) Signed-off-by: Ricardo Salveti <ricardo@foundries.io>
Diffstat (limited to 'conf/machine')
-rw-r--r--conf/machine/raspberrypi4-64.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/raspberrypi4-64.conf b/conf/machine/raspberrypi4-64.conf
index 633d188..b4d442e 100644
--- a/conf/machine/raspberrypi4-64.conf
+++ b/conf/machine/raspberrypi4-64.conf
@@ -31,6 +31,6 @@ KERNEL_IMAGETYPE_UBOOT ?= "Image"
31KERNEL_IMAGETYPE_DIRECT ?= "Image" 31KERNEL_IMAGETYPE_DIRECT ?= "Image"
32KERNEL_BOOTCMD ?= "booti" 32KERNEL_BOOTCMD ?= "booti"
33 33
34RPI_EXTRA_CONFIG ?= "\n# Force arm in 64bit mode. See: https://github.com/raspberrypi/firmware/issues/1193.\narm_64bit=1" 34RPI_EXTRA_CONFIG += "\n# Force arm in 64bit mode. See: https://github.com/raspberrypi/firmware/issues/1193.\narm_64bit=1"
35 35
36ARMSTUB ?= "armstub8-gic.bin" 36ARMSTUB ?= "armstub8-gic.bin"