summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/files
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2015-05-06 13:24:53 -0400
committerDenys Dmytriyenko <denys@ti.com>2015-05-06 13:51:41 -0400
commit84a71a2560d56081a04b26fe50cfbb666df22f95 (patch)
treed681a25b2dc1533c5661f31a01fddf934602d0e5 /recipes-kernel/linux/files
parent7126dca19c9f109c7394267176547d24fd5eb259 (diff)
downloadmeta-ti-84a71a2560d56081a04b26fe50cfbb666df22f95.tar.gz
linux: remove outdated kernel recipes
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-kernel/linux/files')
-rw-r--r--recipes-kernel/linux/files/0001-arm-fix-builds-with-gcc-4.7.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/recipes-kernel/linux/files/0001-arm-fix-builds-with-gcc-4.7.patch b/recipes-kernel/linux/files/0001-arm-fix-builds-with-gcc-4.7.patch
deleted file mode 100644
index db701e21..00000000
--- a/recipes-kernel/linux/files/0001-arm-fix-builds-with-gcc-4.7.patch
+++ /dev/null
@@ -1,26 +0,0 @@
1From 0d12debe917269a013f8eddd42da8d3de5e3174e Mon Sep 17 00:00:00 2001
2From: Steve Sakoman <steve@sakoman.com>
3Date: Thu, 24 Jan 2013 15:42:01 -0800
4Subject: [PATCH] arm: fix builds with gcc 4.7
5
6new unaligned access support in GCC was triggering an alignment fault at boot
7---
8 arch/arm/kernel/head.S | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11diff --git a/arch/arm/kernel/head.S b/arch/arm/kernel/head.S
12index 6bd82d2..56b02cd 100644
13--- a/arch/arm/kernel/head.S
14+++ b/arch/arm/kernel/head.S
15@@ -336,7 +336,7 @@ __secondary_data:
16 * r13 = *virtual* address to jump to upon completion
17 */
18 __enable_mmu:
19-#ifdef CONFIG_ALIGNMENT_TRAP
20+#if defined(CONFIG_ALIGNMENT_TRAP) && __LINUX_ARM_ARCH__ < 6
21 orr r0, r0, #CR_A
22 #else
23 bic r0, r0, #CR_A
24--
251.8.1.2
26