From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.64]) by arago-project.org (Postfix) with ESMTPS id B619052A53 for ; Wed, 6 Nov 2019 19:03:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mailout4.zoneedit.com (Postfix) with ESMTP id 0F7E240BD2; Wed, 6 Nov 2019 19:02:33 +0000 (UTC) Received: from mailout4.zoneedit.com ([127.0.0.1]) by localhost (zmo14-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RnTgz3QsQW_1; Wed, 6 Nov 2019 19:02:33 +0000 (UTC) Received: from mail.denix.org (pool-100-15-86-127.washdc.fios.verizon.net [100.15.86.127]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id ED2D940C26; Wed, 6 Nov 2019 19:02:31 +0000 (UTC) Received: from gimli.denix (unknown [192.168.30.6]) by mail.denix.org (Postfix) with ESMTP id 191E51742E6; Wed, 6 Nov 2019 14:02:29 -0500 (EST) From: Denys Dmytriyenko To: meta-arago@arago-project.org Date: Wed, 6 Nov 2019 14:02:24 -0500 Message-Id: <1573066944-48181-10-git-send-email-denys@ti.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1573066944-48181-1-git-send-email-denys@ti.com> References: <1573066944-48181-1-git-send-email-denys@ti.com> Subject: [RFC][PATCH 9/9] arago-image.inc: unbreak populate_sdk task X-BeenThere: meta-arago@arago-project.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Arago metadata layer for TI SDKs - OE-Core/Yocto compatible List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Nov 2019 19:04:01 -0000 We chose not to install nativesdk-perl and its modules, hence ensure dummy dependencies and archs are configured properly. Signed-off-by: Denys Dmytriyenko --- meta-arago-distro/recipes-core/images/arago-image.inc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/meta-arago-distro/recipes-core/images/arago-image.inc b/meta-arago-distro/recipes-core/images/arago-image.inc index 179c81d..b197dc2 100644 --- a/meta-arago-distro/recipes-core/images/arago-image.inc +++ b/meta-arago-distro/recipes-core/images/arago-image.inc @@ -9,17 +9,18 @@ IMAGE_FEATURES += "package-management splash" # 4KB per 1 inode should be enough EXTRA_IMAGECMD_ext2.gz += "-i 4096" -ARAGO_IMAGE_EXTRA_INSTALL ?= "" - -IMAGE_INSTALL += " \ +IMAGE_INSTALL = " \ packagegroup-core-boot \ - ${ARAGO_IMAGE_EXTRA_INSTALL} \ + ${CORE_IMAGE_EXTRA_INSTALL} \ " export IMAGE_BASENAME = "arago-image" IMAGE_LINGUAS = "" +TOOLCHAIN_HOST_TASK += "nativesdk-buildtools-perl-dummy" +SDK_PACKAGE_ARCHS += "buildtools-dummy-${SDKPKGSUFFIX}" + make_bootfiles_symlinks_relative() { for f in "${IMAGE_ROOTFS}/boot"/* do -- 2.7.4