blob: 72f8f90cab1f01fd8f28d317c97f0d96dfb4526f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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"
|