summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimão Gomes Viana2020-11-25 10:33:23 +0100
committerSimão Gomes Viana2020-11-25 10:33:43 +0100
commit88210b273c6561b3c67b3bdef81ddc4c2afb5124 (patch)
tree14b1579059d58bff361753fcb2acc12112d2c495
parenta14cb4f863ad9ca8bb2b3cc1e7f6711989a87a83 (diff)
downloadaur-88210b273c6561b3c67b3bdef81ddc4c2afb5124.tar.gz
Add back mkinitcpio
Seems like this is still necessary Signed-off-by: Simão Gomes Viana <devel@superboring.dev>
-rw-r--r--linux-nitrous-git.install6
1 files changed, 5 insertions, 1 deletions
diff --git a/linux-nitrous-git.install b/linux-nitrous-git.install
index d2e43f4fe514..0ca7cbd7aa1b 100644
--- a/linux-nitrous-git.install
+++ b/linux-nitrous-git.install
@@ -5,7 +5,8 @@ KERNEL_NAME=
KERNEL_VERSION=
post_install () {
- :
+ echo ">>> Generating kernel initramfs..."
+ mkinitcpio -p ${KERNEL_NAME}
}
post_upgrade() {
@@ -13,6 +14,9 @@ post_upgrade() {
echo "WARNING: /boot appears to be a separate partition but is not mounted."
fi
+ echo ">>> Generating kernel initramfs..."
+ mkinitcpio -p ${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"