blob: 8e0b0c0665d45a669b2257c15d136a64f7cb0f0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
inherit esw python3native esw_apps_common
ESW_COMPONENT_SRC = "/lib/sw_apps/zynq_dram_test/src/"
DEPENDS += "libxil xiltimer"
ESW_EXECUTABLE_NAME = "zynq_dram_test"
do_configure:prepend() {
(
cd ${S}
lopper ${DTS_FILE} -- baremetallinker_xlnx.py ${ESW_MACHINE} ${S}/${ESW_COMPONENT_SRC}
install -m 0755 *.cmake ${S}/${ESW_COMPONENT_SRC}/
cp -rf ${S}/scripts/linker_files/ ${S}/${ESW_COMPONENT_SRC}/linker_files
install -m 0644 ${S}/cmake/UserConfig.cmake ${S}/${ESW_COMPONENT_SRC}
)
}
do_generate_app_data() {
# This script should also not rely on relative paths and such
cd ${S}
lopper ${DTS_FILE} -- bmcmake_metadata_xlnx.py ${ESW_MACHINE} ${S}/${ESW_COMPONENT_SRC} hwcmake_metadata ${S}
install -m 0755 *.cmake ${S}/${ESW_COMPONENT_SRC}/
}
addtask do_generate_app_data before do_configure after do_prepare_recipe_sysroot
do_prepare_recipe_sysroot[rdeptask] = "do_unpack"
FILES:${PN} = "${base_libdir}/firmware/zynq_dram*"
|