From: Henning Schild <henning.schild@siemens.com>
To: Alexander Smirnov <asmirnov@ilbers.de>
Cc: <isar-users@googlegroups.com>
Subject: Re: [PATCH 6/6] doc/technical_overview: Describe binary cache
Date: Mon, 28 Aug 2017 17:36:30 +0200 [thread overview]
Message-ID: <20170828173630.7815bb3f@md1em3qc> (raw)
In-Reply-To: <20170827151339.12806-7-asmirnov@ilbers.de>
This should be done along the way in every single patch, not afterwards.
Henning
Am Sun, 27 Aug 2017 18:13:39 +0300
schrieb Alexander Smirnov <asmirnov@ilbers.de>:
> Describe Isar binary cache feature.
>
> Signed-off-by: Alexander Smirnov <asmirnov@ilbers.de>
> ---
> doc/technical_overview.md | 59
> +++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 55
> insertions(+), 4 deletions(-)
>
> diff --git a/doc/technical_overview.md b/doc/technical_overview.md
> index 20e08b4..b3265dc 100644
> --- a/doc/technical_overview.md
> +++ b/doc/technical_overview.md
> @@ -100,6 +100,43 @@ Target filesystem lifecycle can be described as
> following:
> - According to the list of custom packages in bitbake recipes, the
> initial filesystem will be populated by successfully built packages.
>
> +## 2.5 Binary Cache
> +
> +As mentioned above, apart from fetching binary packages from
> upstream apt +repositories, Isar is able to build custom packages
> from sources. To simplify +further custom packages management, Isar
> implements binary caching. +
> +Binary cache is a typical apt repository created by Isar to store
> newly built +packages. This repository has mainly two goals:
> +
> + - Simplify image filesystem populating and distributing binary
> packages to
> + other systems.
> +
> + - Reuse these binaries in next builds to avoid re-building from the
> + scratch everytime.
> +
> +Current Isar tree provides default cache repository: `meta-isar-bin`.
> +Isar binary cache is described by the following files:
> +
> + - `meta-isar-bin/conf/layer.conf`
> +
> + - `meta-isar-bin/files/distributions.in`
> +
> +After system build is complete, this repo contains binary packages
> for all the +distros and architectures, requested in multiconfig. So
> this folder can be +published and used as apt repo for already
> installed systems. +
> +An important note, that Isar creates local repositories using
> dedicated Debian +tool reprepro. This tool takes care about:
> +
> + - Maintenance of multiple architectures and distros.
> +
> + - Internal packages database management.
> +
> + - Repo signatures management.
> +
> + - Requests about available packages in repo (name, version etc...).
> +
> # 3 Isar Internal Processes
>
> ## 3.1 General Overview
> @@ -174,10 +211,17 @@ contain debian folder. The build process is
> implemented in
> 3. Run dpkg-buildpackage
>
> -4. Task `do_install`: install successfully built packages
> +4. Further package processing depends on binary cache option:
> +
> + 1. Task `do_install_to_deploy`: install successfully built
> packages if
> + binary cache is disabled:
> `${BUILDCHROOT_DIR}/home/build/${PN}/*.deb` to deploy directory
> `${DEPLOY_DIR_DEB}`
>
> + 2. Task `do_install_to_cache`: install successfully built
> packages to
> + binary cache repository:
> + `${BUILDCHROOT_DIR}/home/build/${PN}/*.deb` to `${DIR_CACHE}`
> +
> ## 3.5 Populate Target Filesystem
>
> Each target image can be extended by custom packages listed in
> IMAGE_INSTALL @@ -185,11 +229,18 @@ variable. Task `do_populate`
> performs the following:
> 1. Parse IMAGE_INSTALL variable.
>
> -2. Find respective packages in `${DEPLOY_DIR_DEB}`.
> +2. Further steps depends in binary cache option.
> +If binary cache is disabled:
> +
> + 1. Find respective packages in `${DEPLOY_DIR_DEB}`.
> +
> + 2. Copy packages to deb folder in dedicated target filesystem.
> +
> + 3. Execute dpkg command in chroot for all the copied packages.
>
> -3. Copy them to deb folder in dedicated target filesystem.
> +If binary cache is enabled:
>
> -4. Execute dpkg command in chroot for all the copied packages.
> + 1. Call apt-get install in chroot in target image filesystem.
>
> ## 3.6 Generate Bootable Image
>
next prev parent reply other threads:[~2017-08-28 15:36 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-27 15:13 [PATCH 0/6] Isar apt cache implementation Alexander Smirnov
2017-08-27 15:13 ` [PATCH 1/6] meta-isar-bin: Enable caching of deb packages Alexander Smirnov
2017-08-28 15:18 ` Henning Schild
2017-08-29 6:40 ` Alexander Smirnov
2017-08-29 7:51 ` Henning Schild
2017-08-29 8:20 ` Alexander Smirnov
2017-08-31 10:55 ` Claudius Heine
2017-08-31 11:20 ` Henning Schild
2017-08-31 12:08 ` Claudius Heine
2017-09-06 14:21 ` Henning Schild
2017-09-07 11:13 ` Claudius Heine
2017-08-27 15:13 ` [PATCH 2/6] classes/image: Provide /dev/null for Stretch apt Alexander Smirnov
2017-08-28 15:20 ` Henning Schild
2017-08-28 15:26 ` Henning Schild
2017-08-27 15:13 ` [PATCH 3/6] classes/dpkg: Split install for cache Alexander Smirnov
2017-08-28 8:00 ` Claudius Heine
2017-08-29 7:18 ` Alexander Smirnov
2017-08-30 8:54 ` Claudius Heine
2017-08-28 15:30 ` Henning Schild
2017-08-27 15:13 ` [PATCH 4/6] meta-isar-bin: Enable apt repo generation for amd64 Alexander Smirnov
2017-08-27 15:13 ` [PATCH 5/6] classes/dpkg: Properly update packages in the cache Alexander Smirnov
2017-08-28 15:32 ` Henning Schild
2017-08-29 7:20 ` Alexander Smirnov
2017-08-29 7:57 ` Henning Schild
2017-08-29 11:26 ` Jan Kiszka
2017-08-27 15:13 ` [PATCH 6/6] doc/technical_overview: Describe binary cache Alexander Smirnov
2017-08-28 15:36 ` Henning Schild [this message]
2017-08-29 7:29 ` Alexander Smirnov
2017-08-29 8:06 ` Henning Schild
2017-08-29 11:29 ` 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=20170828173630.7815bb3f@md1em3qc \
--to=henning.schild@siemens.com \
--cc=asmirnov@ilbers.de \
--cc=isar-users@googlegroups.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