Big but self-explanatory commit: rename the tool. The name choice was kdumpst, since it's a tool to enable both kdump and pstore setting, also it's a silly wordplay with the superlative of kdump, as in "kdumpest". It's an invasive change (touches most of the files), but should offer no functional change other than logging messages showing kdumpst now, instead of kdump, and some filenames. Notice it doesn't touch documentation, which will be done in a subsequent commit. Signed-off-by: Guilherme G. Piccoli <gpiccoli@igalia.com>
28 lines
674 B
Plaintext
28 lines
674 B
Plaintext
# SPDX-License-Identifier: LGPL-2.1+
|
|
#
|
|
# Copyright (c) 2022 Valve.
|
|
# Maintainer: Guilherme G. Piccoli <gpiccoli@igalia.com>
|
|
#
|
|
# alpm hook to deal with the kdump initramfs creation/deletion
|
|
# for INITRD users. This hook would act upon kernel installation,
|
|
# upgrade and removal, also on INITRD package installation.
|
|
#
|
|
[Trigger]
|
|
Type = Path
|
|
Operation = Install
|
|
Operation = Remove
|
|
Operation = Upgrade
|
|
Target = usr/lib/modules/*/vmlinuz
|
|
|
|
[Trigger]
|
|
Type = Package
|
|
Operation = Install
|
|
Target = INITRD
|
|
|
|
[Action]
|
|
Description = Managing kdump minimal initramfs and INITRD hooks...
|
|
Depends=INITRD
|
|
When = PostTransaction
|
|
Exec = /usr/lib/kdumpst/kdump-INITRD-hook.sh
|
|
NeedsTargets
|