X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=meta-app-framework%2Fclasses%2Faglwgt.bbclass;h=7420baefe14b141b2e13a834af6b2c4ae40de553;hb=refs%2Fchanges%2F58%2F24158%2F10;hp=717bd7b9030bb444aa18971f0e87e7146cc88cb9;hpb=7faccb97d69c7581e338f88ce3a2153cdd69fd16;p=AGL%2Fmeta-agl.git diff --git a/meta-app-framework/classes/aglwgt.bbclass b/meta-app-framework/classes/aglwgt.bbclass index 717bd7b90..7420baefe 100644 --- a/meta-app-framework/classes/aglwgt.bbclass +++ b/meta-app-framework/classes/aglwgt.bbclass @@ -27,26 +27,53 @@ EXTRA_OECMAKE_append_agl-ptest = " -DBUILD_TEST_WGT=TRUE" OECMAKE_GENERATOR = "Unix Makefiles" do_aglwgt_package() { - cd ${B} - ${S}/autobuild/agl/autobuild package BUILD_DIR=${B} DEST=${B} VERBOSE=TRUE || \ - ( ${S}/conf.d/autobuild/agl/autobuild package BUILD_DIR=${B} DEST=${B}/package VERBOSE=TRUE && \ - ( bbwarn "OBSOLETE: Your autobuild script should be located in :" ; \ - bbwarn "autobuild/agl/ from the project root source folder"; \ - bbwarn "and generate a .wgt file using wgtpack in the build"; \ - bbwarn "root folder calling:" ; \ - bbwarn "./autobuild/agl/autobuild package DEST=" ; \ - bbwarn "See: https://wiki.automotivelinux.org/troubleshooting/app-recipes" \ - ) - ) || - ( bbwarn "OBSOLETE: You must have an autobuild script located in:" ; \ - bbwarn "autobuild/agl/ from the project root source folder"; \ - bbwarn "with filename autobuild which should generate"; \ - bbwarn "a .wgt file using wgtpack in the build"; \ - bbwarn "root folder calling:" ; \ - bbwarn "./autobuild/agl/autobuild package DEST=" ; \ - bbwarn "Fix your package as it will not work within the SDK" ; \ - bbwarn "See: https://wiki.automotivelinux.org/troubleshooting/app-recipes"; \ - make package) + + mkdir -p ${S}/build-test + mkdir -p ${S}/build-debug + mkdir -p ${S}/build-coverage + + bldcmd=${S}/autobuild/agl/autobuild + if [ ! -x "$bldcmd" ]; then + bldcmd=${S}/conf.d/autobuild/agl/autobuild + if [ -x "$bldcmd" ]; then + bbwarn "OBSOLETE: Your autobuild script should be located in :" + bbwarn "autobuild/agl/ from the project root source folder" + bbwarn "and generate a .wgt file using wgtpack in the build" + bbwarn "root folder calling:" + bbwarn "./autobuild/agl/autobuild package DEST=" + bbwarn "See: https://wiki.automotivelinux.org/troubleshooting/app-recipes" + else + bbwarn "OBSOLETE: You must have an autobuild script located in:" + bbwarn "autobuild/agl/ from the project root source folder" + bbwarn "with filename autobuild which should generate" + bbwarn "a .wgt file using wgtpack in the build" + bbwarn "root folder calling:" + bbwarn "./autobuild/agl/autobuild package DEST=" + bbwarn "Fix your package as it will not work within the SDK" + bbwarn "See: https://wiki.automotivelinux.org/troubleshooting/app-recipes" + bldcmd=make + fi + fi + + cd ${B} + if ! $bldcmd package BUILD_DIR=${B} DEST=${S}/widgets VERBOSE=TRUE; then + bbwarn "Target: package failed" + fi + + cd ${S}/build-test + if ! $bldcmd package-test BUILD_DIR=${S}/build-test DEST=${S}/widgets VERBOSE=TRUE; then + bbwarn "Target: package-test failed" + fi + + cd ${S}/build-debug + if ! $bldcmd package-debug BUILD_DIR=${S}/build-debug DEST=${S}/widgets VERBOSE=TRUE; then + bbwarn "Target: package-debug failed" + fi + + cd ${S}/build-coverage + if ! $bldcmd package-coverage BUILD_DIR=${S}/build-coverage DEST=${S}/widgets VERBOSE=TRUE; then + bbwarn "Target: package-coverage failed" + fi } python () { @@ -61,6 +88,8 @@ EXTRA_WGT_POSTINSTALL ?= "" do_aglwgt_deploy() { TEST_WGT="*-test.wgt" + DEBUG_WGT="*-debug.wgt" + COVERAGE_WGT="*-coverage.wgt" if [ "${AGLWGT_AUTOINSTALL_${PN}}" = "0" ] then install -d ${D}/usr/AGL/apps/manualinstall @@ -71,11 +100,27 @@ do_aglwgt_deploy() { install -m 0644 ${B}/*.wgt ${D}/usr/AGL/apps/autoinstall || \ install -m 0644 ${B}/package/*.wgt ${D}/usr/AGL/apps/autoinstall - if [ "$(find ${D}/usr/AGL/apps/autoinstall -name ${TEST_WGT})" ] - then - install -d ${D}/usr/AGL/apps/testwgt - mv ${D}/usr/AGL/apps/autoinstall/*-test.wgt ${D}/usr/AGL/apps/testwgt - fi + install -m 0644 ${S}/widgets/*.wgt ${D}/usr/AGL/apps/autoinstall || \ + ( bbwarn "no package found in widget directory") + + if [ "$(find ${D}/usr/AGL/apps/autoinstall -name ${TEST_WGT})" ] + then + install -d ${D}/usr/AGL/apps/testwgt + mv ${D}/usr/AGL/apps/autoinstall/*-test.wgt ${D}/usr/AGL/apps/testwgt + fi + + if [ "$(find ${D}/usr/AGL/apps/autoinstall -name ${DEBUG_WGT})" ] + then + install -d ${D}/usr/AGL/apps/debugwgt + mv ${D}/usr/AGL/apps/autoinstall/*-debug.wgt ${D}/usr/AGL/apps/debugwgt + fi + + if [ "$(find ${D}/usr/AGL/apps/autoinstall -name ${COVERAGE_WGT})" ] + then + install -d ${D}/usr/AGL/apps/coveragewgt + mv ${D}/usr/AGL/apps/autoinstall/*-coverage.wgt ${D}/usr/AGL/apps/coveragewgt + fi + fi APP_FILES="" @@ -97,6 +142,8 @@ EOF FILES_${PN} += "/usr/AGL/apps/autoinstall/*.wgt \ /usr/AGL/apps/manualinstall/*.wgt \ /usr/AGL/apps/testwgt/*.wgt \ + /usr/AGL/apps/debugwgt/*.wgt \ + /usr/AGL/apps/coveragewgt/*.wgt \ ${sysconfdir}/agl-postinsts/${POST_INSTALL_SCRIPT} \ " @@ -106,4 +153,12 @@ do_install() { addtask aglwgt_deploy before do_package after do_install addtask aglwgt_package before do_aglwgt_deploy after do_compile +# Signature keys +# These are default keys for development purposes ! +# Change it for production. +WGTPKG_AUTOSIGN_0_agl-sign-wgts ??= "${WORKDIR}/recipe-sysroot-native/usr/share/afm/keys/developer.key.pem:${WORKDIR}/recipe-sysroot-native/usr/share/afm/certs/developer.cert.pem" +WGTPKG_AUTOSIGN_1_agl-sign-wgts ??= "${WORKDIR}/recipe-sysroot-native/usr/share/afm/keys/platform.key.pem:${WORKDIR}/recipe-sysroot-native/usr/share/afm/certs/platform.cert.pem" + +export WGTPKG_AUTOSIGN_0 +export WGTPKG_AUTOSIGN_1