Currently we have a loader script, that just calls the dump saving script and exits successfully. This was meant to prevent potential boot stalls due to systemd delays, but it proved to be just unnecessary...so, let's drop it here. Signed-off-by: Guilherme G. Piccoli <gpiccoli@igalia.com>
18 lines
319 B
Desktop File
18 lines
319 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1+
|
|
#
|
|
# Copyright (c) 2021 Valve.
|
|
#
|
|
|
|
[Unit]
|
|
Description=SteamOS kdump loader boot-time service
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
StandardOutput=journal
|
|
ExecStartPre=/usr/lib/kdump/kdump-load.sh
|
|
ExecStart=/usr/lib/kdump/submit-report.sh
|
|
RemainAfterExit=yes
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|