From 72f49ea9aa8ea6004072334d0b702463c44ee6fa Mon Sep 17 00:00:00 2001 From: Eugenio Paolantonio Date: Tue, 4 Feb 2025 15:40:08 +0100 Subject: [PATCH] live: fix_bootconfig.s390x: restore initrd.off naming for the initrd offset See discussion in bsc#1236781, and gh#agama-project/agama#1969. This essentially reverts c3c8fc4. Signed-off-by: Eugenio Paolantonio --- live/config-cdroot/fix_bootconfig.s390x | 14 +++++++------- live/src/agama-installer.changes | 7 +++++++ 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/live/config-cdroot/fix_bootconfig.s390x b/live/config-cdroot/fix_bootconfig.s390x index c7863b7b72..31ae0fbb43 100755 --- a/live/config-cdroot/fix_bootconfig.s390x +++ b/live/config-cdroot/fix_bootconfig.s390x @@ -29,7 +29,7 @@ # │   └── s390x # │   ├── cd.ikr # │   ├── initrd -# │   ├── initrd.ofs +# │   ├── initrd.off # │   ├── initrd.siz # │   ├── linux # │   ├── parmfile @@ -97,8 +97,8 @@ initrd_siz_ofs=0x00010414 initrd_ofs=0x01000000 parmfile_ofs=0x00010480 -# Create initrd.ofs (note: 32 bit, stored in big endian). -printf "%08x" $((initrd_ofs)) | xxd -r -p - $boot_dir/initrd.ofs +# Create initrd.off (note: 32 bit, stored in big endian). +printf "%08x" $((initrd_ofs)) | xxd -r -p - $boot_dir/initrd.off # Create initrd.siz (note: 32 bit, stored in big endian). read initrd_size x < <(du -b $boot_dir/initrd) @@ -108,7 +108,7 @@ printf "%08x" $((initrd_size)) | xxd -r -p - $boot_dir/initrd.siz cat >$boot_dir/suse.ins <$dst/suse.ins <$dst/susehmc.ins < + +- live: fix_bootconfig.s390x: restore initrd.off naming for the initrd offset + This essentially reverts the previous change (bsc#1236781, gh#agama-project/agama#1969, + gh#agama-project/agama#1974) + ------------------------------------------------------------------- Mon Feb 3 23:08:34 UTC 2025 - Eugenio Paolantonio