1
0
mirror of https://git.yoctoproject.org/meta-ti synced 2026-04-20 19:53:43 +00:00
Files
meta-ti/recipes-ti/beagleboard/beaglebone-getting-started.bb
Khem Raj 6fe2b1b668 beaglebone-getting-started: update to the latest and fix licenses
This is as per
https://github.com/jadonk/beaglebone-getting-started/blob/master/LICENSE.txt
* Mention CC-BY-SA-3.0
* Update to GPLv3+ since RNDIS addition
* Remove ambiguous "others" license

Package now contains sample bash scripts for the host
* skip file-rdeps QA check

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
2019-10-01 03:58:45 +00:00

22 lines
532 B
BlitzBasic

SUMMARY = "BeagleBone Getting Started Guide"
PR = "r22"
inherit allarch
LICENSE = "CC-BY-SA-3.0 & GPLv3+ & MIT & PD"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=f6f02761e31334c48f7021fb94c89aaa"
SRCREV = "05bedba192646152b7bc80b0accaea75aef864e5"
SRC_URI = "git://github.com/jadonk/beaglebone-getting-started.git"
S = "${WORKDIR}/git"
do_install() {
install -d ${D}${datadir}/${PN}
cp -R --no-dereference --preserve=mode,links ${S}/* ${D}${datadir}/${PN}
}
FILES_${PN} += "${datadir}/${PN}"
INSANE_SKIP_${PN} = "file-rdeps"