aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/glibc
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/glibc')
-rw-r--r--recipes/glibc/glibc-package.bbclass7
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes/glibc/glibc-package.bbclass b/recipes/glibc/glibc-package.bbclass
index 69b569e346..4d7f6fdff9 100644
--- a/recipes/glibc/glibc-package.bbclass
+++ b/recipes/glibc/glibc-package.bbclass
@@ -265,7 +265,12 @@ python package_do_split_gconvs () {
elif target_arch == "powerpc":
target_arch = "ppc"
- kernel_ver = bb.data.getVar("OLDEST_KERNEL", d, 1)
+ # This is a hack till linux-libc-headers gets patched for the missing arm syscalls and all arm device kernels as well
+ if bb.data.getVar("DISTRO_NAME", d, 1) == "Angstrom":
+ kernel_ver = "2.6.24"
+ else:
+ kernel_ver = bb.data.getVar("OLDEST_KERNEL", d, 1)
+
if kernel_ver is None:
qemu = "qemu-%s -s 1048576" % target_arch
else:
valgrind OpenEmbedded Core user contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/unfs-server/unfs-server-2.2beta47/009-multirw.patch
blob: 65b0b9eee5e06d422aef3c66a2fb02339058f595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15