Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/yocto-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- raspberrypi0-2w
- raspberrypi0
- raspberrypi0-wifi
- raspberrypi2-64
- raspberrypi2
- raspberrypi3-64
- raspberrypi3
Expand Down
1 change: 1 addition & 0 deletions conf/machine/raspberrypi-armv8.conf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ MACHINE_EXTRA_RRECOMMENDS += "\
"

RPI_KERNEL_DEVICETREE = " \
broadcom/bcm2710-rpi-2-b.dtb \
broadcom/bcm2710-rpi-3-b.dtb \
broadcom/bcm2710-rpi-3-b-plus.dtb \
broadcom/bcm2837-rpi-3-b.dtb \
Expand Down
30 changes: 30 additions & 0 deletions conf/machine/raspberrypi2-64.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#@TYPE: Machine
#@NAME: RaspberryPi 2 V1.2 Development Board
#@DESCRIPTION: Machine configuration for the RaspberryPi 2 in 64 bits mode

MACHINEOVERRIDES =. "raspberrypi3-64:"

DEFAULTTUNE ?= "cortexa53-nocrypto"
require conf/machine/include/arm/armv8a/tune-cortexa53.inc
include conf/machine/include/rpi-base.inc

RPI_KERNEL_DEVICETREE = " \
broadcom/bcm2710-rpi-2-b.dtb \
broadcom/bcm2710-rpi-3-b.dtb \
broadcom/bcm2710-rpi-3-b-plus.dtb \
broadcom/bcm2837-rpi-3-b.dtb \
broadcom/bcm2710-rpi-cm3.dtb \
"

SDIMG_KERNELIMAGE ?= "kernel8.img"
# When u-boot is enabled we need to use the "Image" format and the "booti"
# command to load the kernel
KERNEL_IMAGETYPE_UBOOT ?= "Image"
# "zImage" not supported on arm64 and ".gz" images not supported by bootloader yet
KERNEL_IMAGETYPE_DIRECT ?= "Image"
KERNEL_BOOTCMD ?= "booti"
UBOOT_MACHINE = "rpi_arm64_config"
SERIAL_CONSOLES ?= "115200;ttyAMA0"

VC4DTBO ?= "vc4-fkms-v3d"
ARMSTUB ?= "armstub8.bin"
1 change: 1 addition & 0 deletions conf/machine/raspberrypi3-64.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ require conf/machine/include/arm/armv8a/tune-cortexa53.inc
include conf/machine/include/rpi-base.inc

RPI_KERNEL_DEVICETREE = " \
broadcom/bcm2710-rpi-2-b.dtb \
broadcom/bcm2710-rpi-3-b.dtb \
broadcom/bcm2710-rpi-3-b-plus.dtb \
broadcom/bcm2837-rpi-3-b.dtb \
Expand Down
4 changes: 4 additions & 0 deletions docs/layer-contents.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* raspberrypi0-wifi
* raspberrypi0-2w-64
* raspberrypi2
* raspberrypi2-64 (64 bit kernel & userspace)
* raspberrypi3
* raspberrypi3-64 (64 bit kernel & userspace)
* raspberrypi4
Expand All @@ -15,6 +16,9 @@
* raspberrypi-cm (dummy alias for raspberrypi)
* raspberrypi-cm3

Note: The raspberrypi2-64 machine includes 64-bit support for Raspberry Pi 2B
V1.2.

Note: The raspberrypi3 machines include support for Raspberry Pi 3B+.

## Multi-board Machines
Expand Down
Loading