mirror of
git://git.yoctoproject.org/meta-raspberrypi
synced 2026-05-19 03:09:45 +00:00
The development branches of linux-raspberrypi are rebased frequently. To avoid fetch failures caused by out-of-date git hashes we need to use AUTOREV. LINUX_VERSION may need to be overridden in local.conf to match the upstream version. Signed-off-by: Paul Barker <pbarker@toganlabs.com>
14 lines
482 B
BlitzBasic
14 lines
482 B
BlitzBasic
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-4.9:"
|
|
|
|
LINUX_VERSION ?= "4.10.0-rc8"
|
|
|
|
SRCREV = "${AUTOREV}"
|
|
SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-4.10.y \
|
|
"
|
|
require linux-raspberrypi.inc
|
|
|
|
# A LOADADDR is needed when building a uImage format kernel. This value is not
|
|
# set by default in rpi-4.8.y and later branches so we need to provide it
|
|
# manually. This value unused if KERNEL_IMAGETYPE is not uImage.
|
|
KERNEL_EXTRA_ARGS += "LOADADDR=0x00008000"
|