diff options
Diffstat (limited to 'source/installer')
-rw-r--r-- | source/installer/ChangeLog.txt | 4 | ||||
-rwxr-xr-x | source/installer/sources/initrd/usr/lib/setup/setup | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/source/installer/ChangeLog.txt b/source/installer/ChangeLog.txt index bd58b89b..e40e0c17 100644 --- a/source/installer/ChangeLog.txt +++ b/source/installer/ChangeLog.txt @@ -1,3 +1,7 @@ +Tue Apr 20 18:46:38 UTC 2021 + setup: run ldconfig after the packages are installed. + Thanks to average_user. ++--------------------------+ Sat Apr 10 18:46:46 UTC 2021 setup: update size estimate of a complete installation to 15+ GB. +--------------------------+ diff --git a/source/installer/sources/initrd/usr/lib/setup/setup b/source/installer/sources/initrd/usr/lib/setup/setup index 07972314..a7734983 100755 --- a/source/installer/sources/initrd/usr/lib/setup/setup +++ b/source/installer/sources/initrd/usr/lib/setup/setup @@ -100,7 +100,7 @@ mkdir /var/log/mount 2> /dev/null while [ 0 ]; do - dialog --title "Slackware Linux Setup (version 12.2)" \ + dialog --title "Slackware Linux Setup (version 15.0)" \ --menu \ "Welcome to Slackware Linux Setup.\n\ Select an option below using the UP/DOWN keys and SPACE or ENTER.\n\ @@ -322,6 +322,10 @@ to choose packages individually." 4 60 else slackinstall --device noremount --promptmode $MODE --srcpath `cat $TMP/SeTDS` --mountpoint /var/log/mount --target $T_PX --series $SERIES fi + # Run ldconfig on the newly installed system: + if [ -x $T_PX/sbin/ldconfig ]; then + ( chroot $T_PX ; /sbin/ldconfig ) + fi if [ $MODE = terse ]; then # Let's pause a moment and then restore the terminal settings sleep 1 |