diff options
author | Giancarlo Razzolini <grazzolini@archlinux.org> | 2019-10-29 14:40:58 +0100 |
---|---|---|
committer | Giancarlo Razzolini <grazzolini@archlinux.org> | 2019-10-29 14:40:58 +0100 |
commit | 7f81f51a5b813343fe55253f60a865e75f42be52 (patch) | |
tree | be882a1dc6994eb353b33a9255e34cd0866c7067 /libalpm/scripts/mkinitcpio-install | |
parent | 9ae6b1f928ef11e277437740908871ab535b655d (diff) | |
parent | c0ae6a74f30a586c91fb4a4f2ad773f1c018d8b6 (diff) | |
download | mkinitcpio-b66c7ed4b655b9a4bf5d6d4ab1219cfe40562d95.tar.gz mkinitcpio-b66c7ed4b655b9a4bf5d6d4ab1219cfe40562d95.tar.xz |
Merge branch 'alpm-hook'v27
Diffstat (limited to 'libalpm/scripts/mkinitcpio-install')
-rw-r--r-- | libalpm/scripts/mkinitcpio-install | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/libalpm/scripts/mkinitcpio-install b/libalpm/scripts/mkinitcpio-install new file mode 100644 index 0000000..d2e5041 --- /dev/null +++ b/libalpm/scripts/mkinitcpio-install @@ -0,0 +1,44 @@ +#!/bin/bash -e + +args=() +all=0 + +while read -r line; do + if [[ $line != */vmlinuz ]]; then + # triggers when it's a change to usr/lib/initcpio/* + all=1 + continue + fi + + if ! read -r pkgbase > /dev/null 2>&1 < "${line%/vmlinuz}/pkgbase"; then + # if the kernel has no pkgbase, we skip it + continue + fi + + preset="/etc/mkinitcpio.d/${pkgbase}.preset" + if [[ ! -e $preset ]]; then + if [[ -e $preset.pacsave ]]; then + # move the pacsave to the template + mv "${preset}.pacsave" "$preset" + else + # create the preset from the template + sed "s|%PKGBASE%|${pkgbase}|g" /usr/share/mkinitcpio/hook.preset \ + | install -Dm644 /dev/stdin "$preset" + fi + fi + + # always install the kernel + install -Dm644 "${line}" "/boot/vmlinuz-${pkgbase}" + + # compound args for each kernel + args+=(-p "${pkgbase}") +done + +if (( all )) && compgen -G /etc/mkinitcpio.d/"*.preset" > /dev/null; then + # change to use all presets + args=(-P) +fi + +if (( ${#args[@]} )); then + mkinitcpio "${args[@]}" +fi |