diff --git a/live/config-cdroot/fix_bootconfig.aarch64 b/live/config-cdroot/fix_bootconfig.aarch64 index 4299976f0e..12d3056f97 100755 --- a/live/config-cdroot/fix_bootconfig.aarch64 +++ b/live/config-cdroot/fix_bootconfig.aarch64 @@ -5,6 +5,8 @@ # https://github.com/openSUSE/agama/issues/1609 # KIWI config +set -e + dst="$1" if [ ! -d "$dst" ] ; then diff --git a/live/config-cdroot/fix_bootconfig.ppc64le b/live/config-cdroot/fix_bootconfig.ppc64le index 2f0a75da7c..32577f6037 100755 --- a/live/config-cdroot/fix_bootconfig.ppc64le +++ b/live/config-cdroot/fix_bootconfig.ppc64le @@ -37,6 +37,8 @@ # └── bootinfo.txt # +set -e + dst="$1" if [ ! -d "$dst" ] ; then diff --git a/live/config-cdroot/fix_bootconfig.s390x b/live/config-cdroot/fix_bootconfig.s390x index 4dc9e6dbc4..c7863b7b72 100755 --- a/live/config-cdroot/fix_bootconfig.s390x +++ b/live/config-cdroot/fix_bootconfig.s390x @@ -29,7 +29,7 @@ # │   └── s390x # │   ├── cd.ikr # │   ├── initrd -# │   ├── initrd.off +# │   ├── initrd.ofs # │   ├── initrd.siz # │   ├── linux # │   ├── parmfile @@ -40,6 +40,8 @@ # └── susehmc.ins # +set -e + dst="$1" if [ ! -d "$dst" ] ; then @@ -95,8 +97,8 @@ initrd_siz_ofs=0x00010414 initrd_ofs=0x01000000 parmfile_ofs=0x00010480 -# Create initrd.off (note: 32 bit, stored in big endian). -printf "%08x" $((initrd_ofs)) | xxd -r -p - $boot_dir/initrd.off +# Create initrd.ofs (note: 32 bit, stored in big endian). +printf "%08x" $((initrd_ofs)) | xxd -r -p - $boot_dir/initrd.ofs # Create initrd.siz (note: 32 bit, stored in big endian). read initrd_size x < <(du -b $boot_dir/initrd) @@ -106,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: use initrd.ofs for the initrd + offset filename (gh#agama-project/agama#1969) + +------------------------------------------------------------------- +Mon Feb 3 23:01:37 UTC 2025 - Eugenio Paolantonio + +- fix_bootimage: exit on failures (gh#agama-project/agama#1969) + ------------------------------------------------------------------- Mon Jan 20 10:37:43 UTC 2025 - Imobach Gonzalez Sosa