From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: Re: [PATCH] Core Update 169: Regenerate initrds and save space on ARM Date: Thu, 07 Jul 2022 05:48:29 +0000 Message-ID: <161bad48-a232-02c6-8892-acadfc3c6977@ipfire.org> In-Reply-To: <3e57aa59-ee6f-bff4-68b4-0ac078d76cee@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0035858177199930398==" List-Id: --===============0035858177199930398== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hello *, to my understanding, we do not need to ship "linux-initrd" if we can easily rebuild those on the systems anyway. I would prefer the latter, since that keeps the update smaller. This was also raised somewhere in the community a while ago, but I am unable to find the correspondent thread at the moment. How do we proceed here? Thanks, and best regards, Peter M=C3=BCller > https://community.ipfire.org/t/again-with-the-file-system-full-core-169/8186 >=20 > Signed-off-by: Peter M=C3=BCller > --- > config/rootfiles/core/169/update.sh | 13 +++++++++++++ > 1 file changed, 13 insertions(+) >=20 > diff --git a/config/rootfiles/core/169/update.sh b/config/rootfiles/core/16= 9/update.sh > index 3902e2d45..50f0bd8a4 100644 > --- a/config/rootfiles/core/169/update.sh > +++ b/config/rootfiles/core/169/update.sh > @@ -150,6 +150,19 @@ ldconfig > # Apply sysctl changes > /etc/init.d/sysctl start > =20 > +# Regenerate all initrds > +dracut --regenerate-all --force > +case "$(uname -m)" in > + armv*) > + mkimage -A arm -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img = /boot/uInit-${KVER}-ipfire > + rm /boot/initramfs-${KVER}-ipfire.img > + ;; > + aarch64) > + mkimage -A arm64 -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.im= g /boot/uInit-${KVER}-ipfire > + # dont remove initramfs because grub need this to boot. > + ;; > +esac > + > # Start services > telinit u > /etc/init.d/firewall restart --===============0035858177199930398==--