summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrei Gherzan <andrei@gherzan.ro>2019-07-12 14:59:11 +0100
committerAndrei Gherzan <andrei@gherzan.ro>2019-07-15 14:21:26 +0100
commit5b99f21a7b1a015078a0ff6ccbadb240e2296fce (patch)
tree44bf56bbd688037315b8f35586c03d08f592babe
parentb40c265c20565ebb569e60057b66c34f66e40cbc (diff)
downloadmeta-raspberrypi-5b99f21a7b1a015078a0ff6ccbadb240e2296fce.tar.gz
raspberrypi4-64.conf: Uboot configuration and drop armstub
We drop armstub configuration because the new firmware includes them. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
-rw-r--r--conf/machine/raspberrypi4-64.conf10
1 files changed, 8 insertions, 2 deletions
diff --git a/conf/machine/raspberrypi4-64.conf b/conf/machine/raspberrypi4-64.conf
index ea1f6c2..36509a9 100644
--- a/conf/machine/raspberrypi4-64.conf
+++ b/conf/machine/raspberrypi4-64.conf
@@ -19,10 +19,16 @@ RPI_KERNEL_DEVICETREE = " \
19SDIMG_KERNELIMAGE ?= "kernel8.img" 19SDIMG_KERNELIMAGE ?= "kernel8.img"
20SERIAL_CONSOLES ?= "115200;ttyS0" 20SERIAL_CONSOLES ?= "115200;ttyS0"
21 21
22MACHINE_FEATURES_append = " armstub vc4graphics" 22UBOOT_MACHINE = "rpi_4_config"
23MACHINE_FEATURES_append = " vc4graphics"
24
23VC4DTBO ?= "vc4-fkms-v3d" 25VC4DTBO ?= "vc4-fkms-v3d"
24ARMSTUB ?= "armstub8-gic.bin"
25 26
27# When u-boot is enabled we need to use the "Image" format and the "booti"
28# command to load the kernel
29KERNEL_IMAGETYPE_UBOOT ?= "Image"
30# "zImage" not supported on arm64 and ".gz" images not supported by bootloader yet
26KERNEL_IMAGETYPE_DIRECT ?= "Image" 31KERNEL_IMAGETYPE_DIRECT ?= "Image"
32KERNEL_BOOTCMD ?= "booti"
27 33
28RPI_EXTRA_CONFIG ?= "\n# RPi4 64bit has some limitation - see https://github.com/raspberrypi/linux/commit/cdb78ce891f6c6367a69c0a46b5779a58164bd4b\ntotal_mem=1024\narm_64bit=1" 34RPI_EXTRA_CONFIG ?= "\n# RPi4 64bit has some limitation - see https://github.com/raspberrypi/linux/commit/cdb78ce891f6c6367a69c0a46b5779a58164bd4b\ntotal_mem=1024\narm_64bit=1"