diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-07-22 11:26:05 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-07-22 11:26:05 +0000 |
commit | 50e3ea738d7c73b155072538f63d78df1d9177a4 (patch) | |
tree | e7ebb7d23a6fa346917969093b7429c6a9c71d65 /meta/packages | |
parent | 44abf32a27b3b69f26c694d1d4b60edc15f0db33 (diff) | |
download | poky-50e3ea738d7c73b155072538f63d78df1d9177a4.tar.gz |
linux-rp: added armv7a fix from linux-omap to make qemuarmv7 build
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4926 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/linux/linux-rp-2.6.26/fixes.patch | 38 | ||||
-rw-r--r-- | meta/packages/linux/linux-rp_2.6.26.bb | 3 |
2 files changed, 40 insertions, 1 deletions
diff --git a/meta/packages/linux/linux-rp-2.6.26/fixes.patch b/meta/packages/linux/linux-rp-2.6.26/fixes.patch new file mode 100644 index 0000000000..5df21d5faa --- /dev/null +++ b/meta/packages/linux/linux-rp-2.6.26/fixes.patch | |||
@@ -0,0 +1,38 @@ | |||
1 | Index: git/arch/arm/Makefile | ||
2 | =================================================================== | ||
3 | --- git.orig/arch/arm/Makefile 2008-06-13 13:10:59.000000000 +0100 | ||
4 | +++ git/arch/arm/Makefile 2008-07-19 10:31:31.000000000 +0100 | ||
5 | @@ -47,7 +47,7 @@ | ||
6 | # Note that GCC does not numerically define an architecture version | ||
7 | # macro, but instead defines a whole series of macros which makes | ||
8 | # testing for a specific architecture or later rather impossible. | ||
9 | -arch-$(CONFIG_CPU_32v7) :=-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7a,-march=armv5t -Wa$(comma)-march=armv7a) | ||
10 | +arch-$(CONFIG_CPU_32v7) :=-D__LINUX_ARM_ARCH__=7 $(call cc-option,-march=armv7-a,-march=armv5t -Wa$(comma)-march=armv7-a) | ||
11 | arch-$(CONFIG_CPU_32v6) :=-D__LINUX_ARM_ARCH__=6 $(call cc-option,-march=armv6,-march=armv5t -Wa$(comma)-march=armv6) | ||
12 | # Only override the compiler option if ARMv6. The ARMv6K extensions are | ||
13 | # always available in ARMv7 | ||
14 | Index: git/include/asm-arm/processor.h | ||
15 | =================================================================== | ||
16 | --- git.orig/include/asm-arm/processor.h 2008-06-13 13:12:19.000000000 +0100 | ||
17 | +++ git/include/asm-arm/processor.h 2008-07-19 10:31:31.000000000 +0100 | ||
18 | @@ -109,14 +109,16 @@ | ||
19 | #if __LINUX_ARM_ARCH__ >= 5 | ||
20 | |||
21 | #define ARCH_HAS_PREFETCH | ||
22 | -static inline void prefetch(const void *ptr) | ||
23 | +#define prefetch(ptr) __builtin_prefetch(ptr) | ||
24 | + | ||
25 | +/*static inline void prefetch(const void *ptr) | ||
26 | { | ||
27 | __asm__ __volatile__( | ||
28 | - "pld\t%0" | ||
29 | + "pld\ta%0" | ||
30 | : | ||
31 | - : "o" (*(char *)ptr) | ||
32 | + : "p" (ptr) | ||
33 | : "cc"); | ||
34 | -} | ||
35 | +}*/ | ||
36 | |||
37 | #define ARCH_HAS_PREFETCHW | ||
38 | #define prefetchw(ptr) prefetch(ptr) | ||
diff --git a/meta/packages/linux/linux-rp_2.6.26.bb b/meta/packages/linux/linux-rp_2.6.26.bb index a2f264761a..04e0ff4d0d 100644 --- a/meta/packages/linux/linux-rp_2.6.26.bb +++ b/meta/packages/linux/linux-rp_2.6.26.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | require linux-rp.inc | 1 | require linux-rp.inc |
2 | 2 | ||
3 | PR = "r7" | 3 | PR = "r8" |
4 | 4 | ||
5 | DEFAULT_PREFERENCE = "-1" | 5 | DEFAULT_PREFERENCE = "-1" |
6 | DEFAULT_PREFERENCE_qemuarm = "1" | 6 | DEFAULT_PREFERENCE_qemuarm = "1" |
@@ -56,6 +56,7 @@ SRC_URI = "${KERNELORG_MIRROR}pub/linux/kernel/v2.6/linux-2.6.25.tar.bz2 \ | |||
56 | file://versatile-armv6.patch;patch=1 \ | 56 | file://versatile-armv6.patch;patch=1 \ |
57 | file://cpufreq-fix.patch;patch=1 \ | 57 | file://cpufreq-fix.patch;patch=1 \ |
58 | file://zaurus-i2c-init.patch;patch=1 \ | 58 | file://zaurus-i2c-init.patch;patch=1 \ |
59 | file://fixes.patch;patch=1 \ | ||
59 | file://defconfig-c7x0 \ | 60 | file://defconfig-c7x0 \ |
60 | file://defconfig-hx2000 \ | 61 | file://defconfig-hx2000 \ |
61 | file://defconfig-akita \ | 62 | file://defconfig-akita \ |