From: Claudius Heine <claudius.heine.ext@siemens.com>
To: Alexander Smirnov <asmirnov@ilbers.de>,
Jan Kiszka <jan.kiszka@siemens.com>,
isar-users@googlegroups.com, Baurzhan Ismagulov <ibr@ilbers.de>
Cc: Claudius Heine <ch@denx.de>
Subject: Re: [PATCH 2/2] centralize multistrap configuration generation
Date: Thu, 15 Feb 2018 11:05:33 +0100 [thread overview]
Message-ID: <923f3293-320b-9172-14aa-3b3a372a1dfa@siemens.com> (raw)
In-Reply-To: <1eaf1493-e834-ce50-9e75-ff5795348b58@ilbers.de>
Hi Alex,
On 02/15/2018 10:34 AM, Alexander Smirnov wrote:
>
>
> On 02/15/2018 10:28 AM, Jan Kiszka wrote:
>> On 2018-02-14 14:15, [ext] claudius.heine.ext@siemens.com wrote:
>>> From: Claudius Heine <ch@denx.de>
>>>
>>> Previous there was redundant code between the buildchroot and
>>> isar-image-base recipe.
>>>
>>> This patch moves the generation of the multistrap configuration to a
>>> central python script that can be parametrized by both recipes.
>>>
>>> Signed-off-by: Claudius Heine <ch@denx.de>
>>> ---
>>> .../recipes-core/images/files/multistrap.conf.in | 38 ----------
>>> meta-isar/recipes-core/images/isar-image-base.bb | 33 ++++-----
>>> meta/classes/base.bbclass | 2 +-
>>> meta/lib/isar/__init__.py | 8 +++
>>> meta/lib/isar/multistrap.py | 80
>>> ++++++++++++++++++++++
>>> meta/recipes-devtools/buildchroot/buildchroot.bb | 28 +++-----
>>> .../buildchroot/files/multistrap.conf.in | 37 ----------
>>> 7 files changed, 111 insertions(+), 115 deletions(-)
>>> delete mode 100644
>>> meta-isar/recipes-core/images/files/multistrap.conf.in
>>> create mode 100644 meta/lib/isar/__init__.py
>>> create mode 100644 meta/lib/isar/multistrap.py
>>> delete mode 100644
>>> meta/recipes-devtools/buildchroot/files/multistrap.conf.in
>>>
>>> diff --git a/meta-isar/recipes-core/images/files/multistrap.conf.in
>>> b/meta-isar/recipes-core/images/files/multistrap.conf.in
>>> deleted file mode 100644
>>> index 432b6af..0000000
>>> --- a/meta-isar/recipes-core/images/files/multistrap.conf.in
>>> +++ /dev/null
>>> @@ -1,38 +0,0 @@
>>> -# This software is a part of ISAR.
>>> -# Copyright (C) 2015-2017 ilbers GmbH
>>> -
>>> -[General]
>>> -noauth=true
>>> -unpack=true
>>> -ignorenativearch=true
>>> -bootstrap=##DISTRO_MULTICONF_BOOTSTRAP## Isar
>>> -aptsources=##DISTRO_MULTICONF_APTSOURCES##
>>> -configscript=##CONFIG_SCRIPT##
>>> -setupscript=##SETUP_SCRIPT##
>>> -hookdir=##DIR_HOOKS##
>>> -
>>> -[base]
>>> -source=##DISTRO_APT_SOURCE##
>>> -suite=##DISTRO_SUITE##
>>> -components=##DISTRO_COMPONENTS##
>>> -packages=##IMAGE_PREINSTALL##
>>> -omitdebsrc=true
>>> -
>>> -[updates]
>>> -source=##DISTRO_APT_SOURCE##
>>> -suite=##DISTRO_SUITE##-updates
>>> -components=##DISTRO_COMPONENTS##
>>> -omitdebsrc=true
>>> -
>>> -[security]
>>> -source=##DISTRO_APT_SOURCE_SEC##
>>> -suite=##DISTRO_SUITE##/updates
>>> -components=##DISTRO_COMPONENTS##
>>> -omitdebsrc=true
>>> -
>>> -[Isar]
>>> -packages=##IMAGE_INSTALL##
>>> -source=##DEPLOY_DIR_APT##
>>> -suite=##ISAR_DISTRO_SUITE##
>>> -components=main
>>> -omitdebsrc=true
>>> diff --git a/meta-isar/recipes-core/images/isar-image-base.bb
>>> b/meta-isar/recipes-core/images/isar-image-base.bb
>>> index 8ddbabb..9913977 100644
>>> --- a/meta-isar/recipes-core/images/isar-image-base.bb
>>> +++ b/meta-isar/recipes-core/images/isar-image-base.bb
>>> @@ -9,8 +9,7 @@ LICENSE = "gpl-2.0"
>>> LIC_FILES_CHKSUM =
>>> "file://${LAYERDIR_isar}/licenses/COPYING.GPLv2;md5=751419260aa954499f7abaabaa882bbe"
>>>
>>> FILESPATH =. "${LAYERDIR_isar}/recipes-core/images/files:"
>>> -SRC_URI = "file://multistrap.conf.in \
>>> - file://${DISTRO_CONFIG_SCRIPT} \
>>> +SRC_URI = "file://${DISTRO_CONFIG_SCRIPT} \
>>> file://setup.sh \
>>> file://download_dev-random"
>>> @@ -28,6 +27,14 @@ WORKDIR =
>>> "${TMPDIR}/work/${DISTRO}-${DISTRO_ARCH}/${PN}"
>>> do_rootfs[dirs] = "${WORKDIR}/hooks_multistrap"
>>> +MULTISTRAP_CONFIG_SCRIPT = "${DISTRO_CONFIG_SCRIPT}"
>>> +MULTISTRAP_APTSOURCES = "${DISTRO_MULTICONF_APTSOURCES}"
>>> +MULTISTRAP_BOOTSTRAP = "${DISTRO_MULTICONF_BOOTSTRAP} isar"
>>> +MULTISTRAP_PREINSTALL = "${IMAGE_PREINSTALL}"
>>> +MULTISTRAP_ISAR_SOURCE = "copy:///${DEPLOY_DIR_APT}/${DISTRO}"
>>> +MULTISTRAP_ISAR_INSTALL = "${IMAGE_INSTALL}"
>>> +MULTISTRAP_ISAR_SUITE = "${DEBDISTRONAME}"
>>> +
>>> do_rootfs() {
>>> E="${@ bb.utils.export_proxies(d)}"
>>> @@ -35,25 +42,8 @@ do_rootfs() {
>>> chmod +x "${WORKDIR}/setup.sh"
>>> install -m 755 "${WORKDIR}/download_dev-random"
>>> "${WORKDIR}/hooks_multistrap/"
>>> - # Multistrap accepts only relative path in configuration files,
>>> so get it:
>>> - cd ${TOPDIR}
>>> - WORKDIR_REL=${@ os.path.relpath(d.getVar("WORKDIR", True))}
>>> -
>>> - # Adjust multistrap config
>>> - sed -e 's|##IMAGE_PREINSTALL##|${IMAGE_PREINSTALL}|g' \
>>> - -e
>>> 's|##DISTRO_MULTICONF_BOOTSTRAP##|${DISTRO_MULTICONF_BOOTSTRAP}|g' \
>>> - -e
>>> 's|##DISTRO_MULTICONF_APTSOURCES##|${DISTRO_MULTICONF_APTSOURCES}|g' \
>>> - -e 's|##DISTRO_APT_SOURCE##|${DISTRO_APT_SOURCE}|g' \
>>> - -e 's|##DISTRO_APT_SOURCE_SEC##|${DISTRO_APT_SOURCE_SEC}|g' \
>>> - -e 's|##DISTRO_SUITE##|${DISTRO_SUITE}|g' \
>>> - -e 's|##DISTRO_COMPONENTS##|${DISTRO_COMPONENTS}|g' \
>>> - -e
>>> 's|##CONFIG_SCRIPT##|./'"$WORKDIR_REL"'/${DISTRO_CONFIG_SCRIPT}|g' \
>>> - -e 's|##SETUP_SCRIPT##|./'"$WORKDIR_REL"'/setup.sh|g' \
>>> - -e 's|##DIR_HOOKS##|./'"$WORKDIR_REL"'/hooks_multistrap|g' \
>>> - -e 's|##IMAGE_INSTALL##|${IMAGE_INSTALL}|g' \
>>> - -e
>>> 's|##DEPLOY_DIR_APT##|copy:///${DEPLOY_DIR_APT}/${DISTRO}|g' \
>>> - -e 's|##ISAR_DISTRO_SUITE##|${DEBDISTRONAME}|g' \
>>> - "${WORKDIR}/multistrap.conf.in" >
>>> "${WORKDIR}/multistrap.conf"
>>> + echo "${@ isar.multistrap.generate_multistrap_config(d) }" > \
>>> + "${WORKDIR}/multistrap.conf"
>>> # Do not use bitbake flag [dirs] here because this folder
>>> should have
>>> # specific ownership.
>>> @@ -62,6 +52,7 @@ do_rootfs() {
>>> # Create root filesystem. We must use sudo -E here to preserve
>>> the environment
>>> # because of proxy settings
>>> + cd "${TOPDIR}"
>>> sudo -E multistrap -a ${DISTRO_ARCH} -d "${IMAGE_ROOTFS}" -f
>>> "${WORKDIR}/multistrap.conf"
>>> # Configure root filesystem
>>> diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
>>> index 3334789..2a45a1e 100644
>>> --- a/meta/classes/base.bbclass
>>> +++ b/meta/classes/base.bbclass
>>> @@ -38,7 +38,7 @@ bbfatal() {
>>> }
>>> # Derived from openembedded-core/meta/classes/base.bbclass
>>> -ISAR_IMPORTS += "os sys time"
>>> +ISAR_IMPORTS += "os sys time isar"
>>> def isar_imports(d):
>>> import sys
>>> diff --git a/meta/lib/isar/__init__.py b/meta/lib/isar/__init__.py
>>> new file mode 100644
>>> index 0000000..e6aeeaa
>>> --- /dev/null
>>> +++ b/meta/lib/isar/__init__.py
>>> @@ -0,0 +1,8 @@
>>> +# Custom kernel recipe include
>>> +#
>>> +# This software is a part of ISAR.
>>> +# Copyright (c) Siemens AG, 2018
>>> +#
>>> +# SPDX-License-Identifier: MIT
>>> +
>>> +from . import multistrap
>>> diff --git a/meta/lib/isar/multistrap.py b/meta/lib/isar/multistrap.py
>>> new file mode 100644
>>> index 0000000..7022f91
>>> --- /dev/null
>>> +++ b/meta/lib/isar/multistrap.py
>>> @@ -0,0 +1,80 @@
>>> +# Custom kernel recipe include
>>> +#
>>> +# This software is a part of ISAR.
>>> +# Copyright (c) Siemens AG, 2018
>>> +#
>>> +# SPDX-License-Identifier: MIT
>>> +
>>> +def generate_multistrap_config(d):
>>> + import configparser as cp
>>> + import io
>>> +
>>> + workdir = d.getVar("WORKDIR", True) or ""
>>> + topdir = d.getVar("TOPDIR", True) or ""
>>> + workdir_rel = os.path.relpath(workdir, start=topdir)
>>> +
>>> + msconf = cp.RawConfigParser()
>>> +
>>> + # Set general multistrap configuration:
>>> + configscript = d.getVar("MULTISTRAP_CONFIG_SCRIPT", True) or ""
>>> + setupscript = d.getVar("MULTISTRAP_SETUP_SCRIPT", True) or
>>> "setup.sh"
>>> + hookdir = d.getVar("MULTISTRAP_HOOK_DIR", True) or
>>> "hooks_multistrap"
>>> + aptsources = (d.getVar("MULTISTRAP_APTSOURCES", True) or
>>> "").split()
>>> + bootstrap = (d.getVar("MULTISTRAP_BOOTSTRAP", True) or "").split()
>>> +
>>> + msconf.add_section("General")
>>> + msconf.set("General", "noauth", "true")
>>> + msconf.set("General", "unpack", "true")
>>> + msconf.set("General", "ignorenativearch", "true")
>>> + msconf.set("General", "configscript", "./" +
>>> + os.path.join(workdir_rel, configscript))
>>> + msconf.set("General", "setupscript", "./" +
>>> + os.path.join(workdir_rel, setupscript))
>>> + msconf.set("General", "hookdir", "./" +
>>> + os.path.join(workdir_rel, hookdir))
>>> + msconf.set("General", "aptsources", " ".join(aptsources))
>>> + msconf.set("General", "bootstrap", " ".join(bootstrap))
>>> +
>>> + # Setup upstream repositories in multistrap configuration:
>>> + apt_source = d.getVar("DISTRO_APT_SOURCE", True) or ""
>>> + apt_source_sec = d.getVar("DISTRO_APT_SOURCE_SEC", True) or ""
>>> + apt_suite = d.getVar("DISTRO_SUITE", True) or ""
>>> + apt_components = (d.getVar("DISTRO_COMPONENTS", True) or
>>> "").split()
>>> + deb_packages = (d.getVar("MULTISTRAP_PREINSTALL", True) or
>>> "").split()
>>> + isar_source = d.getVar("MULTISTRAP_ISAR_SOURCE", True) or ""
>>> + isar_packages = (d.getVar("MULTISTRAP_ISAR_INSTALL", True) or
>>> "").split()
>>> + isar_suite = d.getVar("MULTISTRAP_ISAR_SUITE", True) or "isar"
>>> +
>>> + msconf.add_section("base")
>>> + msconf.set("base", "source", apt_source)
>>> + msconf.set("base", "suite", apt_suite)
>>> + msconf.set("base", "components", " ".join(apt_components))
>>> + msconf.set("base", "omitdebsrc", "true")
>>> + msconf.set("base", "packages", " ".join(deb_packages))
>>> +
>>> + msconf.add_section("updates")
>>> + msconf.set("updates", "source", apt_source)
>>> + msconf.set("updates", "suite", apt_suite + "-updates")
>>> + msconf.set("updates", "components", " ".join(apt_components))
>>> + msconf.set("updates", "omitdebsrc", "true")
>>> +
>>> + msconf.add_section("security")
>>> + msconf.set("security", "source", apt_source_sec)
>>> + msconf.set("security", "suite", apt_suite + "/updates")
>>> + msconf.set("security", "components", " ".join(apt_components))
>>> + msconf.set("security", "omitdebsrc", "true")
>>> +
>>> + msconf.add_section("isar")
>>> + msconf.set("isar", "source", isar_source)
>>> + msconf.set("isar", "suite", isar_suite)
>>> + msconf.set("isar", "components", "main")
>>> + msconf.set("isar", "omitdebsrc", "true")
>>> + if isar_packages :
>>> + msconf.set("isar", "packages",
>>> + " ".join(isar_packages))
>>> +
>>> + ret = ""
>>> + with io.StringIO() as out:
>>> + msconf.write(out)
>>> + ret = out.getvalue()
>>> + return ret
>>> diff --git a/meta/recipes-devtools/buildchroot/buildchroot.bb
>>> b/meta/recipes-devtools/buildchroot/buildchroot.bb
>>> index 570c0ad..59b4e7e 100644
>>> --- a/meta/recipes-devtools/buildchroot/buildchroot.bb
>>> +++ b/meta/recipes-devtools/buildchroot/buildchroot.bb
>>> @@ -9,8 +9,7 @@ LICENSE = "gpl-2.0"
>>> LIC_FILES_CHKSUM =
>>> "file://${LAYERDIR_isar}/licenses/COPYING.GPLv2;md5=751419260aa954499f7abaabaa882bbe"
>>>
>>> FILESPATH =. "${LAYERDIR_core}/recipes-devtools/buildchroot/files:"
>>> -SRC_URI = "file://multistrap.conf.in \
>>> - file://configscript.sh \
>>> +SRC_URI = "file://configscript.sh \
>>> file://setup.sh \
>>> file://build.sh"
>>> PV = "1.0"
>>> @@ -37,32 +36,25 @@ do_build[dirs] = "${BUILDCHROOT_DIR}/isar-apt \
>>> ${BUILDCHROOT_DIR}/sys"
>>> do_build[depends] = "isar-apt:do_cache_config"
>>> +MULTISTRAP_CONFIG_SCRIPT = "configscript.sh"
>>> +MULTISTRAP_APTSOURCES = "isar ${DISTRO_MULTICONF_APTSOURCES}"
>>> +MULTISTRAP_BOOTSTRAP = "${DISTRO_MULTICONF_BOOTSTRAP}"
>>> +MULTISTRAP_PREINSTALL = "${BUILDCHROOT_PREINSTALL}"
>>> +MULTISTRAP_ISAR_SOURCE = "file:///isar-apt"
>>> +
>>> do_build() {
>>> E="${@ bb.utils.export_proxies(d)}"
>>> chmod +x "${WORKDIR}/setup.sh"
>>> chmod +x "${WORKDIR}/configscript.sh"
>>> - # Multistrap accepts only relative path in configuration files,
>>> so get it:
>>> - cd ${TOPDIR}
>>> - WORKDIR_REL=${@ os.path.relpath(d.getVar("WORKDIR", True))}
>>> -
>>> - # Adjust multistrap config
>>> - sed -e 's|##BUILDCHROOT_PREINSTALL##|${BUILDCHROOT_PREINSTALL}|g' \
>>> - -e
>>> 's|##DISTRO_MULTICONF_BOOTSTRAP##|${DISTRO_MULTICONF_BOOTSTRAP}|g' \
>>> - -e
>>> 's|##DISTRO_MULTICONF_APTSOURCES##|${DISTRO_MULTICONF_APTSOURCES}|g' \
>>> - -e 's|##DISTRO_APT_SOURCE##|${DISTRO_APT_SOURCE}|g' \
>>> - -e 's|##DISTRO_APT_SOURCE_SEC##|${DISTRO_APT_SOURCE_SEC}|g' \
>>> - -e 's|##DISTRO_SUITE##|${DISTRO_SUITE}|g' \
>>> - -e 's|##DISTRO_COMPONENTS##|${DISTRO_COMPONENTS}|g' \
>>> - -e 's|##CONFIG_SCRIPT##|./'"$WORKDIR_REL"'/configscript.sh|g' \
>>> - -e 's|##SETUP_SCRIPT##|./'"$WORKDIR_REL"'/setup.sh|g' \
>>> - -e 's|##DIR_HOOKS##|./'"$WORKDIR_REL"'/hooks_multistrap|g' \
>>> - "${WORKDIR}/multistrap.conf.in" >
>>> "${WORKDIR}/multistrap.conf"
>>> + echo "${@ isar.multistrap.generate_multistrap_config(d) }" > \
>>> + "${WORKDIR}/multistrap.conf"
>>> do_setup_mounts
>>> # Create root filesystem
>>> + cd "${TOPDIR}"
>>> sudo -E multistrap -a ${DISTRO_ARCH} -d "${BUILDCHROOT_DIR}" -f
>>> "${WORKDIR}/multistrap.conf"
>>> # Install package builder script
>>> diff --git
>>> a/meta/recipes-devtools/buildchroot/files/multistrap.conf.in
>>> b/meta/recipes-devtools/buildchroot/files/multistrap.conf.in
>>> deleted file mode 100644
>>> index 480a4b8..0000000
>>> --- a/meta/recipes-devtools/buildchroot/files/multistrap.conf.in
>>> +++ /dev/null
>>> @@ -1,37 +0,0 @@
>>> -# This software is a part of ISAR.
>>> -# Copyright (C) 2015-2017 ilbers GmbH
>>> -
>>> -[General]
>>> -noauth=true
>>> -unpack=true
>>> -ignorenativearch=true
>>> -bootstrap=##DISTRO_MULTICONF_BOOTSTRAP##
>>> -aptsources=isar-apt ##DISTRO_MULTICONF_APTSOURCES##
>>> -configscript=##CONFIG_SCRIPT##
>>> -setupscript=##SETUP_SCRIPT##
>>> -hookdir=##DIR_HOOKS##
>>> -
>>> -[base]
>>> -source=##DISTRO_APT_SOURCE##
>>> -suite=##DISTRO_SUITE##
>>> -components=##DISTRO_COMPONENTS##
>>> -packages=##BUILDCHROOT_PREINSTALL##
>>> -omitdebsrc=true
>>> -
>>> -[updates]
>>> -source=##DISTRO_APT_SOURCE##
>>> -suite=##DISTRO_SUITE##-updates
>>> -components=##DISTRO_COMPONENTS##
>>> -omitdebsrc=true
>>> -
>>> -[security]
>>> -source=##DISTRO_APT_SOURCE_SEC##
>>> -suite=##DISTRO_SUITE##/updates
>>> -components=##DISTRO_COMPONENTS##
>>> -omitdebsrc=true
>>> -
>>> -[isar-apt]
>>> -source=file:///isar-apt
>>> -suite=isar
>>> -components=main
>>> -omitdebsrc=true
>>>
>>
>> This requires rebasing. I quickly tried, but the result broke the
>> package build (didn't analyze any details).
>>
>>
>> While this moves us in the right direction, it still leaves some
>> duplications behind (setup.sh) - and the big question if we should
>> invest any further in this horrible multistrap mess.
>>
>> I've just enabled arm64, and it took a while to figure out that I was
>> missing some lines in setup.sh. In contrast, qemu-debootstrap just
>> worked (I used it to debug the multistrap output).
>>
>> So, before we move on here: What all does multistrap currently give us,
>> compared to standard debootstrap? I only see "multiple repositories" so
>> far. But as Claudius is going to massage that part heavily anyway, I
>> really wonder if it's worth building on the multistrap indirection any
>> further.
>>
>> How about something like this?
>>
>> - [qemu-]debootstrap --variant=minbase ...
>> - inject all additional apt sources, including user-provided ones
>> - set pinnings and priority, including user-provided ones
>> - apt-get dist-upgrade
>>
>
> I'd say that multistrap is a tool which maps user-friendly config file
> to specific apt repositories configuration. If you look in the
> do_build() log for buildchroot, you could see what it exactly does:
>
> 1. Creating list of sources in rootfs/etc
>
> 2. Get packages.gz for all the sources:
>
> apt-get -o Apt::Architecture=armhf -o
> Dir::Etc::TrustedParts=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/etc/apt/trusted.gpg.d
> -o
> Dir::Etc::Trusted=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/etc/apt/trusted.gpg.d/trusted.gpg
> -o Apt::Get::AllowUnauthenticated=true -o Apt::Get::Download-Only=true
> -o Apt::Install-Recommends=false -o
> Dir=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/
> -o
> Dir::Etc=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/etc/apt/
> -o
> Dir::Etc::Parts=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/etc/apt/apt.conf.d/
> -o
> Dir::Etc::PreferencesParts=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/etc/apt/preferences.d/
> -o APT::Default-Release=* -o
> Dir::State=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/var/lib/apt/
> -o
> Dir::State::Status=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/var/lib/dpkg/status
> -o
> Dir::Cache=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/var/cache/apt/
> update
>
> 3. Install packages:
>
> apt-get -y -o Apt::Architecture=armhf -o
> Dir::Etc::TrustedParts=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/etc/apt/trusted.gpg.d
> -o
> Dir::Etc::Trusted=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/etc/apt/trusted.gpg.d/trusted.gpg
> -o Apt::Get::AllowUnauthenticated=true -o Apt::Get::Download-Only=true
> -o Apt::Install-Recommends=false -o
> Dir=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/
> -o
> Dir::Etc=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/etc/apt/
> -o
> Dir::Etc::Parts=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/etc/apt/apt.conf.d/
> -o
> Dir::Etc::PreferencesParts=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/etc/apt/preferences.d/
> -o APT::Default-Release=* -o
> Dir::State=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/var/lib/apt/
> -o
> Dir::State::Status=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/var/lib/dpkg/status
> -o
> Dir::Cache=/home/builder/isar/build/tmp/work/raspbian-jessie-armhf/buildchroot/rootfs/var/cache/apt/
> install ${LIST_OF_PACKAGES}
>
> > That would kick out all the multistrap complications.
>
> For me the plan above intersects with these multistrap steps, you have
> to re-implement them from the scratch. In this case I'd vote for the
> community-proved solution.
For me that is a reason to use debootstrap instead of multistrap, since
multistrap is not community-supported. If we implement some of those
feature, we might as well do it in debootstrap inself. Just take a look
at their TODO list:
Features:
++ second stage via chroot debootstrap/debootstrap
++ debootstrap/deb file to record deb destinations/information
-- configuration file
-- versus command line
-- support for sources (vs mirrors)
-- faux-pinning for packages
https://anonscm.debian.org/cgit/d-i/debootstrap.git/tree/TODO?id=5d42162bc0fe266b280d81445271e3f56b9560a8
That shows to me that upstream might be interested in some of these
improvements we would need to implement.
Cheers,
Claudius
--
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-54 Fax: (+49)-8142-66989-80 Email: ch@denx.de
next prev parent reply other threads:[~2018-02-15 10:05 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-14 13:15 [PATCH 0/2] Consolidate " claudius.heine.ext
2018-02-14 13:15 ` [PATCH 1/2] meta/classes/base: extend sys.path with lib directory claudius.heine.ext
2018-02-15 7:28 ` Jan Kiszka
2018-02-14 13:15 ` [PATCH 2/2] centralize multistrap configuration generation claudius.heine.ext
2018-02-15 7:28 ` Jan Kiszka
2018-02-15 8:16 ` Claudius Heine
2018-02-15 8:50 ` Jan Kiszka
2018-02-15 9:34 ` Alexander Smirnov
2018-02-15 10:05 ` Claudius Heine [this message]
2018-02-15 10:15 ` Jan Kiszka
2018-02-15 10:29 ` Alexander Smirnov
2018-02-15 11:27 ` Baurzhan Ismagulov
2018-02-15 13:17 ` Claudius Heine
2018-02-15 13:18 ` Jan Kiszka
2018-02-15 11:42 ` Baurzhan Ismagulov
2018-02-15 12:08 ` Claudius Heine
2018-02-15 12:37 ` Alexander Smirnov
2018-02-15 13:20 ` Claudius Heine
2018-02-15 13:39 ` Alexander Smirnov
2018-02-16 9:31 ` Claudius Heine
2018-02-16 10:35 ` Alexander Smirnov
2018-02-16 11:35 ` Jan Kiszka
2018-02-15 13:53 ` Jan Kiszka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=923f3293-320b-9172-14aa-3b3a372a1dfa@siemens.com \
--to=claudius.heine.ext@siemens.com \
--cc=asmirnov@ilbers.de \
--cc=ch@denx.de \
--cc=ibr@ilbers.de \
--cc=isar-users@googlegroups.com \
--cc=jan.kiszka@siemens.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox