all: Move the multi-configuration file reading routine to a common helper

Based on Emil's (xexaxo) feedback, we now have a common.sh file
that contains the implementation of the routine to read all config
files for kdump/pstore, and we use Makefile to join the files,
having the same implemention in all users.

Signed-off-by: Guilherme G. Piccoli <gpiccoli@igalia.com>
This commit is contained in:
Guilherme G. Piccoli
2022-12-01 12:12:42 -03:00
parent a967f5b553
commit a6e1fdf249
8 changed files with 69 additions and 84 deletions

14
kdump-load.header Normal file
View File

@ -0,0 +1,14 @@
#!/bin/bash
set -uo pipefail
#
# SPDX-License-Identifier: LGPL-2.1+
#
# 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.
#