From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 7051880287817433088 X-Received: by 2002:adf:ffcb:: with SMTP id x11mr1820891wrs.499.1642168639626; Fri, 14 Jan 2022 05:57:19 -0800 (PST) X-BeenThere: isar-users@googlegroups.com Received: by 2002:a1c:3b45:: with SMTP id i66ls2705229wma.1.canary-gmail; Fri, 14 Jan 2022 05:57:18 -0800 (PST) X-Google-Smtp-Source: ABdhPJzlyk5tZMnBEdaxSyZLxV7Y4nnlWY/xOJBOK3HIzkPAg8b+zxVXjbJy0qr9QxYaqbtmnLnV X-Received: by 2002:a05:600c:1990:: with SMTP id t16mr8418614wmq.87.1642168638813; Fri, 14 Jan 2022 05:57:18 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1642168638; cv=none; d=google.com; s=arc-20160816; b=VDH2/1uecYtzuZyFft9wiKeT67l6lmPXt7QI+pKRosvKXb3UMpJA6qI0SJPdoHllQI mYGuo4GGV7xj7hnKZ0YiSpDxAyVmHMsWQRZUGNmS8Jz4iEV7QiXBb4puMuKlGcr9lAhz myAEilcwwaEdfK0kahttX1aMV4n7JDydoLl7lWAspIAC9NscPfWcG4Jn46ld3gqThw6N +ANIdmmMw6BAfyD7XEVw14zkRwHxKgpS9PUMbDUxpqnYCckqoEo5AhzPiJuFDll3KWVg bXPJIsPbs+x11BJizk5FgHQq7nLcZgZ+5CX0J28QQnVYUMH3Kd9FBI3S9QqziNfx5YDb PFrg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from; bh=RbvH1Ja68nz+Kxb/I8dvotuDlJXDKLQvsTBnPWZjqx4=; b=O+d+SXri1I4GuH0x2DhskFinH91lDhGg+OliJoCS1Ek/2jqNj9vxZ+jGnx1Ofim5XW +dFp6IlB+UMuRVP3OCIq693cFMyaogtt3z4O7h8rWNmtIdB7ynjww+1KBNuQOoUxrZ2N uUKzYBLUVM6zfPA1xKfuOM4w7EW49ktDX9jB5Eyg+zQQYc3kfVdp/hyIUciwKV60jLX/ qCp9NpliBHPdTNjW+ysLlXxhaMCdND6YUjzJ8H1uRsT7C9iQiuqBZmYgAlSAxxhUvg2Z hQTgMZTkikSHnbgdhPvi1WNdXPVj+TuwqPtvCXbkfqTWH6ys5KHq9cgueYW0fkzamRun Uy0A== ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: domain of amikan@ilbers.de designates 85.214.156.166 as permitted sender) smtp.mailfrom=amikan@ilbers.de Return-Path: Received: from shymkent.ilbers.de (shymkent.ilbers.de. [85.214.156.166]) by gmr-mx.google.com with ESMTPS id d11si219345wrw.2.2022.01.14.05.57.18 for (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Fri, 14 Jan 2022 05:57:18 -0800 (PST) Received-SPF: pass (google.com: domain of amikan@ilbers.de designates 85.214.156.166 as permitted sender) client-ip=85.214.156.166; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of amikan@ilbers.de designates 85.214.156.166 as permitted sender) smtp.mailfrom=amikan@ilbers.de Received: from localhost.localdomain (mm-85-69-214-37.mgts.dynamic.pppoe.byfly.by [37.214.69.85] (may be forged)) (authenticated bits=0) by shymkent.ilbers.de (8.15.2/8.15.2/Debian-8) with ESMTPSA id 20EDvHEs004619 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 14 Jan 2022 14:57:18 +0100 From: Anton Mikanovich To: isar-users@googlegroups.com Cc: Anton Mikanovich Subject: [PATCH v2 0/2] Fix u-boot-script packages conflict Date: Fri, 14 Jan 2022 16:57:08 +0300 Message-Id: <20220114135710.72647-1-amikan@ilbers.de> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED autolearn=unavailable autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on shymkent.ilbers.de X-TUID: NX2NWLjj6vtJ When trying to execute do_prepare_build task of u-boot-script package for some targets 'multiple execution' occurs: $ bitbake mc:bananapi-buster:u-boot-script:do_prepare_build mc:de0-nano-soc-buster:u-boot-script:do_prepare_build ERROR: Detect multiple executions of do_prepare_build in /build/tmp/work/debian-buster-armhf/u-boot-script/1.1-r0 ERROR: Rerun a clean build with empty STAMPCLEAN and compare the sigdata files This is caused by different u-boot-script packages building in the same directory. The difference between those two output debs is dependency on linux-image-${KERNEL_NAME}. Now we can depend on any kernel and make u-boot-script packages equal. Anton Mikanovich (2): dpkg: Introduce any kernel variables u-boot-script: Depend on any kernel package meta/classes/dpkg-base.bbclass | 7 +++++++ meta/recipes-bsp/u-boot-script/u-boot-script_1.1.bb | 2 +- meta/recipes-kernel/linux/files/debian/control.tmpl | 2 ++ 3 files changed, 10 insertions(+), 1 deletion(-) -- 2.25.1