diff options
author | Mark Hatle <mark.hatle@kernel.crashing.org> | 2020-02-04 15:06:30 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-06 12:16:34 +0000 |
commit | cdcacf26ec95cfa874b2060c059478666956cdca (patch) | |
tree | a720420ff80d92752a53bfe2857f7125ed9d13ab /meta/classes/meson.bbclass | |
parent | d6b0154a4c1e897d6cd2f815c13ad9d6f34c1355 (diff) | |
download | poky-cdcacf26ec95cfa874b2060c059478666956cdca.tar.gz |
microblaze: Adjust Linux items from microblazeeb to microblaze
Due to recent changes to the tune, in order to match config.guess, the name
of the big-endian microblaze architecture was changes to 'microblaze'.
(From OE-Core rev: 6f6a6bbac684ead3fe6d070d61f17c2f611a2c87)
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/meson.bbclass')
-rw-r--r-- | meta/classes/meson.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/meson.bbclass b/meta/classes/meson.bbclass index 001602bd04..06034e8b47 100644 --- a/meta/classes/meson.bbclass +++ b/meta/classes/meson.bbclass | |||
@@ -57,7 +57,7 @@ def meson_cpu_family(var, d): | |||
57 | return 'mips64' | 57 | return 'mips64' |
58 | elif re.match(r"i[3-6]86", arch): | 58 | elif re.match(r"i[3-6]86", arch): |
59 | return "x86" | 59 | return "x86" |
60 | elif arch == "microblazeel" or arch == "microblazeeb": | 60 | elif arch == "microblazeel": |
61 | return "microblaze" | 61 | return "microblaze" |
62 | else: | 62 | else: |
63 | return arch | 63 | return arch |