Add warning about missing keyboard support.

This commit is contained in:
Thomas Bächler 2014-01-26 09:07:23 +00:00
parent d435b565ea
commit c2a62a696b
1 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,12 @@ post_upgrade() {
depmod ${KERNEL_VERSION}
echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
mkinitcpio -p linux${KERNEL_NAME}
if [ $(vercmp $2 3.13) -lt 0 ]; then
echo ">>> WARNING: AT keyboard support is no longer built into the kernel."
echo ">>> In order to use your keyboard during early init, you MUST"
echo ">>> include the 'keyboard' hook in your mkinitcpio.conf."
fi
}
post_remove() {