From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 6520202011915321344 X-Received: by 10.25.202.77 with SMTP id h13mr97232lfj.21.1518102831863; Thu, 08 Feb 2018 07:13:51 -0800 (PST) X-BeenThere: isar-users@googlegroups.com Received: by 10.46.46.12 with SMTP id u12ls484325lju.4.gmail; Thu, 08 Feb 2018 07:13:51 -0800 (PST) X-Google-Smtp-Source: AH8x224MrxPogso7hI9kmKBgdfQDXXEbMj+J8oZdm7D/IJI19noPQPeLPU1KvcaWCmrTdjh9v2AQ X-Received: by 10.46.18.16 with SMTP id t16mr89565lje.40.1518102831084; Thu, 08 Feb 2018 07:13:51 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1518102831; cv=none; d=google.com; s=arc-20160816; b=0JKzhY65b1QjefamGp1vCHslXi6SVysQU5OF62Po4PUXo+CtXafAE6TeXILRHi/rMx CgUa2/bWgEOh/tM0+l93sxBYrrPhqBCeo0GzIhSsqNSQLRiIfReN+hxUE7AYKVkjQ1+d I1cWTNrHfyy/jm3NbT1hGel4YXamCm69ygqERV14fFVkbjfQh80GlLf0bn4AYt95WZ8h IviCLWv8cCB8rmfJqtNqX+1qaIghRfmog1+1KIG/caQut4lbvX4L3aWXeY7S6xmgXrzK PyW3Ku3HPLoa0BJBS9Ir7AoRHNgHADTgGpJtzYC5+De96rpLWl6hlbJsWYKTXldltnhL bS5g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=message-id:date:subject:cc:to:from:arc-authentication-results; bh=r7lYA3Pc8dT4Im6l21yRG3ijh6m5NCOrhMhog1Pdm/A=; b=UvWeSTcqZ/SydTzBiWM5u9axvV9QBCRCDcwP9+VNeAAlB340LXnYSrzAvdj4bknry4 vn1PxYSSye3SZ58mkD8icYpKY4DIAvs+NAq3wa34xXf8bxPylwZ6E+8ktro1euetcU3D 8tbKRH4achfaGxqYUuBesJOiCC+j7FB4SPPELzq6bRVbj13iaqTRYpoGX73GcWuHouox bZ2ai60xd6xZzUBB+tHLFDhSCw37gUXoLEYTsfz16RZ8kGDsu9YHLJl+9TnHnKUIw+uz GhSnw5NHxeP55xnYoKG2XjlL8jkBBKrKz6uYJUm3FqAScMMQRRt3UcHJiHlFB/WxMN3g uguw== ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) smtp.mailfrom=asmirnov@ilbers.de Return-Path: Received: from aqmola.ilbers.de (aqmola.ilbers.de. [85.214.62.211]) by gmr-mx.google.com with ESMTPS id z11si15214lff.1.2018.02.08.07.13.50 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 08 Feb 2018 07:13:50 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) client-ip=85.214.62.211; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) smtp.mailfrom=asmirnov@ilbers.de Received: from localhost.localdomain ([188.227.110.165]) (authenticated bits=0) by aqmola.ilbers.de (8.14.4/8.14.4/Debian-4+deb7u1) with ESMTP id w18FDaNa001367 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 8 Feb 2018 16:13:42 +0100 From: Alexander Smirnov To: isar-users@googlegroups.com Cc: Alexander Smirnov Subject: [PATCH] image: Add dependency from isar-apt Date: Thu, 8 Feb 2018 18:13:30 +0300 Message-Id: <20180208151330.4354-1-asmirnov@ilbers.de> X-Mailer: git-send-email 2.9.5 X-TUID: vXVNOvhBDeAE There are two components in Isar who uses isar-apt: - buildchroot - images At the moment the only buildchroot has dapendency from isar-apt, this patch adds it also for images. Signed-off-by: Alexander Smirnov Reported-by: Henning Schild --- meta/classes/image.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index cbd74b3..2c255f4 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -19,6 +19,7 @@ INITRD_IMAGE ?= "${@get_image_name(d, 'initrd.img')}" inherit ${IMAGE_TYPE} do_rootfs[stamp-extra-info] = "${MACHINE}-${DISTRO}" +do_rootfs[depends] = "isar-apt:do_cache_config" do_rootfs() { die "No root filesystem function defined, please implement in your recipe" -- 2.1.4