You are not logged in.

#26 2020-05-31 21:27:07

juri88
Member
Registered: 2019-10-16
Posts: 2

Re: Keyboard does not work at LUKS password prompt

In the meantime I found something pretty interesting - the problem is reproducible when I have my notebook standing flat (e.g. on a table) - and the keyboard works for password entry, when it's in a pretty steep angle (it has to be like that the whole time - as soon as I hold it flat the keyboard stops working).

Offline

#27 2022-01-28 18:50:34

tatooine-sunset
Member
Registered: 2022-01-28
Posts: 1

Re: Keyboard does not work at LUKS password prompt

I have the exact same issue. I installed Arch on a Fujitsu Lifebook E548 laptop today. I followed the installation guide and the LUKS on LVM guide in the wiki. The only difference is that I used thin LVM volumes but I don't think that matters.

If I plug in a USB keyboard while at the password prompt, I can enter my password but the laptop keyboard does not work. After opening the encrypted device this way, I can disconnect the USB keyboard and log in and use my system using the built-in one.

mkinitcpio.conf:

MODULES=(atkbd)
BINARIES=()
FILES=()
HOOKS=(base udev keyboard keymap autodetect consolefont modconf block encrypt lvm2 filesystems fsck)

Workarounds I've tried:

  • Moving the keyboard and keymap hooks before autodetect

  • Adding the consolefont hook

  • Adding the atkbd module

After each of these I regenerated my initramfs and rebooted but none of them worked.

What am I missing?

Offline

#28 2022-05-19 07:46:50

stefan
Member
Registered: 2013-03-22
Posts: 104

Re: Keyboard does not work at LUKS password prompt

I ran into this problem today.  I have

$ lsblk
NAME                                     MAJ:MIN RM   SIZE RO TYPE  MOUNTPOINTS
sda                                        8:0    0 931.5G  0 disk
├─sda1                                     8:1    0   512M  0 part  /boot
└─sda2                                     8:2    0   931G  0 part
  └─XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX 254:0    0   931G  0 crypt /

and

$ cat /etc/mkinitcpio.conf | grep -v '^#'
MODULES=(ata_generic ata_piix nls_cp437 ext2 usb_storage uas)

BINARIES=()

FILES=()

HOOKS=(base udev autodetect modconf block encrypt filesystems keyboard fsck)

on a standalone PC (no laptop).  After today's update, I was unable to enter the LUKS password on boot.  The keyboard was completely unresponsive.

I've fixed this using an Arch Linux pendrive booting into a live system.  Then I ran commands that I have prepared as a simple script for future use:

#!/bin/bash
set -u -e -C
shopt -s failglob

lsblk -oname,size,type,mountpoint
read -e -i/dev/ -pboot= boot
read -e -i/dev/ -proot= root
read -e -i/mnt/ -pmnt= mnt

cryptsetup isLuks "${root}"
map="$(blkid -ovalue -sUUID "${root}")"
cryptsetup open "${root}" "${map}" --type luks
mount "/dev/mapper/${map}" "${mnt}"
mount "${boot}" "${mnt}/boot"

arch-chroot "${mnt}" mkinitcpio -P

which basically mounts the encrypted root partition and the unencrypted boot partition, does a chroot as described in the system installation guide, and then just runs `mkinitcpio -P`.

This solved the issue for me.

Trying to find out what went wrong, I had a look at `/var/log/pacman.log` from today's update:

$ grep -F '[2022-05-19' /var/log/pacman.log
[2022-05-19T08:06:14+0200] [PACMAN] Running 'pacman -Syu'
[2022-05-19T08:06:14+0200] [PACMAN] synchronizing package lists
[2022-05-19T08:06:15+0200] [PACMAN] starting full system upgrade
[2022-05-19T08:15:44+0200] [ALPM] running '60-mkinitcpio-remove.hook'...
[2022-05-19T08:15:44+0200] [ALPM] running 'ghc-unregister.hook'...
[2022-05-19T08:15:59+0200] [ALPM] transaction started
[2022-05-19T08:15:59+0200] [ALPM] upgraded amd-ucode (20220411.705f19a-1 -> 20220509.b19cbdc-1)
[2022-05-19T08:16:00+0200] [ALPM] upgraded gcc-libs (12.1.0-1 -> 12.1.0-2)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-base-orphans (0.8.6-35 -> 0.8.6-37)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-hashable (1.4.0.1-8 -> 1.4.0.2-4)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-async (2.2.4-52 -> 2.2.4-56)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-base16-bytestring (1.0.2.0-22 -> 1.0.2.0-23)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-cryptohash-sha256 (0.11.102.1-33 -> 0.11.102.1-34)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-splitmix (0.1.0.4-60 -> 0.1.0.4-62)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-random (1.2.1.1-4 -> 1.2.1.1-7)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-edit-distance (0.2.2.1-149 -> 0.2.2.1-150)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-base64-bytestring (1.2.1.0-43 -> 1.2.1.0-44)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-lukko (0.1.1.3-87 -> 0.1.1.3-90)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-network (3.1.2.7-20 -> 3.1.2.7-21)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-th-compat (0.1.3-39 -> 0.1.3-40)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-network-uri (2.6.4.1-77 -> 2.6.4.1-78)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-tar (0.5.1.1-114 -> 0.5.1.1-115)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-zlib (0.6.3.0-2 -> 0.6.3.0-3)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-hackage-security (0.6.0.1-286 -> 0.6.0.1-289)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-http (4000.4.0-16 -> 4000.4.0-19)
[2022-05-19T08:16:00+0200] [ALPM] upgraded haskell-resolv (0.1.2.0-143 -> 0.1.2.0-144)
[2022-05-19T08:16:00+0200] [ALPM] upgraded cabal-install (3.4.0.0-139 -> 3.4.0.0-142)
[2022-05-19T08:16:00+0200] [ALPM] upgraded libldap (2.6.1-1 -> 2.6.2-1)
[2022-05-19T08:16:00+0200] [ALPM] installed dbus-python (1.2.18-3)
[2022-05-19T08:16:00+0200] [ALPM] installed python-send2trash (1.8.0-3)
[2022-05-19T08:16:00+0200] [ALPM] upgraded gnutls (3.7.4-3 -> 3.7.5-1)
[2022-05-19T08:16:01+0200] [ALPM] upgraded llvm-libs (13.0.1-2 -> 13.0.1-3)
[2022-05-19T08:16:01+0200] [ALPM] upgraded gtk3 (1:3.24.33+r28+g01edbfb976-1 -> 1:3.24.34-1)
[2022-05-19T08:16:01+0200] [ALPM] installed python-wxpython (1:4.0.7.2-3)
[2022-05-19T08:16:01+0200] [ALPM] installed python-netifaces (0.11.0-3)
[2022-05-19T08:16:01+0200] [ALPM] installed python-ifaddr (0.1.7-5)
[2022-05-19T08:16:01+0200] [ALPM] installed python-zeroconf (0.38.4-1)
[2022-05-19T08:16:01+0200] [ALPM] upgraded openjpeg2 (2.4.0-1 -> 2.5.0-1)
[2022-05-19T08:16:02+0200] [ALPM] upgraded displaycal (3.8.9.3-1 -> 3.9.4-1)
[2022-05-19T08:16:02+0200] [ALPM] upgraded libasyncns (0.8+3+g68cd5af-3 -> 1:0.8+r3+g68cd5af-1)
[2022-05-19T08:16:02+0200] [ALPM] upgraded firefox (100.0-1 -> 100.0.1-1)
[2022-05-19T08:16:03+0200] [ALPM] upgraded gcc (12.1.0-1 -> 12.1.0-2)
[2022-05-19T08:16:03+0200] [ALPM] installed freeglut (3.2.2-2)
[2022-05-19T08:16:03+0200] [ALPM] upgraded jasper (2.0.33-2 -> 3.0.3-1)
[2022-05-19T08:16:03+0200] [ALPM] upgraded libraw (0.20.2-1 -> 0.20.2-2)
[2022-05-19T08:16:03+0200] [ALPM] upgraded poppler (22.05.0-1 -> 22.05.0-2)
[2022-05-19T08:16:03+0200] [ALPM] upgraded poppler-glib (22.05.0-1 -> 22.05.0-2)
[2022-05-19T08:16:03+0200] [ALPM] upgraded gegl (0.4.36-2 -> 0.4.36-3)
[2022-05-19T08:16:04+0200] [ALPM] upgraded graphicsmagick (1.3.38-1 -> 1.3.38-2)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-primitive (0.7.3.0-46 -> 0.7.3.0-48)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-scientific (0.3.7.0-55 -> 0.3.7.0-56)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-attoparsec (0.14.4-16 -> 0.14.4-17)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-base-compat-batteries (0.12.1-18 -> 0.12.1-20)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-data-fix (0.3.2-44 -> 0.3.2-45)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-dlist (1.0-155 -> 1.0-157)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-distributive (0.6.2.1-144 -> 0.6.2.1-145)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-comonad (5.0.8-141 -> 5.0.8-142)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-bifunctors (5.5.12-2 -> 5.5.12-3)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-assoc (1.0.2-138 -> 1.0.2-139)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-these (1.1.1.1-139 -> 1.1.1.1-140)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-strict (0.4.0.1-112 -> 0.4.0.1-113)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-time-compat (1.9.6.1-39 -> 1.9.6.1-40)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-unordered-containers (0.2.19.1-2 -> 0.2.19.1-5)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-uuid-types (1.0.5-59 -> 1.0.5-60)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-vector (0.12.3.1-82 -> 0.12.3.1-84)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-aeson (1.5.6.0-102 -> 1.5.6.0-105)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-aeson-pretty (0.8.9-53 -> 0.8.9-56)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-colour (2.3.6-94 -> 2.3.6-96)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-ansi-terminal (0.11.1-25 -> 0.11.1-27)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-ansi-wl-pprint (0.6.9-302 -> 0.6.9-304)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-hourglass (0.2.12-188 -> 0.2.12-189)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-memory (0.17.0-8 -> 0.17.0-9)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-asn1-types (0.3.4-148 -> 0.3.4-149)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-asn1-encoding (0.9.6-169 -> 0.9.6-170)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-asn1-parse (0.9.5-169 -> 0.9.5-170)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-attoparsec-iso8601 (1.0.2.1-21 -> 1.0.2.1-22)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-auto-update (0.1.6-239 -> 0.1.6-242)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-blaze-markup (0.8.2.8-72 -> 0.8.2.8-73)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-blaze-html (0.9.1.2-166 -> 0.9.1.2-167)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-split (0.2.3.4-187 -> 0.2.3.4-188)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-vector-algorithms (0.8.0.4-107 -> 0.8.0.4-108)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-mono-traversable (1.0.15.3-47 -> 1.0.15.3-50)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-resourcet (1.2.4.3-44 -> 1.2.5-1)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-conduit (1.3.4.2-50 -> 1.3.4.2-53)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-unix-time (0.4.7-171 -> 0.4.7-172)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-fast-logger (3.1.1-10 -> 3.1.1-13)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-case-insensitive (1.2.1.0-145 -> 1.2.1.0-146)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-http-types (0.12.3-230 -> 0.12.3-233)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-http-api-data (0.4.3-120 -> 0.4.3-123)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-streaming-commons (0.2.2.4-16 -> 0.2.2.4-17)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-typed-process (0.2.8.0-28 -> 0.2.8.0-29)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-conduit-extra (1.3.5-229 -> 1.3.5-232)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-transformers-base (0.4.6-44 -> 0.4.6-45)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-monad-control (1.0.3.1-44 -> 1.0.3.1-45)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-lifted-base (0.2.3.12-209 -> 0.2.3.12-210)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-monad-logger (0.3.36-201 -> 0.3.36-204)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-resource-pool (0.2.3.2-238 -> 0.2.3.2-239)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-th-lift-instances (0.1.19-28 -> 0.1.19-29)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-unliftio (0.2.22.0-2 -> 0.2.22.0-3)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-vault (0.3.1.5-81 -> 0.3.1.5-84)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-persistent (2.13.3.1-8 -> 2.13.3.1-11)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-casa-types (0.0.2-240 -> 0.0.2-243)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-cryptonite (0.30-12 -> 0.30-13)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-iproute (1.7.12-20 -> 1.7.12-21)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-http-client (0.7.11-18 -> 0.7.11-21)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-socks (0.6.1-172 -> 0.6.1-173)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-pem (0.2.4-225 -> 0.2.4-226)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-x509 (1.7.6-15 -> 1.7.6-16)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-x509-store (1.6.9-22 -> 1.6.9-23)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-x509-validation (1.6.12-27 -> 1.6.12-28)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-tls (1.5.7-25 -> 1.5.7-26)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-x509-system (1.6.7-25 -> 1.6.7-26)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-connection (0.3.1-193 -> 0.3.1-194)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-http-client-tls (0.3.6.1-10 -> 0.3.6.1-13)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-http-conduit (2.3.8-186 -> 2.3.8-189)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-casa-client (0.0.1-446 -> 0.0.1-449)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-data-default-instances-dlist (0.0.1-233 -> 0.0.1-235)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-data-default (0.7.1.1-220 -> 0.7.1.1-222)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-quickcheck (2.14.2-306 -> 2.14.2-309)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-syb (0.7.2.1-132 -> 0.7.2.1-134)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-pandoc-types (1.22.2-8 -> 1.22.2-11)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-text-icu (0.8.0.1-13 -> 0.8.0.1-14)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-unicode-collation (0.1.3.1-38 -> 0.1.3.1-39)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-uniplate (1.6.13-118 -> 1.6.13-121)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-xml-conduit (1.9.1.1-104 -> 1.9.1.1-107)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-citeproc (0.6.0.1-43 -> 0.6.0.1-46)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-clock (0.8.3-21 -> 0.8.3-23)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-unicode-data (0.3.0-9 -> 0.3.0-10)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-unicode-transforms (0.4.0.1-7 -> 0.4.0.1-8)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-commonmark (0.2.1.1-23 -> 0.2.1.1-24)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-emojis (0.1.2-16 -> 0.1.2-17)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-commonmark-extensions (0.2.3-8 -> 0.2.3-9)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-commonmark-pandoc (0.2.1.2-37 -> 0.2.1.2-40)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-constraints (0.13.3-11 -> 0.13.3-12)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-cryptonite-conduit (0.2.2-484 -> 0.2.2-487)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-doclayout (0.3.1.1-11 -> 0.3.1.1-12)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-hsyaml (0.2.1.0-158 -> 0.2.1.1-1)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-text-conversions (0.3.1.1-2 -> 0.3.1.1-3)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-doctemplates (0.10.0.1-55 -> 0.10.0.1-59)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-profunctors (5.6.2-83 -> 5.6.2-84)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-semigroupoids (5.3.7-28 -> 5.3.7-31)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-either (5.0.2-4 -> 5.0.2-7)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-enclosed-exceptions (1.0.3-195 -> 1.0.3-196)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-extra (1.7.10-50 -> 1.7.10-53)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-filelock (0.1.1.5-134 -> 0.1.1.5-135)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-filtrable (0.1.6.0-125 -> 0.1.6.0-126)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-hinotify (0.4.1-113 -> 0.4.1-114)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-lifted-async (0.10.2.2-39 -> 0.10.2.2-44)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-shelly (1.10.0-7 -> 1.10.0-10)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-fsnotify (0.3.0.1-277 -> 0.3.0.1-280)
[2022-05-19T08:16:04+0200] [ALPM] upgraded haskell-generic-deriving (1.14.1-40 -> 1.14.1-41)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-githash (0.1.6.2-94 -> 0.1.6.2-97)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-glob (0.10.2-32 -> 0.10.2-33)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-haddock-library (1.10.0-124 -> 1.10.0-128)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-rio (0.1.22.0-1 -> 0.1.22.0-4)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hi-file-parser (0.1.2.0-79 -> 0.1.2.0-82)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-text-metrics (0.3.2-24 -> 0.3.2-25)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-infer-license (0.2.0-191 -> 0.2.0-192)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-libyaml (0.1.2-214 -> 0.1.2-217)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-yaml (0.11.8.0-21 -> 0.11.8.0-24)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hpack (0.34.5-14 -> 0.34.5-17)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-lua (2.1.0-6 -> 2.1.0-7)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hslua-core (2.1.0-10 -> 2.1.0-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hslua-marshalling (2.1.0-10 -> 2.1.0-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hslua-classes (2.1.0-10 -> 2.1.0-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hslua-objectorientation (2.1.0-10 -> 2.1.0-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hslua-packaging (2.1.0-10 -> 2.1.0-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hslua (2.1.0-10 -> 2.1.0-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hslua-aeson (2.1.0-10 -> 2.1.0-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hslua-module-path (1.0.1-10 -> 1.0.1-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-temporary (1.3-399 -> 1.3-403)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hslua-module-system (1.0.1-10 -> 1.0.1-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hslua-module-text (1.0.1-10 -> 1.0.1-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-hslua-module-version (1.0.1-10 -> 1.0.1-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-path (0.9.2-36 -> 0.9.2-39)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-path-io (1.7.0-9 -> 1.7.0-12)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-retry (0.9.2.0-13 -> 0.9.2.0-16)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-rio-prettyprint (0.1.1.0-207 -> 0.1.1.0-210)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-http-download (0.2.0.0-444 -> 0.2.0.0-447)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-ipynb (0.2-11 -> 0.2-14)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-jira-wiki-markup (1.4.0-55 -> 1.4.0-56)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-juicypixels (3.3.7-12 -> 3.3.7-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-lpeg (1.0.2-6 -> 1.0.2-7)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-megaparsec (9.2.0-35 -> 9.2.1-1)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-mustache (2.4.1-13 -> 2.4.1-17)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-neat-interpolation (0.5.1.3-41 -> 0.5.1.3-46)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-optparse-applicative (0.16.1.0-232 -> 0.16.1.0-235)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-system-filepath (0.4.14-190 -> 0.4.14-191)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-void (0.7.3-145 -> 0.7.3-146)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-optparse-generic (1.4.7-29 -> 1.4.7-30)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-optparse-simple (0.1.1.4-126 -> 0.1.1.4-129)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-pandoc-lua-marshal (0.1.5.1-10 -> 0.1.5.1-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-persistent-sqlite (2.13.0.3-143 -> 2.13.0.3-146)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-rio-orphans (0.1.2.0-133 -> 0.1.2.0-136)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-safe-exceptions (0.1.7.2-47 -> 0.1.7.2-48)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-tar-conduit (0.3.2-293 -> 0.3.2-296)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-zip-archive (0.4.2.1-12 -> 0.4.2.1-13)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-pantry (0.5.4-23 -> 0.5.4-26)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-project-template (0.2.1.0-205 -> 0.2.1.0-208)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-regex-applicative (0.3.4-135 -> 0.3.4-136)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-regex-applicative-text (0.1.0.1-155 -> 0.1.0.1-156)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-utf8-string (1.0.2-92 -> 1.0.2-93)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-skylighting-core (0.12.3-12 -> 0.12.3-15)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-skylighting (0.12.3-12 -> 0.12.3-15)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-tagsoup (0.14.8-168 -> 0.14.8-169)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-texmath (0.12.5-8 -> 0.12.5-11)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-th-expand-syns (0.4.9.0-26 -> 0.4.9.0-27)
[2022-05-19T08:16:05+0200] [ALPM] upgraded haskell-th-reify-many (0.1.10-42 -> 0.1.10-43)
[2022-05-19T08:16:05+0200] [ALPM] upgraded imagemagick (7.1.0.33-1 -> 7.1.0.35-1)
[2022-05-19T08:16:06+0200] [ALPM] upgraded lib32-gcc-libs (12.1.0-1 -> 12.1.0-2)
[2022-05-19T08:16:06+0200] [ALPM] upgraded linux-firmware-whence (20220411.705f19a-1 -> 20220509.b19cbdc-1)
[2022-05-19T08:16:06+0200] [ALPM] upgraded linux-firmware (20220411.705f19a-1 -> 20220509.b19cbdc-1)
[2022-05-19T08:16:07+0200] [ALPM] upgraded linux-lts (5.15.39-1 -> 5.15.41-1)
[2022-05-19T08:16:10+0200] [ALPM] upgraded linux-lts-headers (5.15.39-1 -> 5.15.41-1)
[2022-05-19T08:16:12+0200] [ALPM] upgraded llvm (13.0.1-2 -> 13.0.1-3)
[2022-05-19T08:16:12+0200] [ALPM] upgraded mutt (2.2.4-1 -> 2.2.5-1)
[2022-05-19T08:16:12+0200] [ALPM] upgraded nvidia-lts (1:515.43.04-2 -> 1:515.43.04-5)
[2022-05-19T08:16:12+0200] [ALPM] upgraded pandoc (2.17.1.1-24 -> 2.17.1.1-29)
[2022-05-19T08:16:12+0200] [ALPM] upgraded python-pyparsing (3.0.8-1 -> 3.0.9-1)
[2022-05-19T08:16:13+0200] [ALPM] upgraded python-scipy (1.8.0-1 -> 1.8.1-1)
[2022-05-19T08:16:13+0200] [ALPM] upgraded python-setuptools (1:60.3.1-1 -> 1:60.6.0-1)
[2022-05-19T08:16:13+0200] [ALPM] upgraded qt5-translations (5.15.3+kde+r2-1 -> 5.15.4+kde+r2-1)
[2022-05-19T08:16:14+0200] [ALPM] upgraded qt5-base (5.15.3+kde+r145-1 -> 5.15.4+kde+r144-1)
[2022-05-19T08:16:14+0200] [ALPM] upgraded qt5-charts (5.15.3+kde+r0-1 -> 5.15.4+kde+r0-1)
[2022-05-19T08:16:14+0200] [ALPM] upgraded qt5-declarative (5.15.3+kde+r20-1 -> 5.15.4+kde+r19-1)
[2022-05-19T08:16:14+0200] [ALPM] upgraded qt5-location (5.15.3+kde+r2-1 -> 5.15.4+kde+r2-1)
[2022-05-19T08:16:14+0200] [ALPM] upgraded qt5-multimedia (5.15.3+kde+r0-1 -> 5.15.4+kde+r0-1)
[2022-05-19T08:16:14+0200] [ALPM] upgraded qt5-script (5.15.9-1 -> 5.15.9-2)
[2022-05-19T08:16:14+0200] [ALPM] upgraded qt5-serialport (5.15.3+kde+r0-1 -> 5.15.4+kde+r0-1)
[2022-05-19T08:16:14+0200] [ALPM] upgraded stack (2.7.5-53 -> 2.7.5-58)
[2022-05-19T08:16:14+0200] [ALPM] upgraded yt-dlp (2022.04.08-1 -> 2022.05.18-1)
[2022-05-19T08:16:15+0200] [ALPM] transaction completed
[2022-05-19T08:16:17+0200] [ALPM] running '30-systemd-tmpfiles.hook'...
[2022-05-19T08:16:17+0200] [ALPM] running '30-systemd-update.hook'...
[2022-05-19T08:16:17+0200] [ALPM] running '60-depmod.hook'...
[2022-05-19T08:16:20+0200] [ALPM] running '90-mkinitcpio-install.hook'...
[2022-05-19T08:16:20+0200] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-lts.preset: 'default'
[2022-05-19T08:16:20+0200] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-linux-lts -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-lts.img
[2022-05-19T08:16:20+0200] [ALPM-SCRIPTLET] ==> Starting build: 5.15.41-1-lts
[2022-05-19T08:16:21+0200] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2022-05-19T08:16:21+0200] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2022-05-19T08:16:21+0200] [ALPM-SCRIPTLET]   -> Running build hook: [autodetect]
[2022-05-19T08:16:22+0200] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2022-05-19T08:16:22+0200] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2022-05-19T08:16:22+0200] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: xhci_pci
[2022-05-19T08:16:23+0200] [ALPM-SCRIPTLET]   -> Running build hook: [encrypt]
[2022-05-19T08:16:23+0200] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: qat_4xxx
[2022-05-19T08:16:23+0200] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2022-05-19T08:16:24+0200] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2022-05-19T08:16:24+0200] [ALPM-SCRIPTLET]   -> Running build hook: [fsck]
[2022-05-19T08:16:24+0200] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2022-05-19T08:16:24+0200] [ALPM-SCRIPTLET] ==> Creating zstd-compressed initcpio image: /boot/initramfs-linux-lts.img
[2022-05-19T08:16:24+0200] [ALPM-SCRIPTLET] ==> Image generation successful
[2022-05-19T08:16:24+0200] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-lts.preset: 'fallback'
[2022-05-19T08:16:24+0200] [ALPM-SCRIPTLET]   -> -k /boot/vmlinuz-linux-lts -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-lts-fallback.img -S autodetect
[2022-05-19T08:16:24+0200] [ALPM-SCRIPTLET] ==> Starting build: 5.15.41-1-lts
[2022-05-19T08:16:24+0200] [ALPM-SCRIPTLET]   -> Running build hook: [base]
[2022-05-19T08:16:25+0200] [ALPM-SCRIPTLET]   -> Running build hook: [udev]
[2022-05-19T08:16:25+0200] [ALPM-SCRIPTLET]   -> Running build hook: [modconf]
[2022-05-19T08:16:25+0200] [ALPM-SCRIPTLET]   -> Running build hook: [block]
[2022-05-19T08:16:26+0200] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
[2022-05-19T08:16:26+0200] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: bfa
[2022-05-19T08:16:26+0200] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: qed
[2022-05-19T08:16:26+0200] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: qla1280
[2022-05-19T08:16:26+0200] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: qla2xxx
[2022-05-19T08:16:27+0200] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: wd719x
[2022-05-19T08:16:27+0200] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: xhci_pci
[2022-05-19T08:16:28+0200] [ALPM-SCRIPTLET]   -> Running build hook: [encrypt]
[2022-05-19T08:16:29+0200] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: qat_4xxx
[2022-05-19T08:16:30+0200] [ALPM-SCRIPTLET]   -> Running build hook: [filesystems]
[2022-05-19T08:16:31+0200] [ALPM-SCRIPTLET]   -> Running build hook: [keyboard]
[2022-05-19T08:16:32+0200] [ALPM-SCRIPTLET]   -> Running build hook: [fsck]
[2022-05-19T08:16:33+0200] [ALPM-SCRIPTLET] ==> Generating module dependencies
[2022-05-19T08:16:33+0200] [ALPM-SCRIPTLET] ==> Creating zstd-compressed initcpio image: /boot/initramfs-linux-lts-fallback.img
[2022-05-19T08:16:34+0200] [ALPM-SCRIPTLET] ==> Image generation successful
[2022-05-19T08:16:34+0200] [ALPM] running 'detect-old-perl-modules.hook'...
[2022-05-19T08:16:34+0200] [ALPM] running 'ghc-register.hook'...
[2022-05-19T08:16:47+0200] [ALPM] running 'glib-compile-schemas.hook'...
[2022-05-19T08:16:47+0200] [ALPM] running 'gtk-query-immodules-3.0.hook'...
[2022-05-19T08:16:47+0200] [ALPM] running 'gtk-update-icon-cache.hook'...
[2022-05-19T08:16:47+0200] [ALPM] running 'texinfo-install.hook'...
[2022-05-19T08:16:48+0200] [ALPM] running 'update-desktop-database.hook'...

So it seems like `mkinitcpio` had been run, but I had to run it again.

Any ideas what this could be related to?

Cheers
Stefan

Offline

Board footer

Powered by FluxBB