DistroKit Mailinglist
 help / color / mirror / Atom feed
From: Robert Schwebel <r.schwebel@pengutronix.de>
To: Roland Hieber <rhi@pengutronix.de>
Cc: distrokit@pengutronix.de
Subject: Re: [DistroKit] [PATCH 13/14] image-rauc: use ext4 rootfs instead of tar.gz
Date: Tue, 15 Aug 2023 10:14:02 +0200	[thread overview]
Message-ID: <ZNszyjbf2Z4HcOvK@pengutronix.de> (raw)
In-Reply-To: <ZNpYcZrPuevM3COc@pengutronix.de>

This introduces a new warning:

rsc@dude05:~/work/DistroKit$ ./p clean
generated/image.in:7: warning: menuconfig statement without prompt
generated/image.in:7: warning: menuconfig statement without prompt
[...]

rsc

On Mon, Aug 14, 2023 at 06:38:09PM +0200, Robert Schwebel wrote:
> Applied to next.
> 
> On Fri, Jun 23, 2023 at 02:47:54PM +0200, Roland Hieber wrote:
> > On one hand, the squashfs inside the RAUC bundle already uses
> > compression, so with a tar.gz inside a squashfs the content is
> > compressed twice. Also using ext4 makes it possible to use adaptive
> > updates in the future.
> > 
> > (Yes, the image generated by the image-root-ext recipe is really called
> > "root.ext2", even if it's an ext4 image.)
> > 
> > Link: https://rauc.readthedocs.io/en/latest/advanced.html#adaptive-updates
> > Signed-off-by: Roland Hieber <rhi@pengutronix.de>
> > ---
> >  config/images/rauc.config    | 4 ++--
> >  platforms/image-rauc.deps.in | 6 ++++++
> >  2 files changed, 8 insertions(+), 2 deletions(-)
> >  create mode 100644 platforms/image-rauc.deps.in
> > 
> > diff --git a/config/images/rauc.config b/config/images/rauc.config
> > index e4169cc8cd95..83e074274961 100644
> > --- a/config/images/rauc.config
> > +++ b/config/images/rauc.config
> > @@ -1,6 +1,6 @@
> >  image @IMAGE@ {
> >  	rauc {
> > -		file root.tar.gz { image = "root.tgz" }
> > +		file root.ext4 { image = "root.ext2" }
> >  		manifest = "
> >  			[update]
> >  			compatible=@RAUC_BUNDLE_COMPATIBLE@
> > @@ -12,7 +12,7 @@ image @IMAGE@ {
> >  			format=@RAUC_BUNDLE_FORMAT@
> >  
> >  			[image.rootfs]
> > -			filename=root.tar.gz
> > +			filename=root.ext4
> >  			"
> >  		cert = "@RAUC_CERT@"
> >  		key = "@RAUC_KEY@"
> > diff --git a/platforms/image-rauc.deps.in b/platforms/image-rauc.deps.in
> > new file mode 100644
> > index 000000000000..df328522a747
> > --- /dev/null
> > +++ b/platforms/image-rauc.deps.in
> > @@ -0,0 +1,6 @@
> > +## SECTION=image
> > +
> > +menuconfig IMAGE_RAUC
> > +	tristate
> > +	select IMAGE_ROOT_EXT
> > +	select IMAGE_ROOT_EXT_EXT4
> > -- 
> > 2.39.2

-- 
Pengutronix e.K.                           | Dipl.-Ing. Robert Schwebel  |
Steuerwalder Str. 21                       | https://www.pengutronix.de/ |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-9    |



  reply	other threads:[~2023-08-15  8:14 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-23 12:47 [DistroKit] [PATCH 00/14] v7a: add redundant update support via RAUC Roland Hieber
2023-06-23 12:47 ` [DistroKit] [PATCH 01/14] platforms: revert to default systemd loglevel Roland Hieber
2023-08-14 15:39   ` Robert Schwebel
2023-06-23 12:47 ` [DistroKit] [PATCH 02/14] ptxconfig: enable more tools for debugging Roland Hieber
2023-08-14 16:03   ` Robert Schwebel
2023-06-23 12:47 ` [DistroKit] [PATCH 03/14] rauc-udev: add a compatibility layer for mapping partitions Roland Hieber
2023-08-14 16:36   ` Robert Schwebel
2023-06-23 12:47 ` [DistroKit] [PATCH 04/14] v7a: barebox: include generic bootstate node in device tree Roland Hieber
2023-08-14 16:36   ` Robert Schwebel
2023-06-23 12:47 ` [DistroKit] [PATCH 05/14] v7a: add RAUC support for qemu-vexpress Roland Hieber
2023-08-14 16:36   ` Robert Schwebel
2023-06-23 12:47 ` [DistroKit] [PATCH 06/14] v7a: add RAUC support for beaglebone black Roland Hieber
2023-08-14 16:36   ` Robert Schwebel
2023-06-23 12:47 ` [DistroKit] [PATCH 07/14] v7a: add RAUC support for rpi3 Roland Hieber
2023-08-14 16:37   ` Robert Schwebel
2023-06-23 12:47 ` [DistroKit] [PATCH 08/14] v7a: add RAUC support for riotboard Roland Hieber
2023-08-14 16:37   ` Robert Schwebel
2023-06-23 12:47 ` [DistroKit] [PATCH 09/14] v7a: kernel: enable features necessary for RAUC Roland Hieber
2023-08-14 16:37   ` Robert Schwebel
2023-08-15  8:47     ` Robert Schwebel
2023-08-25 11:06       ` Roland Hieber
2023-06-23 12:47 ` [DistroKit] [PATCH 10/14] rauc: add initial support Roland Hieber
2023-08-14 16:37   ` Robert Schwebel
2023-06-23 12:47 ` [DistroKit] [PATCH 11/14] v7a: enable RAUC bundle creation Roland Hieber
2023-08-14 16:37   ` Robert Schwebel
2023-06-23 12:47 ` [DistroKit] [PATCH 12/14] image-rauc: fork config from PTXdist 2023.04.0 Roland Hieber
2023-08-14 16:38   ` Robert Schwebel
2023-06-23 12:47 ` [DistroKit] [PATCH 13/14] image-rauc: use ext4 rootfs instead of tar.gz Roland Hieber
2023-08-14 16:38   ` Robert Schwebel
2023-08-15  8:14     ` Robert Schwebel [this message]
2023-08-15  8:18       ` Robert Schwebel
2023-08-25 11:04         ` Roland Hieber
2023-06-23 12:47 ` [DistroKit] [PATCH 14/14] v7a: run: start with barebox by default Roland Hieber
2023-08-14 16:38   ` Robert Schwebel
2023-06-23 12:49 ` [DistroKit] [PATCH v4 00/14] v7a: add redundant update support via RAUC Roland Hieber

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=ZNszyjbf2Z4HcOvK@pengutronix.de \
    --to=r.schwebel@pengutronix.de \
    --cc=distrokit@pengutronix.de \
    --cc=rhi@pengutronix.de \
    /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