diff options
| author | Freya Murphy <freya@freyacat.org> | 2024-05-15 09:53:10 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2024-05-15 09:53:10 -0400 |
| commit | 82fdd486fdadac50cf73aa18d8e0d7bdbf32a5a4 (patch) | |
| tree | ce1a263aef76fab98d0f2575a459742a74714b73 /.root/etc/pacman.d/hooks | |
| parent | i forgor to commit stuff (diff) | |
| download | dotfiles-arch-82fdd486fdadac50cf73aa18d8e0d7bdbf32a5a4.tar.gz dotfiles-arch-82fdd486fdadac50cf73aa18d8e0d7bdbf32a5a4.tar.bz2 dotfiles-arch-82fdd486fdadac50cf73aa18d8e0d7bdbf32a5a4.zip | |
un forgor some files
Diffstat (limited to '.root/etc/pacman.d/hooks')
| -rw-r--r-- | .root/etc/pacman.d/hooks/uki.hook | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.root/etc/pacman.d/hooks/uki.hook b/.root/etc/pacman.d/hooks/uki.hook new file mode 100644 index 0000000..3ca2bf8 --- /dev/null +++ b/.root/etc/pacman.d/hooks/uki.hook @@ -0,0 +1,16 @@ +[Trigger] +Operation=Install +Operation=Upgrade +Operation=Remove +Type=Package +Target=amd-ucode +Target=linux +Target=linux-lts + +[Action] +Description=Update Kernel and Microcode in initramfs +Depends=mkinitcpio +When=PostTransaction +NeedsTargets +Exec=/bin/sh -c 'while read -r trg; do case $trg in linux) exit 0; esac; done; /usr/bin/mkinitcpio -P' + |