diff options
author | Jaewon Lee <jaewon.lee@xilinx.com> | 2019-12-12 11:39:04 -0800 |
---|---|---|
committer | Jaewon Lee <jaewon.lee@xilinx.com> | 2019-12-12 11:39:04 -0800 |
commit | 29dd6e525b5ea2cdf79fd71c9a804e5b0608548d (patch) | |
tree | 7ccd78bb0060cfa4a238ae231c460d24cc7911ef | |
parent | 03115b3c35560617b2ffa9e911a6c1071ff6ad30 (diff) | |
download | meta-xilinx-29dd6e525b5ea2cdf79fd71c9a804e5b0608548d.tar.gz |
meson: Adding patch to add microblaze as supported CPU
Adding patch to add microblaze as supported CPU
Signed-off-by: Jaewon Lee <jaewon.lee@xilinx.com>
-rw-r--r-- | meta-xilinx-bsp/recipes-devtools/meson/files/0001-envconfig-Add-MicroBlaze-CPU-family.patch | 27 | ||||
-rw-r--r-- | meta-xilinx-bsp/recipes-devtools/meson/meson_%.bbappend | 2 |
2 files changed, 29 insertions, 0 deletions
diff --git a/meta-xilinx-bsp/recipes-devtools/meson/files/0001-envconfig-Add-MicroBlaze-CPU-family.patch b/meta-xilinx-bsp/recipes-devtools/meson/files/0001-envconfig-Add-MicroBlaze-CPU-family.patch new file mode 100644 index 00000000..51268da3 --- /dev/null +++ b/meta-xilinx-bsp/recipes-devtools/meson/files/0001-envconfig-Add-MicroBlaze-CPU-family.patch | |||
@@ -0,0 +1,27 @@ | |||
1 | From a623654f7e1d09efaa774506f190db876831990a Mon Sep 17 00:00:00 2001 | ||
2 | From: Nathan Rossi <nathan@nathanrossi.com> | ||
3 | Date: Thu, 19 Sep 2019 20:50:31 +1000 | ||
4 | Subject: [PATCH] envconfig: Add MicroBlaze CPU family | ||
5 | |||
6 | Add the CPU family for the MicroBlaze processor. | ||
7 | |||
8 | Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> | ||
9 | --- | ||
10 | mesonbuild/envconfig.py | 1 + | ||
11 | 1 files changed, 1 insertions(+) | ||
12 | |||
13 | diff --git a/mesonbuild/envconfig.py b/mesonbuild/envconfig.py | ||
14 | index 03c6346..fa6b8ef 100644 | ||
15 | --- a/mesonbuild/envconfig.py | ||
16 | +++ b/mesonbuild/envconfig.py | ||
17 | @@ -41,6 +41,7 @@ known_cpu_families = ( | ||
18 | 'arm', | ||
19 | 'e2k', | ||
20 | 'ia64', | ||
21 | + 'microblaze', | ||
22 | 'mips', | ||
23 | 'mips64', | ||
24 | 'parisc', | ||
25 | -- | ||
26 | 2.7.4 | ||
27 | |||
diff --git a/meta-xilinx-bsp/recipes-devtools/meson/meson_%.bbappend b/meta-xilinx-bsp/recipes-devtools/meson/meson_%.bbappend new file mode 100644 index 00000000..a8bbe320 --- /dev/null +++ b/meta-xilinx-bsp/recipes-devtools/meson/meson_%.bbappend | |||
@@ -0,0 +1,2 @@ | |||
1 | FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | ||
2 | SRC_URI += "file://0001-envconfig-Add-MicroBlaze-CPU-family.patch" | ||