summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-standalone-experimental/recipes-libraries/nativesdk-esw-conf_git.bb
blob: 63119fd4baf1e40b6f3a57f4b33861d554bbc2a0 (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
29
30
# Can't depend on esw since this is needed for setup!
inherit xlnx-embeddedsw nativesdk

# We need to override the inherit
require conf/dtb-embeddedsw.inc

S = "${WORKDIR}/git"
B = "${WORKDIR}/build"

# Don't need any specific dependencies for this
DEPENDS = ""

COMPATIBLE_HOST:forcevariable = ".*"

ESW_COMPONENT_SRC = "/XilinxProcessorIPLib/drivers/"

do_configure[noexec] = '1'
do_compile[noexec] = '1'

do_install() {
    # The configuration step requires only the yaml files, make them
    # available to the SDK
    cd ${S}${ESW_COMPONENT_SRC}
    for each in `find . -name *.yaml` ; do
        mkdir -p $(dirname ${D}/${datadir}/embeddedsw${ESW_COMPONENT_SRC}$each)
        install -m 0644 $each ${D}/${datadir}/embeddedsw${ESW_COMPONENT_SRC}$each
    done
}

FILES:${PN} += "${datadir}/embeddedsw"