blob: f0e04c06a4a3fbd25d6d03d3ac6ec69e2f7663e1 (
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
|
DESCRIPTION = "Boot files (bootscripts etc.) for Renesas RCar-M3 board"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
inherit deploy
COMPATIBLE_MACHINE = "m3ulcb"
S = "${WORKDIR}"
SRC_URI_append_sota = "file://uEnv-ota.txt"
do_deploy() {
install -d ${DEPLOYDIR}/${PN}
}
do_deploy_append_sota() {
install -m 0755 ${WORKDIR}/uEnv-ota.txt ${DEPLOYDIR}/${PN}/uEnv.txt
}
addtask deploy before do_package after do_install
do_deploy[dirs] += "${DEPLOYDIR}/${PN}"
PACKAGE_ARCH = "${MACHINE_ARCH}"
|