summaryrefslogtreecommitdiff
path: root/meta-xilinx/meta-xilinx-standalone/recipes-libraries/libxil_git.bb
diff options
context:
space:
mode:
authorJason M. Bills <jason.m.bills@intel.com>2022-01-06 23:59:39 +0300
committerJason M. Bills <jason.m.bills@intel.com>2022-01-06 23:59:39 +0300
commit32777eec25d2c527a62e5ffab90a3dfef35855aa (patch)
tree588a90a6fe9fb0b35c7ce23ea3bd79fa5151ccde /meta-xilinx/meta-xilinx-standalone/recipes-libraries/libxil_git.bb
parent61f1ca1b31a9a1108e9e7f71e47fdc19beb0490b (diff)
parent5cc2f81c5b66da00cad24e18b0d23442af060c3f (diff)
downloadopenbmc-32777eec25d2c527a62e5ffab90a3dfef35855aa.tar.xz
Merge tag '0.86' of firmware.bmc.openbmc.yocto.openbmc into update
Diffstat (limited to 'meta-xilinx/meta-xilinx-standalone/recipes-libraries/libxil_git.bb')
-rw-r--r--meta-xilinx/meta-xilinx-standalone/recipes-libraries/libxil_git.bb27
1 files changed, 0 insertions, 27 deletions
diff --git a/meta-xilinx/meta-xilinx-standalone/recipes-libraries/libxil_git.bb b/meta-xilinx/meta-xilinx-standalone/recipes-libraries/libxil_git.bb
deleted file mode 100644
index 4ac7c1150..000000000
--- a/meta-xilinx/meta-xilinx-standalone/recipes-libraries/libxil_git.bb
+++ /dev/null
@@ -1,27 +0,0 @@
-inherit esw python3native
-
-ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/"
-ESW_COMPONENT_NAME = "libxil.a"
-
-DEPENDS += "dtc-native python3-dtc-native python3-pyyaml-native xilstandalone xilmem device-tree"
-
-do_configure_prepend() {
- # This will generate CMakeLists.txt which contains
- # drivers for the libxil
- cd ${S}
- #TODO
- # This call was initially used to get the list of drivers and libraries required
- # by the design to the build system to use as dependencies to the application
- # being built, at this point this is all done in a single cmake build bundling
- # everything in libxil, which is undesired.
- DRIVERS_LIST=$(nativepython3 ${S}/scripts/getdrvlist.py -d ${DTBFILE})
-}
-
-do_generate_driver_data() {
- # This script should also not rely on relative paths and such
- cd ${S}
- nativepython3 ${S}/scripts/generate_drvdata.py -d ${DTBFILE}
-}
-
-addtask do_generate_driver_data before do_configure after do_prepare_recipe_sysroot
-do_prepare_recipe_sysroot[rdeptask] = "do_unpack"