Thanks to the heads-up from Foxboron (on Arch Linux IRC channel) add hereby a LICENSE file to the project that matches the SPDX headers. While at it, fix the SPDX short identifier on headers, that was deprecated (as per [0]). The license file was a pure copy obtained today from [1]. [0] https://spdx.org/licenses/LGPL-2.1+.html [1] https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt Signed-off-by: Guilherme G. Piccoli <gpiccoli@igalia.com>
17 lines
673 B
Bash
17 lines
673 B
Bash
#!/bin/bash
|
|
set -eo pipefail # exclude -u on purpose to avoid issues with param checking
|
|
#
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
#
|
|
# Copyright (c) 2022 Valve.
|
|
# Maintainer: Guilherme G. Piccoli <gpiccoli@igalia.com>
|
|
#
|
|
# This is the generic alpm-hook script that handles kernel/package
|
|
# installation for INITRD users, on behalf of kdumpst. Covers both manual
|
|
# invocation (to create the initramfs image for a given kernel) as
|
|
# well as kernel package installation/removal trigger. It also handles
|
|
# the event of installing the package INITRD, which requires the
|
|
# installation of initramfs hooks to be executed early in boot time,
|
|
# in case of a kdump.
|
|
#
|