From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 7379842184059551744 X-Received: by 2002:a2e:bc0a:0:b0:2eb:fcf2:f7c9 with SMTP id 38308e7fff4ca-2ebfcf2f958mr35185771fa.3.1718253405063; Wed, 12 Jun 2024 21:36:45 -0700 (PDT) X-BeenThere: isar-users@googlegroups.com Received: by 2002:a05:600c:3b86:b0:421:7d7f:c621 with SMTP id 5b1f17b1804b1-422b8cabba4ls2598795e9.1.-pod-prod-05-eu; Wed, 12 Jun 2024 21:36:43 -0700 (PDT) X-Google-Smtp-Source: AGHT+IHzqceWMvKe4JUAf9/jKqgY5sBa8OoKaaSAHb4EbaCm4ItZoxRnqUDlvbVq+HqF9Z/cN4dT X-Received: by 2002:a05:600c:470c:b0:421:81b7:785e with SMTP id 5b1f17b1804b1-422862b3c9bmr40615455e9.2.1718253402751; Wed, 12 Jun 2024 21:36:42 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1718253402; cv=none; d=google.com; s=arc-20160816; b=yLeg4/mhvqlRFdkUp9x8koSG6NyduyWBE0fGLH4C61CO+GBsD84mQiJy3AVKVT5uOl PXOCoM+uGHiXqHuAHrqKg+pDfd4v459sMwmqL9ruAvmUxzmOcEIOcKzg9OnitVULOdT2 kYMJ2KLIHkqk+2doNKXXpd2Ljnc7XxdVRT5bWb8PVxMB/kTzbG58lKh+2GsZjBxrCgnK t1X4wIcN2FpmOULy8WJ/aiQsG16KBzazk+gYOGj1Ixes5LC5kSqoERkOcikIA3yRHLCs I4MYHfR1ldSkyOKx7QD3+AGVmOuf25G49TAykhbJNTGhyEonDJlYOuCvlU/XSKrzlYzL QyEA== 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:to :from; bh=0Er6PtUdeCutosFWG7FZUu3WlhIt7ftCu4/uHbXAUtI=; fh=7tclEdh7YbwSQowgJ6LNq720O7H5HTEaqj22NJWRE2E=; b=JCCjK089RZKFUHuYuoMjd7qtSym5okfxIVd0pgUhQ1oh+ZjOoeH9TMFz0LJMuLSl1C X43DojLt3WY9xWCHGib3HXlDMO86m4gvqux6GShwfRtfenBBwkt9rJkD2Egat4LsUCl3 aGEtrK8SdXq080E93479cRsFZCBKmO6ejEoS+Iy6T8Ep1+s0kWOYTtpu9b93DnxJN3u7 SghKusA2uvFXnZ+Q/E9nU3K2s3FeATt9R0zxJhiGIsp6DNMeRMhTVP6km2+F6TVSWxJb Hn+Dr5MP/IIwQRfgKGCF39S0pcJyVrKNWWzuPyBw3L58YocWB0LwOGHdA9XZ6IvN1non iObg==; dara=google.com ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: domain of ubely@ilbers.de designates 85.214.156.166 as permitted sender) smtp.mailfrom=ubely@ilbers.de Return-Path: Received: from shymkent.ilbers.de (shymkent.ilbers.de. [85.214.156.166]) by gmr-mx.google.com with ESMTPS id 5b1f17b1804b1-422f612735fsi115335e9.1.2024.06.12.21.36.42 for (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Wed, 12 Jun 2024 21:36:42 -0700 (PDT) Received-SPF: pass (google.com: domain of ubely@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 ubely@ilbers.de designates 85.214.156.166 as permitted sender) smtp.mailfrom=ubely@ilbers.de Received: from hp15.promwad.com (44-208-124-178-static.mgts.by [178.124.208.44] (may be forged)) (authenticated bits=0) by shymkent.ilbers.de (8.15.2/8.15.2/Debian-8+deb9u1) with ESMTPSA id 45D4afSV024052 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Thu, 13 Jun 2024 06:36:41 +0200 From: Uladzimir Bely To: isar-users@googlegroups.com Subject: [RFC PATCH 0/3] Deploy DTBs with kernel recipe Date: Thu, 13 Jun 2024 07:19:53 +0300 Message-ID: <20240613043635.21239-1-ubely@ilbers.de> X-Mailer: git-send-email 2.44.2 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: /DFEWnME1ywU Image task "do_copy_boot_files" is used to deploy kernel, initrd and devicetree binaries to deploy directory. When different images for the same target are built (e.g., "-base" and "-debug") in parallel, this causes issues with DTB deployment since they have no any image name specific stuff in the path, unlike kernel and initrd. Here we make kernel recipes (that are original source of these files) responcible for DTB deployment. Related topics on maillist: https://groups.google.com/g/isar-users/c/4BRDM02xC40 https://groups.google.com/g/isar-users/c/qAnjahjjfsw https://groups.google.com/g/isar-users/c/ZMD4XY4dKWQ https://groups.google.com/g/isar-users/c/PSGU_AcdPZ8 https://groups.google.com/g/isar-users/c/Va0Ue-ISYeA To fix the case when different distro use same namings for DTB, this patchset should be merged with "[PATCH] Fix do_copy_boot_files error": https://groups.google.com/g/isar-users/c/Va0Ue-ISYeA Uladzimir Bely (3): Don't deploy devicetree files with image linux-distro: Deploy devicetree files linux-custom: Deploy devicetree files meta/classes/image.bbclass | 11 -------- meta/recipes-kernel/linux/linux-custom.inc | 13 +++++++++ meta/recipes-kernel/linux/linux-distro.bb | 31 ++++++++++++++++++++++ 3 files changed, 44 insertions(+), 11 deletions(-) -- 2.44.2