diff options
author | Mark Hatle <mark.hatle@xilinx.com> | 2021-03-16 14:02:00 -0700 |
---|---|---|
committer | Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com> | 2021-09-27 21:30:10 -0700 |
commit | ac0516ce7916796fbde8a20db8c179b77dc92bdc (patch) | |
tree | 00e54739768b100f129500eab217f26dce74d4d0 /meta-xilinx-standalone-experimental/recipes-drivers/csudma_git.bb | |
parent | 58c8191477d70802bf0a88180a0f731f8179731f (diff) | |
download | meta-xilinx-ac0516ce7916796fbde8a20db8c179b77dc92bdc.tar.gz |
meta-xilinx-standalone-experimental: Adjust to match recent changes
Changes to meta-xilinx-standalone, as well as the embeddedsw require various
changes to be made. This brings the implementation up to the current level.
Note: various things do not yet compile!
Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-standalone-experimental/recipes-drivers/csudma_git.bb')
-rw-r--r-- | meta-xilinx-standalone-experimental/recipes-drivers/csudma_git.bb | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/meta-xilinx-standalone-experimental/recipes-drivers/csudma_git.bb b/meta-xilinx-standalone-experimental/recipes-drivers/csudma_git.bb index f505a8af..c5e83b67 100644 --- a/meta-xilinx-standalone-experimental/recipes-drivers/csudma_git.bb +++ b/meta-xilinx-standalone-experimental/recipes-drivers/csudma_git.bb | |||
@@ -1,3 +1,18 @@ | |||
1 | inherit esw_examples | 1 | inherit features_check |
2 | 2 | ||
3 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/csudma/examples/" | 3 | REQUIRED_DISTRO_FEATURES = "csudma" |
4 | |||
5 | inherit esw python3native | ||
6 | |||
7 | DEPENDS += "xilstandalone xilmem" | ||
8 | |||
9 | ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/csudma/src/" | ||
10 | ESW_COMPONENT_NAME = "libcsudma.a" | ||
11 | |||
12 | do_configure_prepend() { | ||
13 | LOPPER_DTC_FLAGS="-b 0 -@" lopper.py ${DTS_FILE} -- baremetal_xparameters_xlnx.py ${ESW_MACHINE} ${S} | ||
14 | install -m 0755 xparameters.h ${S}/${ESW_COMPONENT_SRC}/ | ||
15 | } | ||
16 | |||
17 | addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot | ||
18 | do_prepare_recipe_sysroot[rdeptask] = "do_unpack" | ||