diff options
author | Robby Workman <rworkman@slackware.com> | 2018-04-04 02:11:10 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackware.com> | 2018-04-04 02:13:53 -0500 |
commit | b77f5bd5ee5240c6389a1aecfdb3b98675240e7e (patch) | |
tree | 498f0dccd0c0a1b6383edadecf48b0a7c941d2cd /files | |
parent | 3340c90614cedde7d8a60b088dde64bf3c66807e (diff) | |
download | slackpkg-b77f5bd5ee5240c6389a1aecfdb3b98675240e7e.tar.xz |
post-functions.sh: Tweak handling of new kernel prompts
Diffstat (limited to 'files')
-rw-r--r-- | files/ChangeLog | 1 | ||||
-rw-r--r-- | files/post-functions.sh | 9 |
2 files changed, 5 insertions, 5 deletions
diff --git a/files/ChangeLog b/files/ChangeLog index d163ba6..17e2cd8 100644 --- a/files/ChangeLog +++ b/files/ChangeLog @@ -1,5 +1,6 @@ --------------- + - tweak handling of new kernel prompts - mandoc lint fixes Wed Apr 4 01:06:05 UTC 2018 diff --git a/files/post-functions.sh b/files/post-functions.sh index 5a8a71b..b5fecd3 100644 --- a/files/post-functions.sh +++ b/files/post-functions.sh @@ -228,16 +228,15 @@ updates to your bootloader. elif [ -x /sbin/lilo ] && [ -r /etc/lilo.conf ] ; then echo -e "\n Your kernel image was updated. Be sure to handle any needed updates -to your bootloader. +to your bootloader (possibly as simple as running /sbin/lilo). " else echo -e "\n Your kernel image was updated, and lilo does not appear to be used on your system. You may need to adjust your boot manager (like GRUB) to -boot the appropriate kernel." +boot the appropriate kernel (after generating an initrd if required)." fi - echo -e "\n\n -Press any key to continue...\n -" + echo -e "Press any key to continue...\n " + read _junk fi } |