summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"