X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=meta-app-framework%2Fclasses%2Faglwgt.bbclass;h=aa27c2492b6fc52f22227792424acb0836af7fe2;hb=07d0d613cbca9619e3ad5361d39ae0feafbcb168;hp=37638e666117ec5f60aa0485dfa2a686afd4f023;hpb=0c28379c6d8ab33f3c902b6617503ca634b8c90e;p=AGL%2Fmeta-agl.git diff --git a/meta-app-framework/classes/aglwgt.bbclass b/meta-app-framework/classes/aglwgt.bbclass index 37638e666..aa27c2492 100644 --- a/meta-app-framework/classes/aglwgt.bbclass +++ b/meta-app-framework/classes/aglwgt.bbclass @@ -15,15 +15,19 @@ DEPENDS_append = " af-main-native" # for bindings af-binder is required. DEPENDS_append = " af-binder" +# for hal bindings genskel is required. +DEPENDS_append = " af-binder-devtools-native" + 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 () { @@ -37,31 +41,38 @@ 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/*.wgt;do + 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} <