mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 12:59:03 +02:00

* No functional changes. * Moved to my fork of the kernel tree as I have a few patches to push up. * Also sync over newer linux.inc.
25 lines
702 B
BlitzBasic
Executable File
25 lines
702 B
BlitzBasic
Executable File
COMPATIBLE_MACHINE = "raspberrypi"
|
|
|
|
require linux.inc
|
|
|
|
DESCRIPTION = "Linux kernel for the RaspberryPi board"
|
|
|
|
# This is on the rpi-patches branch
|
|
SRCREV = "2fb814968753d0d4a5fdf056a3a8c9eee3c41aa6"
|
|
|
|
SRC_URI = "git://github.com/djwillis/rpi-linux.git;protocol=git;branch=rpi-patches \
|
|
"
|
|
|
|
LINUX_VERSION ?= "3.1.9-rpi"
|
|
PV = "${LINUX_VERSION}+${PR}+git${SRCREV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
# NOTE: For now we pull in the default config from the RPi kernel GIT tree.
|
|
|
|
KERNEL_DEFCONFIG = "bcmrpi_defconfig"
|
|
|
|
do_configure_prepend() {
|
|
install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available."
|
|
}
|