From c2a62a696b6da08d3a3690eb55aa68d91825de93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20B=C3=A4chler?= Date: Sun, 26 Jan 2014 09:07:23 +0000 Subject: [PATCH] Add warning about missing keyboard support. --- linux.install | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/linux.install b/linux.install index a70296f..ef42413 100644 --- a/linux.install +++ b/linux.install @@ -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() {