summaryrefslogtreecommitdiffstats
path: root/source/installer
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2023-01-24 20:32:45 +0000
committer Eric Hameleers <alien@slackware.com>2023-01-24 22:38:44 +0100
commit2da9fb74c8edd5868be2a291e65778118272c75a (patch)
treea48e6be47fcd37b16124af01ae67d1b7a894ef98 /source/installer
parent92998aedbd1bb7ad7e3663790ad723df0d7e9e64 (diff)
downloadcurrent-2da9fb74c8edd5868be2a291e65778118272c75a.tar.gz
current-2da9fb74c8edd5868be2a291e65778118272c75a.tar.xz
Tue Jan 24 20:32:45 UTC 202320230124203245
a/kernel-firmware-20230120_bb2d42d-noarch-1.txz: Upgraded. a/kernel-generic-6.1.8-x86_64-1.txz: Upgraded. a/kernel-huge-6.1.8-x86_64-1.txz: Upgraded. a/kernel-modules-6.1.8-x86_64-1.txz: Upgraded. ap/texinfo-7.0.2-x86_64-1.txz: Upgraded. d/kernel-headers-6.1.8-x86-1.txz: Upgraded. k/kernel-source-6.1.8-noarch-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
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