From patchwork Thu Jan 9 14:30:43 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gylstorff Quirin X-Patchwork-Id: 11325845 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 87CE6930 for ; Thu, 9 Jan 2020 14:31:34 +0000 (UTC) Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 629D220673 for ; Thu, 9 Jan 2020 14:31:34 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 629D220673 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=siemens.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=cip-dev-bounces@lists.cip-project.org Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 11C5B20C45; Thu, 9 Jan 2020 14:31:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qvrZU3GYGTDa; Thu, 9 Jan 2020 14:31:33 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [140.211.9.56]) by silver.osuosl.org (Postfix) with ESMTP id 55A602001F; Thu, 9 Jan 2020 14:31:33 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id 179F3C0881; Thu, 9 Jan 2020 14:31:33 +0000 (UTC) X-Original-To: cip-dev@lists.cip-project.org Delivered-To: cip-dev@lists.linuxfoundation.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by lists.linuxfoundation.org (Postfix) with ESMTP id 99E2CC0881 for ; Thu, 9 Jan 2020 14:31:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 868EC88007 for ; Thu, 9 Jan 2020 14:31:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3T-0Ko1tsz20 for ; Thu, 9 Jan 2020 14:31:30 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from thoth.sbs.de (thoth.sbs.de [192.35.17.2]) by hemlock.osuosl.org (Postfix) with ESMTPS id 655A487FFB for ; Thu, 9 Jan 2020 14:31:30 +0000 (UTC) Received: from mail1.sbs.de (mail1.sbs.de [192.129.41.35]) by thoth.sbs.de (8.15.2/8.15.2) with ESMTPS id 009EVRhG031166 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Thu, 9 Jan 2020 15:31:27 +0100 Received: from md2dvrtc.ad001.siemens.net ([139.25.69.120]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTP id 009EVR6u009608; Thu, 9 Jan 2020 15:31:27 +0100 From: "Q. Gylstorff" To: cip-dev@lists.cip-project.org Date: Thu, 9 Jan 2020 15:30:43 +0100 Message-Id: <20200109143043.7675-1-Quirin.Gylstorff@siemens.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Cc: Quirin Gylstorff Subject: [cip-dev] [isar-cip-core PATCH] classes/wic-targz-img: add dependency between targz-img and wic-img X-BeenThere: cip-dev@lists.cip-project.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: cip-dev-bounces@lists.cip-project.org Sender: "cip-dev" From: Quirin Gylstorff Add a dependency between targz_image and wic_image to avoid an error during the generation of the targz image as wic modifies the rootfs. Signed-off-by: Quirin Gylstorff --- classes/wic-targz-img.bbclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/classes/wic-targz-img.bbclass b/classes/wic-targz-img.bbclass index 4e9f89d..1327840 100644 --- a/classes/wic-targz-img.bbclass +++ b/classes/wic-targz-img.bbclass @@ -11,3 +11,5 @@ inherit wic-img inherit targz-img + +addtask do_targz_image after do_wic_image