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>
15 lines
583 B
Bash
15 lines
583 B
Bash
#!/bin/bash
|
|
set -o pipefail # Didn't set -u on purpose, since users could pass empty $1
|
|
#
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
#
|
|
# Copyright (c) 2021 Valve.
|
|
# Maintainer: Guilherme G. Piccoli <gpiccoli@igalia.com>
|
|
#
|
|
# Script that loads the panic kdump (from within a systemd service) and/or
|
|
# configures the Pstore-RAM mechanism. If the proper parameters are passed
|
|
# also, either it creates the minimal kdump initramfs for the running kernel
|
|
# or removes all the previously created ones. Since it runs on boot time,
|
|
# extra care is required to avoid boot hangs.
|
|
#
|