summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Spencer <matthew@thespencers.me.uk>2021-01-14 16:23:13 +0000
committerAndrei Gherzan <andrei@gherzan.com>2021-01-19 09:24:09 +0000
commit881e603ca240576f63ecaf9ca0f6370e8c3dd549 (patch)
tree74be31608ab121b5c1910de73b23444b5767e8d3
parent17eb1a2f00b6d15c073e318181ab0d34b1b5c965 (diff)
downloadmeta-raspberrypi-881e603ca240576f63ecaf9ca0f6370e8c3dd549.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
-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"