diff options
author | Anirudha Sarangi <anirudha.sarangi@xilinx.com> | 2020-03-16 10:27:21 +0530 |
---|---|---|
committer | Mark Hatle <mark.hatle@xilinx.com> | 2020-03-16 07:41:39 -0700 |
commit | 1e2df1683096e2bb13d4e75ab83be03026bd7f8b (patch) | |
tree | c9e542d5ef324facc50c262799b1d13ec5077c35 /meta-xilinx-standalone | |
parent | fce7af1bbaf8344e7a08b6010c033becf8027fdd (diff) | |
download | meta-xilinx-1e2df1683096e2bb13d4e75ab83be03026bd7f8b.tar.gz |
meta-xilinx-standalone: recipes-libraries: Add recipe for freertos
This recipe compiles the freertos bsp.
Signed-off-by: Anirudha Sarangi <anirudha.sarangi@xilinx.com>
Signed-off-by: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-standalone')
-rw-r--r-- | meta-xilinx-standalone/recipes-libraries/freertos10-xilinx_git.bb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meta-xilinx-standalone/recipes-libraries/freertos10-xilinx_git.bb b/meta-xilinx-standalone/recipes-libraries/freertos10-xilinx_git.bb new file mode 100644 index 00000000..870524d2 --- /dev/null +++ b/meta-xilinx-standalone/recipes-libraries/freertos10-xilinx_git.bb | |||
@@ -0,0 +1,12 @@ | |||
1 | inherit esw python3native | ||
2 | |||
3 | ESW_COMPONENT_SRC = "/ThirdParty/bsp/freertos10_xilinx/src/" | ||
4 | ESW_COMPONENT_NAME = "libfreertos.a" | ||
5 | |||
6 | DEPENDS += "libxil xilstandalone xilmem dtc-native python3-pyyaml-native python3-dtc-native xiltimer" | ||
7 | |||
8 | do_configure_prepend() { | ||
9 | # This script should also not rely on relative paths and such | ||
10 | cd ${S} | ||
11 | nativepython3 ${S}/scripts/lib_parser.py -d ${DTBFILE} -o ${OECMAKE_SOURCEPATH} | ||
12 | } | ||