diff --git a/sdk/build-github.sh b/sdk/build-github.sh index d2f16f66e..f84156d02 100755 --- a/sdk/build-github.sh +++ b/sdk/build-github.sh @@ -32,6 +32,10 @@ INHERIT += \"rm_work\" RM_WORK_EXCLUDE += \"dey-image-qt linux-dey qtbase u-boot-dey\" " +ZIP_INSTALLER_CFG=" +DEY_IMAGE_INSTALLER = \"1\" +" + X11_REMOVAL_CFG=" DISTRO_FEATURES_remove = \"x11\" " @@ -169,6 +173,7 @@ for platform in ${DY_PLATFORMS}; do -e "/^#SSTATE_DIR ?=/cSSTATE_DIR ?= \"${YOCTO_PROJ_DIR}/sstate-cache\"" \ conf/local.conf printf "${RM_WORK_CFG}" >> conf/local.conf + printf "${ZIP_INSTALLER_CFG}" >> conf/local.conf # Remove 'x11' distro feature if building framebuffer images if [ "${DY_FB_IMAGE}" = "true" ]; then printf "${X11_REMOVAL_CFG}" >> conf/local.conf diff --git a/sdk/build.sh b/sdk/build.sh index 178f8b78a..b2f69147f 100755 --- a/sdk/build.sh +++ b/sdk/build.sh @@ -45,6 +45,10 @@ INHERIT += \"rm_work\" RM_WORK_EXCLUDE += \"dey-image-qt linux-dey qtbase u-boot-dey\" " +ZIP_INSTALLER_CFG=" +DEY_IMAGE_INSTALLER = \"1\" +" + X11_REMOVAL_CFG=" DISTRO_FEATURES_remove = \"x11\" " @@ -243,6 +247,7 @@ for platform in ${DY_PLATFORMS}; do if [ "${DY_RM_WORK}" = "true" ]; then printf "${RM_WORK_CFG}" >> conf/local.conf fi + printf "${ZIP_INSTALLER_CFG}" >> conf/local.conf # Remove 'x11' distro feature if building framebuffer images if [ "${DY_FB_IMAGE}" = "true" ]; then printf "${X11_REMOVAL_CFG}" >> conf/local.conf