diff options
author | Cecil <knoppmyth@gmail.com> | 2011-07-07 13:47:21 (GMT) |
---|---|---|
committer | Cecil <knoppmyth@gmail.com> | 2011-07-07 13:47:21 (GMT) |
commit | ad32a43286913fd709415a7732de2ae0df2b4667 (patch) | |
tree | 25851f6ca02e6e3b8f70af534847172dce494047 /abs/core/udev/udev.install | |
parent | 8f25d1b04c215fb658962b9b851e34504f1cd758 (diff) | |
download | linhes_pkgbuild-ad32a43286913fd709415a7732de2ae0df2b4667.zip linhes_pkgbuild-ad32a43286913fd709415a7732de2ae0df2b4667.tar.gz linhes_pkgbuild-ad32a43286913fd709415a7732de2ae0df2b4667.tar.bz2 |
udev:Bumped to latest.
Diffstat (limited to 'abs/core/udev/udev.install')
-rw-r--r-- | abs/core/udev/udev.install | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/abs/core/udev/udev.install b/abs/core/udev/udev.install index e953ec7..5c02dd1 100644 --- a/abs/core/udev/udev.install +++ b/abs/core/udev/udev.install @@ -11,6 +11,33 @@ post_upgrade() { echo "They are located in /etc/udev/readme-udev-arch.txt" echo "----------" fi + if [ "$(vercmp $2 169)" -lt 0 ]; then + echo "ATTENTION UDEV:" + echo "---------------" + echo "Kernel 2.6.32 or newer is now required." + echo "OSS emulation modules are not loaded by default, add to rc.conf if needed." + echo "Arch specific cd symlinks are now no longer created." + echo "cd and net persistent rules will no longer be autogenerated," + echo "see <https://wiki.archlinux.org/index.php/Udev> for details." + echo "Errors are now logged (possibly to the console) by default." + echo "---------------" + fi + if [ "$(vercmp $2 172)" -lt 0 ]; then + echo "ATTENTION UDEV:" + echo "---------------" + echo "Arch's custom blacklisting logic has been removed. MOD_AUTOLOAD and" + echo "blacklisting in MODULES no longer works." + echo "See 'man modprobe.conf' for a replacement to blacklisting." + echo "To disable a module mod1 on the kernel command line, use" + echo "mod1.disable=1" + echo "or" + echo "modprobe.blacklist=mod1" + echo " --" + echo "The following modules are no longer unconditionally loaded:" + echo " pcspkr irtty-sir analog lp ppdev ide-generic" + echo "Add them to MODULES in rc.conf if you need them." + echo "---------------" + fi } post_install() { |