summaryrefslogtreecommitdiffstats
path: root/source/installer
diff options
context:
space:
mode:
Diffstat (limited to 'source/installer')
-rw-r--r--source/installer/ChangeLog.txt5
-rwxr-xr-xsource/installer/build_installer.sh2
2 files changed, 6 insertions, 1 deletions
diff --git a/source/installer/ChangeLog.txt b/source/installer/ChangeLog.txt
index 584bb9bd0..090700973 100644
--- a/source/installer/ChangeLog.txt
+++ b/source/installer/ChangeLog.txt
@@ -1,3 +1,8 @@
+Tue Jan 24 20:26:12 UTC 2023
+ build_installer.sh: when compressing the completed installer with xz, use
+ option -vv instead of -v, since the change of default verbosity level seems
+ to have caused just a single -v to be ignored.
++--------------------------+
Thu Jan 19 20:44:24 UTC 2023
build_installer.sh: Switch /bin/dd from BusyBox's implementation to
Coreutils', which offers a richer feature set. For example, the command line
diff --git a/source/installer/build_installer.sh b/source/installer/build_installer.sh
index 80f4ca658..763bec949 100755
--- a/source/installer/build_installer.sh
+++ b/source/installer/build_installer.sh
@@ -2075,7 +2075,7 @@ fi
if [ $SPLIT_INITRD -eq 0 ]; then
# Determine the size of the installer:
echo " Installer size (uncompressed): $( du -sh . )"
- find . | cpio -o -H newc | xz -9fv -C crc32 > $CWD/initrd.img
+ find . | cpio -o -H newc | xz -9fvv -C crc32 > $CWD/initrd.img
echo " New installer image is ${CWD}/initrd.img"
cp -a $SLACKROOT/isolinux/isolinux.cfg $CWD/
fi