From c1c8751160648cbc628fc05dc672aeaae631d2d9 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 10 Jul 2025 16:56:16 -0700 Subject: [PATCH] Stop rebuilding initcpio twice during install --- install/fix-fkeys.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install/fix-fkeys.sh b/install/fix-fkeys.sh index 64f187c..40b5d93 100644 --- a/install/fix-fkeys.sh +++ b/install/fix-fkeys.sh @@ -1,4 +1,6 @@ if [[ ! -f /etc/modprobe.d/hid_apple.conf ]]; then echo "options hid_apple fnmode=2" | sudo tee /etc/modprobe.d/hid_apple.conf - sudo mkinitcpio -P + + # Rely on install/plymouth.sh to do the rebuild + # sudo mkinitcpio -P fi