blob: 22d7955e61679fd7026e2a8f53fbeb4bc487d428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
inherit esw python3native
ESW_COMPONENT_SRC = "/ThirdParty/bsp/freertos10_xilinx/src/"
ESW_COMPONENT_NAME = "libfreertos.a"
DEPENDS += "libxil xilstandalone xiltimer"
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}/
)
}
|