blob: 3f167bb29d4c366b8e6749cafbcc7dd22edfc349 [file] [log] [blame]
Andrew Geissler9347dd42023-03-03 12:38:41 -06001LINUX_VERSION ?= "5.15.92"
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00002LINUX_RPI_BRANCH ?= "rpi-5.15.y"
3LINUX_RPI_KMETA_BRANCH ?= "yocto-5.15"
4
Andrew Geissler9347dd42023-03-03 12:38:41 -06005SRCREV_machine = "14b35093ca68bf2c81bbc90aace5007142b40b40"
6SRCREV_meta = "509f4b9d68337f103633d48b621c1c9aa0dc975d"
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00007
8KMETA = "kernel-meta"
9
10SRC_URI = " \
11 git://github.com/raspberrypi/linux.git;name=machine;branch=${LINUX_RPI_BRANCH};protocol=https \
12 git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=${LINUX_RPI_KMETA_BRANCH};destsuffix=${KMETA} \
Patrick Williams864cc432023-02-09 14:54:44 -060013 file://rpi.scc \
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000014 file://powersave.cfg \
15 file://android-drivers.cfg \
16 "
17
18require linux-raspberrypi.inc
19
20KERNEL_DTC_FLAGS += "-@ -H epapr"
Andrew Geissler87f5cff2022-09-30 13:13:31 -050021
22RDEPENDS:${KERNEL_PACKAGE_NAME}:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}"
23RDEPENDS:${KERNEL_PACKAGE_NAME}-base:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}-base"
24RDEPENDS:${KERNEL_PACKAGE_NAME}-image:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}-image"
25RDEPENDS:${KERNEL_PACKAGE_NAME}-dev:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}-dev"
26RDEPENDS:${KERNEL_PACKAGE_NAME}-vmlinux:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}-vmlinux"
27RDEPENDS:${KERNEL_PACKAGE_NAME}-modules:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}-modules"
28RDEPENDS:${KERNEL_PACKAGE_NAME}-dbg:raspberrypi-armv7:append = " ${RASPBERRYPI_v7_KERNEL_PACKAGE_NAME}-dbg"
29
30DEPLOYDEP = ""
31DEPLOYDEP:raspberrypi-armv7 = "${RASPBERRYPI_v7_KERNEL}:do_deploy"
32do_deploy[depends] += "${DEPLOYDEP}"