aboutsummaryrefslogtreecommitdiffstats
path: root/meta-arago-distro/recipes-tisdk/tisdk-readme/tisdk-readme.bb
blob: 59df0c973138616f4bd82d1531c0a4b0575e1de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
DESCRIPTION = "Package that will install a README file into the SDK prebuilt-binaries directory"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"

SRC_URI = "\
    file://README \
"

PR = "r0"
PV = "1.0"

PACKAGE_ARCH = "${MACHINE_ARCH}"

S = "${WORKDIR}"

do_install () {
    install -d ${D}/board-support/prebuilt-images

    install -m 0644 ${S}/README ${D}/board-support/prebuilt-images/
}

FILES:${PN} += "board-support/*"