X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=meta-app-framework%2Fclasses%2Faglwgt.bbclass;h=ce566abca5402c4cc2d12b50d06c3657756d0e79;hb=91804ab0feabe3fd700230a2b5f2fb3052db3bf6;hp=734e979c5e522fc6803f0afe4b1cedf93c4c5869;hpb=2a3bbd117220b55682f95dd527f9971f3efdcd82;p=AGL%2Fmeta-agl.git diff --git a/meta-app-framework/classes/aglwgt.bbclass b/meta-app-framework/classes/aglwgt.bbclass index 734e979c5..ce566abca 100644 --- a/meta-app-framework/classes/aglwgt.bbclass +++ b/meta-app-framework/classes/aglwgt.bbclass @@ -17,21 +17,59 @@ DEPENDS_append = " af-binder" do_aglwgt_package() { cd ${B} - make package || ( \ - bbwarn "Your makefile must support the 'make package' target" ; \ + ${S}/conf.d/autobuild/agl/autobuild package BUILD_DIR=${B} DEST=${B}/package VERBOSE=TRUE || \ + make 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() { - install -d ${D}/usr/AGL/apps - install -m 0644 ${B}/package/*.wgt ${D}/usr/AGL/apps/ + 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} <