blob: dd19671d437a0b6a66c1013b5fa5f21dd28227c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
inherit esw python3native
ESW_COMPONENT_SRC = "/lib/sw_services/xiltimer/src/"
ESW_COMPONENT_NAME = "libxiltimer.a"
DEPENDS += "libxil"
do_configure:prepend() {
# 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}/
)
}
|