logo

bootstrap-initrd

Linux initrd to bootstrap from a small binary seed git clone https://hacktivis.me/git/bootstrap-initrd.git
commit: 8a7a549b5bc276259b8cefba797620041298e371
parent 827a2a6b2993c12375ccc24f923523f0669df4a3
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Sun,  5 May 2024 18:14:23 +0200

bootstrap*.sh: add o option on tar

heirloom tar by default tries to restore user/group as put in the tarball,
we dont need that and produces annoying noise when not changed (the fuck).

Diffstat:

Mbootstrap-bash.sh2+-
Mbootstrap-make.sh2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bootstrap-bash.sh b/bootstrap-bash.sh @@ -2,7 +2,7 @@ set -ex gzip -d -k /bash-5.1.tar.gz -tar xf /bash-5.1.tar +tar xof /bash-5.1.tar cd bash-5.1 export LD="tcc" diff --git a/bootstrap-make.sh b/bootstrap-make.sh @@ -3,7 +3,7 @@ set -ex P="make-4.4.1" gzip -d -k /${P}.tar.gz -tar xf /${P}.tar +tar xof /${P}.tar cd ./$P export LD="tcc"