blob: b208babdf783f10f21ad577174910f122c38af47 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#
# aglwgt bbclass
#
# Jan-Simon Moeller, jsmoeller@linuxfoundation.org
#
# This class expects a "make package" target in the makefile
# which creates the wgt files in the package/ subfolder.
# The makefile needs to use wgtpkg-pack.
#
# 'wgtpkg-pack' in af-main-native is required.
DEPENDS_append = " af-main-native"
# for bindings af-binder is required.
DEPENDS_append = " af-binder"
do_aglwgt_package() {
cd ${B}
make package || \
${S}/conf.d/autobuild/agl/autobuild package BUILD_DIR=${B} DEST=${B}/package || \
( bbwarn "Your makefile must support the 'make package' target" ; \
bbwarn "and generate a .wgt file using wgtpack in the"; \
bbwarn "subfolder ./package/ !" ; \
bbwarn "Fix your package as it will not work within the SDK" ; \
bbwarn "See: https://wiki.automotivelinux.org/troubleshooting/app-recipes" \
)
}
python () {
d.setVarFlag('do_aglwgt_deploy', 'fakeroot', '1')
}
POST_INSTALL_LEVEL ?= "10"
POST_INSTALL_SCRIPT ?= "${POST_INSTALL_LEVEL}-${PN}.sh"
EXTRA_WGT_POSTINSTALL ?= ""
do_aglwgt_deploy() {
if [ "${AGLWGT_AUTOINSTALL_${PN}}" = "0" ]
then
install -d ${D}/usr/AGL/apps/manualinstall
install -m 0644 ${B}/package/*.wgt ${D}/usr/AGL/apps/manualinstall
else
install -d ${D}/usr/AGL/apps/autoinstall
install -m 0644 ${B}/package/*.wgt ${D}/usr/AGL/apps/autoinstall
fi
APP_FILES=""
for file in ${D}/usr/AGL/apps/autoinstall/*.wgt;do
APP_FILES="${APP_FILES} $(basename $file)";
done
install -d ${D}/${sysconfdir}/agl-postinsts
cat > ${D}/${sysconfdir}/agl-postinsts/${POST_INSTALL_SCRIPT} <<EOF
#!/bin/sh -e
for file in ${APP_FILES}; do
/usr/bin/afm-install install /usr/AGL/apps/autoinstall/\$file
done
sync
${EXTRA_WGT_POSTINSTALL}
EOF
chmod a+x ${D}/${sysconfdir}/agl-postinsts/${POST_INSTALL_SCRIPT}
}
FILES_${PN} += "/usr/AGL/apps/autoinstall/*.wgt \
/usr/AGL/apps/manualinstall/*.wgt \
${sysconfdir}/agl-postinsts/${POST_INSTALL_SCRIPT} \
"
do_install() {
}
addtask aglwgt_deploy before do_package after do_install
addtask aglwgt_package before do_aglwgt_deploy after do_compile
|