From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 6680483261914808320 X-Received: by 2002:a19:f24c:: with SMTP id d12mr16803654lfk.163.1556098066149; Wed, 24 Apr 2019 02:27:46 -0700 (PDT) X-BeenThere: isar-users@googlegroups.com Received: by 2002:a2e:894e:: with SMTP id b14ls1722105ljk.3.gmail; Wed, 24 Apr 2019 02:27:45 -0700 (PDT) X-Google-Smtp-Source: APXvYqxQQqeL1g8PplBZ/RkHDdNT1fj7kW6ziybChcVOF7nCQsRaxdm/zJ8xiHPdZde02L+W3Wf+ X-Received: by 2002:a2e:7412:: with SMTP id p18mr5423297ljc.65.1556098065664; Wed, 24 Apr 2019 02:27:45 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1556098065; cv=none; d=google.com; s=arc-20160816; b=khjCu5bVnnj9e9cB9Q/5ByLqSSKPY51NosuTLVkkA47SH3iMDVcELxM8KtQyDKnZCo O9EyahavKi/POhgpBtq4eAuHPxDFG+LidyCl4P/x+BhMdfQuxxvbE+UwLyGOtGrDCRh8 0aJfdA99s1j23vngV3G3q2YNzUWpdMLYTC2fehFvS7FX/yg5KaEXN5LJjlSVHBrCeL2L 8CJpBn17jZAl8V/vSvWl2TpbWs+FoTq/x+9My8fPeZLvJC186/z6stg5ehQHsvT0OMjT coU+Ht1tjywZjbVfB9aD3TOa4wszMxxSvXlCcW9NLXGoNvijUuN3SNuqtpk0mObKDSb9 3bnQ== 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=fB3quG7DPqdC/HwqxB8Wg/dvTCsA0z+aGgbr22Q9GWA=; b=rypJpUZvjjYuR1raXBvqNorU4B1S5yuen5UdyBVZK3GAo5nZGnS/MQqX1roVImifjX nPnjzYAUXk+UIZeies+P8NNfop9coj3Osb7rwY989OTPIf4FAs/mO0566lWVeUiQP1zf CXQRqgeLNfGAMwKH3LPthRQW1mRfO26Oij/ktsGyhY2qBZs6pPEi5AXirReXIbzFEf2U vFce8zT0n406celjfhONKgcD9fEjWn7HkDSNYHH+mRz+DhktpTN8PPIYNtr4w1sFElMT dBS28KgEcaNR7FMlXW2WlIIAE/xP8lw6Sp7iwl65WDjy/89Mjk6yDMFX6Y1qwO8bTe4M pvuA== ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: domain of claudius.heine.ext@siemens.com designates 192.35.17.14 as permitted sender) smtp.mailfrom=claudius.heine.ext@siemens.com Return-Path: Received: from david.siemens.de (david.siemens.de. [192.35.17.14]) by gmr-mx.google.com with ESMTPS id l9si863535lfh.0.2019.04.24.02.27.44 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 24 Apr 2019 02:27:44 -0700 (PDT) Received-SPF: pass (google.com: domain of claudius.heine.ext@siemens.com designates 192.35.17.14 as permitted sender) client-ip=192.35.17.14; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of claudius.heine.ext@siemens.com designates 192.35.17.14 as permitted sender) smtp.mailfrom=claudius.heine.ext@siemens.com Received: from mail1.sbs.de (mail1.sbs.de [192.129.41.35]) by david.siemens.de (8.15.2/8.15.2) with ESMTPS id x3O9RgJ3004879 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Wed, 24 Apr 2019 11:27:42 +0200 Received: from ring.ppmd.siemens.net (linux-ses-ext02.ppmd.siemens.net [139.25.69.232]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTP id x3O9Rflm018534; Wed, 24 Apr 2019 11:27:41 +0200 From: claudius.heine.ext@siemens.com To: isar-users@googlegroups.com Cc: Claudius Heine Subject: [PATCH v3 0/8] Cleanup rootfs creation Date: Wed, 24 Apr 2019 11:27:26 +0200 Message-Id: <20190424092734.14167-1-claudius.heine.ext@siemens.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-TUID: NpO+JUw4j62K From: Claudius Heine Hi, I could not reproduce the raspberrypi issue Maxim found in his CI build: http://isar-build.org:8080/job/isar_mosipov_develop/91/consoleText This is my build log: http://isar-build.org:8080/job/isar_claudius_ilbers-ci/54/consoleText Only the module loading fails, which Maxim stated he will look into. This patchset uses still the 'old' style for refactoring/cleanup patchsets, until I automated the official patch submission process as documented by the CONTRIBUTERS policy. You can find the whole patchset in under this url: https://github.com/cmhe/isar/tree/ch/cleanup regards, Claudius changes from v2: - replaced 'ROOTFS_ARCH' with 'HOST_ARCH' in sdkchroot.bb to avoid populate_sdk issue changes from v1: - fixed typo in commit message Claudius Heine (8): isar-boostrap-helper: move 'HOST_ARCH' and 'HOST_DISTRO' to base.bbclass move 'HOST_DISTRO_APT_SOURCES' from bootstrap-helper to isar-bootstrap buildchroot.bbclass: only cross build if HOST_ARCH != DISTRO_ARCH isar-bootstrap/buildchroot/sdkchroot: refactor PF and WORKDIR bitbake.conf: remove unneeded and differently used variables image.bbclass: make IMAGE_ROOTFS overwritable bitbake.conf: set default QEMU_ARCH variables buildchroot/configscript: make creation of builder uid/gid idempotent meta/classes/base.bbclass | 9 +++++++++ meta/classes/buildchroot.bbclass | 2 +- meta/classes/image-sdk-extension.bbclass | 2 +- meta/classes/image.bbclass | 2 +- meta/classes/isar-bootstrap-helper.bbclass | 14 -------------- meta/conf/bitbake.conf | 13 ++++++++----- .../isar-bootstrap/isar-bootstrap-host.bb | 11 +++-------- .../isar-bootstrap/isar-bootstrap-target.bb | 6 +----- .../recipes-core/isar-bootstrap/isar-bootstrap.inc | 1 + .../buildchroot/buildchroot-host.bb | 1 + meta/recipes-devtools/buildchroot/buildchroot.inc | 3 +-- .../buildchroot/files/configscript.sh | 4 ++-- meta/recipes-devtools/sdkchroot/sdkchroot.bb | 3 +-- 13 files changed, 30 insertions(+), 41 deletions(-) -- 2.20.1