diff options
author | Paul Barker <paul@paulbarker.me.uk> | 2017-01-16 07:26:56 +0000 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2017-01-18 17:08:00 +0100 |
commit | 6dcdb7fba382cf496205799c2672195274de350d (patch) | |
tree | 2eb073e05e31e757cfa19e0ab80d15dce2d14e23 | |
parent | 8716d7027c38d39e7768f6776594b409f6e7e1c4 (diff) | |
download | meta-raspberrypi-6dcdb7fba382cf496205799c2672195274de350d.tar.gz |
linux-raspberrypi: Drop v4.7
Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
-rw-r--r-- | recipes-kernel/linux/linux-raspberrypi-4.7/0001-fix-dtbo-rules.patch | 44 | ||||
-rw-r--r-- | recipes-kernel/linux/linux-raspberrypi_4.7.bb | 9 |
2 files changed, 0 insertions, 53 deletions
diff --git a/recipes-kernel/linux/linux-raspberrypi-4.7/0001-fix-dtbo-rules.patch b/recipes-kernel/linux/linux-raspberrypi-4.7/0001-fix-dtbo-rules.patch deleted file mode 100644 index 5113e23..0000000 --- a/recipes-kernel/linux/linux-raspberrypi-4.7/0001-fix-dtbo-rules.patch +++ /dev/null | |||
@@ -1,44 +0,0 @@ | |||
1 | From 13c8784da3dbd977f64cec740eba775b6fab11c2 Mon Sep 17 00:00:00 2001 | ||
2 | From: Herve Jourdain <herve.jourdain@neuf.fr> | ||
3 | Date: Fri, 20 May 2016 16:02:23 +0800 | ||
4 | Subject: [yocto][meta-raspberrypi][PATCH v4 4/5] linux-raspberrypi_4.4.inc: | ||
5 | support for .dtbo files for dtb overlays | ||
6 | |||
7 | Upstream-Status: Pending | ||
8 | |||
9 | Kernel 4.4.6+ on RaspberryPi support .dtbo files for overlays, instead of .dtb. | ||
10 | Patch the kernel, which has faulty rules to generate .dtbo the way yocto does | ||
11 | |||
12 | Signed-off-by: Herve Jourdain <herve.jourdain@neuf.fr> | ||
13 | --- | ||
14 | .../0001-fix-dtbo-rules.patch | 27 ++++++++++++++++++++++ | ||
15 | 1 file changed, 27 insertions(+) | ||
16 | create mode 100644 recipes-kernel/linux/linux-raspberrypi-4.4/0001-fix-dtbo-rules.patch | ||
17 | |||
18 | diff --git a/arch/arm/Makefile b/arch/arm/Makefile | ||
19 | index a2e7cf7..673c1cb 100644 | ||
20 | --- a/arch/arm/Makefile | ||
21 | +++ b/arch/arm/Makefile | ||
22 | @@ -333,6 +333,8 @@ $(INSTALL_TARGETS): | ||
23 | |||
24 | %.dtb: | scripts | ||
25 | $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $(boot)/dts/$@ | ||
26 | +%.dtbo: | scripts | ||
27 | + $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $(boot)/dts/$@ | ||
28 | |||
29 | PHONY += dtbs dtbs_install | ||
30 | |||
31 | diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib | ||
32 | index 3079c4f..6cc3766 100644 | ||
33 | --- a/scripts/Makefile.lib | ||
34 | +++ b/scripts/Makefile.lib | ||
35 | @@ -293,7 +293,8 @@ $(obj)/%.dtb: $(src)/%.dts FORCE | ||
36 | $(call if_changed_dep,dtc) | ||
37 | |||
38 | quiet_cmd_dtco = DTCO $@ | ||
39 | -cmd_dtco = $(CPP) $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $< ; \ | ||
40 | +cmd_dtco = mkdir -p $(dir ${dtc-tmp}) ; \ | ||
41 | + $(CPP) $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $< ; \ | ||
42 | $(objtree)/scripts/dtc/dtc -@ -H epapr -O dtb -o $@ -b 0 \ | ||
43 | -i $(dir $<) $(DTC_FLAGS) \ | ||
44 | -d $(depfile).dtc.tmp $(dtc-tmp) ; \ | ||
diff --git a/recipes-kernel/linux/linux-raspberrypi_4.7.bb b/recipes-kernel/linux/linux-raspberrypi_4.7.bb deleted file mode 100644 index 0315f8f..0000000 --- a/recipes-kernel/linux/linux-raspberrypi_4.7.bb +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:" | ||
2 | |||
3 | LINUX_VERSION ?= "4.7.7" | ||
4 | |||
5 | SRCREV = "a45a35c08598b23f9fd82e49c83b46c7d536244f" | ||
6 | SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-4.7.y \ | ||
7 | file://0001-fix-dtbo-rules.patch \ | ||
8 | " | ||
9 | require linux-raspberrypi.inc | ||