mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-07-16 15:56:57 +00:00
6ca1f75017
Captures raspberrypi/linux PR #7023 ("ARM: dts: Select the PL011 platform driver", merged 2025-09-25) which switches BCM2711 PL011 UART nodes to the arm,pl011-axi compatible. Without it, the in-kernel hci_uart_bcm driver fails to bring up the BCM43455 BT chip on the CM4 (hci0: command 0xfc18 tx timeout). Also brings ~14 months of stable 6.12.x point releases including CVE backports. LINUX_VERSION : 6.12.25 -> 6.12.93 SRCREV_machine : 3dd2c2c5... -> d8ab4e90... (rpi-6.12.y HEAD) SRCREV_meta : 1f6ab68a... -> e66f4099... (yocto-6.12 HEAD) Signed-off-by: Enzo Frese <enzo.frese.g@gmail.com>
32 lines
1.5 KiB
BlitzBasic
32 lines
1.5 KiB
BlitzBasic
LINUX_VERSION ?= "6.12.93"
|
|
LINUX_RPI_BRANCH ?= "rpi-6.12.y"
|
|
LINUX_RPI_KMETA_BRANCH ?= "yocto-6.12"
|
|
|
|
SRCREV_machine = "d8ab4e908235da7727f22dd36ad5af224671677d"
|
|
SRCREV_meta = "e66f40994fc740818776a0f3af55e8b6d74bfbef"
|
|
|
|
KMETA = "kernel-meta"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/raspberrypi/linux.git;name=machine;branch=${LINUX_RPI_BRANCH};protocol=https \
|
|
git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=${LINUX_RPI_KMETA_BRANCH};destsuffix=${KMETA};protocol=https \
|
|
file://powersave.cfg \
|
|
file://android-drivers.cfg \
|
|
"
|
|
|
|
require linux-raspberrypi.inc
|
|
|
|
KERNEL_DTC_FLAGS += "-@ -H epapr"
|
|
|
|
RDEPENDS:${KERNEL_PACKAGE_NAME}:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}"
|
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-base:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}-base"
|
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-image:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}-image"
|
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-dev:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}-dev"
|
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-vmlinux:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}-vmlinux"
|
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-modules:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}-modules"
|
|
RDEPENDS:${KERNEL_PACKAGE_NAME}-dbg:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}-dbg"
|
|
|
|
DEPLOYDEP = ""
|
|
DEPLOYDEP:raspberrypi-armv7 = "${RASPBERRYPI_v7_KERNEL}:do_deploy"
|
|
do_deploy[depends] += "${DEPLOYDEP}"
|