Accepting request 1067433 from home:michals

- kexec-bootloader: Add -a argument to load using kexec_load_file() when available (boo#1202820).

OBS-URL: https://build.opensuse.org/request/show/1067433
OBS-URL: https://build.opensuse.org/package/show/Kernel:kdump/kexec-tools?expand=0&rev=153
This commit is contained in:
Michal Suchanek 2023-02-27 14:06:48 +00:00 committed by Git OBS Bridge
parent 21909bf567
commit 3d2309cb94
2 changed files with 6 additions and 1 deletions

View File

@ -193,7 +193,7 @@ if ($initrd && ! -f $initrd) {
my $cmd = "kexec";
# append image
$cmd .= " -l '" . $image . "'";
$cmd .= " -a -l '" . $image . "'";
# append initrd if available
if ($initrd) {

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Feb 23 15:01:24 UTC 2023 - Michal Suchanek <msuchanek@suse.com>
- kexec-bootloader: Add -a argument to load using kexec_load_file() when available (boo#1202820).
-------------------------------------------------------------------
Thu Feb 2 13:45:39 UTC 2023 - Petr Tesařík <petr@tesarici.cz>