mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 01:54:36 +08:00
initscripts: dito linux-firmware: update firmwares mkinitcpio: bump to 0.7.5 udev: bump to 174 - update rules
14 lines
567 B
Plaintext
14 lines
567 B
Plaintext
post_upgrade() {
|
|
if [ "$(vercmp $2 2011.06.1)" -lt 0 ]; then
|
|
echo "Blacklisting of modules is no longer supported in rc.conf,"
|
|
echo "please add blacklist entries to /etc/modprobe.d/ instead."
|
|
fi
|
|
if [ "$(vercmp $2 2011.07.2)" -lt 0 ]; then
|
|
echo "VERBOSE= in rc.conf no longer has any effect."
|
|
echo "Please append 'quiet' to your kernel command line."
|
|
fi
|
|
if [ "$(vercmp $2 2011.10.1)" -lt 0 ]; then
|
|
echo "If using non-bash-compatible shell, please set LANG in /etc/locale.conf,"
|
|
echo "as LOCALE in /etc/rc.conf no longer works."
|
|
fi
|
|
} |