From c527fd1f14c27855a37f2e8ac5346ce8d940ced2 Mon Sep 17 00:00:00 2001 From: Tudor Florea Date: Thu, 16 Oct 2014 03:05:19 +0200 Subject: initial commit for Enea Linux 4.0-140929 Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea --- .../guile/files/arm_endianness.patch | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 meta/recipes-devtools/guile/files/arm_endianness.patch (limited to 'meta/recipes-devtools/guile/files/arm_endianness.patch') diff --git a/meta/recipes-devtools/guile/files/arm_endianness.patch b/meta/recipes-devtools/guile/files/arm_endianness.patch new file mode 100644 index 0000000000..ea4328b81d --- /dev/null +++ b/meta/recipes-devtools/guile/files/arm_endianness.patch @@ -0,0 +1,23 @@ +Support form ARM endianness + +Fixes Yocto bug# 2729 + +Signed-off-by: Khem Raj + +Upstream-Status: Pending + +Index: guile-2.0.5/module/system/base/target.scm +=================================================================== +--- guile-2.0.5.orig/module/system/base/target.scm 2012-01-24 03:06:06.000000000 -0800 ++++ guile-2.0.5/module/system/base/target.scm 2012-07-12 13:05:44.372364103 -0700 +@@ -70,7 +70,9 @@ + ((member cpu '("sparc" "sparc64" "powerpc" "powerpc64" "spu" + "mips" "mips64")) + (endianness big)) +- ((string-match "^arm.*el" cpu) ++ ((string-match "^arm.*eb" cpu) ++ (endianness big)) ++ ((string-match "^arm.*" cpu) + (endianness little)) + (else + (error "unknown CPU endianness" cpu))))) -- cgit v1.2.3-54-g00ecf