[oe-commits] [openembedded-core] 10/14: microblaze tune: change microblazeeb to microblaze

git at git.openembedded.org git at git.openembedded.org
Thu Feb 6 12:17:02 UTC 2020


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit c052b0c984b28d64527a66ea8e2936ca28b9406f
Author: Mark Hatle <mark.hatle at xilinx.com>
AuthorDate: Tue Feb 4 15:06:26 2020 -0600

    microblaze tune: change microblazeeb to microblaze
    
    Using microblazeeb breaks a number of autoconf recipes, including newlib
    components.  'microblaze' is defined as the big-endian version, while
    microblazeel is defined as the little-endian version.
    
    config.sub: 2018-07-03
    
    ...
            | maxq | mb | microblaze | microblazeel | mcore | mep | metag \
    ...
            | microblaze-* | microblazeel-* \
    ...
            microblaze*)
                    basic_machine=microblaze-xilinx
    ...
    
    Signed-off-by: Mark Hatle <mark.hatle at xilinx.com>
    Signed-off-by: Mark Hatle <mark.hatle at kernel.crashing.org>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/conf/machine/include/microblaze/arch-microblaze.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/conf/machine/include/microblaze/arch-microblaze.inc b/meta/conf/machine/include/microblaze/arch-microblaze.inc
index eab7171..89e9484 100644
--- a/meta/conf/machine/include/microblaze/arch-microblaze.inc
+++ b/meta/conf/machine/include/microblaze/arch-microblaze.inc
@@ -45,8 +45,8 @@ MBPKGARCH_TUNE .= "${@bb.utils.contains("TUNE_FEATURES", "frequency-optimized",
 require conf/machine/include/microblaze/feature-microblaze-versions.inc
 require conf/machine/include/microblaze/feature-microblaze-math.inc
 
-# Architecture name, either 'microblazeeb' or 'microblazeel' depending on endianess
-TUNE_ARCH = "microblaze${@bb.utils.contains("TUNE_FEATURES", "bigendian", "eb", "el", d)}"
+# Architecture name, either 'microblaze' or 'microblazeel' depending on endianess
+TUNE_ARCH = "microblaze${@bb.utils.contains("TUNE_FEATURES", "bigendian", "", "el", d)}"
 
 # Package Architecture formatting
 TUNE_PKGARCH = "microblaze${MBPKGARCH_ENDIAN}${MBPKGARCH_VERSION}${MBPKGARCH_TUNE}${MBPKGARCH_MATH}"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list