diff options
author | Jonathan Liu <net147@gmail.com> | 2015-10-04 13:15:33 +1100 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2015-10-13 19:33:03 +0200 |
commit | f22ecc425c238bdc34cccdf3ac21b59a663ae52c (patch) | |
tree | ce79f40a7b46ff30c81d1fa79cb816230853dd17 | |
parent | 72ea51f87b6c22e7cfbdf0541d7b380ef73bf10d (diff) | |
download | meta-raspberrypi-f22ecc425c238bdc34cccdf3ac21b59a663ae52c.tar.gz meta-raspberrypi-f22ecc425c238bdc34cccdf3ac21b59a663ae52c.tar.bz2 meta-raspberrypi-f22ecc425c238bdc34cccdf3ac21b59a663ae52c.zip |
linux-raspberrypi.inc: use SRCPV instead of SRCREV for PV
SRCPV is intended to be used by PV. Using SRCREV for PV is incorrect.
Signed-off-by: Jonathan Liu <net147@gmail.com>
-rw-r--r-- | recipes-kernel/linux/linux-raspberrypi.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes-kernel/linux/linux-raspberrypi.inc b/recipes-kernel/linux/linux-raspberrypi.inc index d60a3e9..70e8bfe 100644 --- a/recipes-kernel/linux/linux-raspberrypi.inc +++ b/recipes-kernel/linux/linux-raspberrypi.inc @@ -12,7 +12,8 @@ SRC_URI += " \ COMPATIBLE_MACHINE = "raspberrypi" -PV = "${LINUX_VERSION}+git${SRCREV}" +PE = "1" +PV = "${LINUX_VERSION}+git${SRCPV}" # NOTE: For now we pull in the default config from the RPi kernel GIT tree. KERNEL_DEFCONFIG_raspberrypi ?= "bcmrpi_defconfig" |