blob: e67ea97bedc18fb4f368a3f6e2d635e1fb5c247c (
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 uEnv.txt file into the SDK prebuilt-binaries directory"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
SRC_URI = "\
file://uEnv.txt \
"
PR = "r0"
PV = "1.0"
PACKAGE_ARCH = "${MACHINE_ARCH}"
S = "${WORKDIR}"
do_install () {
install -d ${D}/board-support/prebuilt-images
install -m 0644 ${S}/uEnv.txt ${D}/board-support/prebuilt-images/
}
FILES_${PN} += "board-support/*"
|