From 6411db58efbe9d24938c8b9c86198e91a78e39c9 Mon Sep 17 00:00:00 2001 From: jc Date: Tue, 24 Dec 2024 12:34:09 +0000 Subject: [PATCH] fix SystemRescue 11.02 boot (#2958) --- IMG/cpio/ventoy/init_chain | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) mode change 100644 => 100755 IMG/cpio/ventoy/init_chain diff --git a/IMG/cpio/ventoy/init_chain b/IMG/cpio/ventoy/init_chain old mode 100644 new mode 100755 index 5a541cf47b5..f9f71b7f212 --- a/IMG/cpio/ventoy/init_chain +++ b/IMG/cpio/ventoy/init_chain @@ -72,26 +72,24 @@ ventoy_unpack_initramfs() { for vtx in '1F8B zcat' '1F9E zcat' '425A bzcat' '5D00 lzcat' 'FD37 xzcat' '894C lzopcat' '0221 lz4cat' '28B5 zstdcat' '3037 cat' '4C5A lunzip -c'; do if [ "${vtx:0:4}" = "${vtmagic:0:4}" ]; then - echo "vtx=$vtx" >> $VTLOG - if [ $vtskip -eq 0 ]; then - if [ "${vtx:5}" = "xzcat" ]; then + echo "vtx=$vtx" >> $VTLOG + dd if=$vtfile skip=$vtskip of=$vttmp iflag=skip_bytes status=none + mv $vttmp $vtfile + if [ "${vtx:5}" = "xzcat" ]; then + rm -f $VTOY_PATH/xzlog + ${vtx:5} $vtfile 2> $VTOY_PATH/xzlog | (cpio -idmu 2>>$VTLOG; cat > $vttmp) + if grep -q 'corrupted data' $VTOY_PATH/xzlog; then + echo 'xzcat failed, now try xzminidec...' >> $VTLOG rm -f $VTOY_PATH/xzlog - ${vtx:5} $vtfile 2> $VTOY_PATH/xzlog | (cpio -idmu 2>>$VTLOG; cat > $vttmp) - if grep -q 'corrupted data' $VTOY_PATH/xzlog; then - echo 'xzcat failed, now try xzminidec...' >> $VTLOG - rm -f $VTOY_PATH/xzlog - cat $vtfile | xzminidec 2> $VTOY_PATH/xzlog | (cpio -idmu 2>>$VTLOG; cat > $vttmp) - - if grep -q 'limit' $VTOY_PATH/xzlog; then - echo 'xzminidec failed, now try xzcat_musl ...' >> $VTLOG - xzcat_musl $vtfile | (cpio -idmu 2>>$VTLOG; cat > $vttmp) - fi + cat $vtfile | xzminidec 2> $VTOY_PATH/xzlog | (cpio -idmu 2>>$VTLOG; cat > $vttmp) + + if grep -q 'limit' $VTOY_PATH/xzlog; then + echo 'xzminidec failed, now try xzcat_musl ...' >> $VTLOG + xzcat_musl $vtfile | (cpio -idmu 2>>$VTLOG; cat > $vttmp) fi - else - ${vtx:5} $vtfile | (cpio -idmu 2>>$VTLOG; cat > $vttmp) fi else - dd if=$vtfile skip=$vtskip iflag=skip_bytes status=none | ${vtx:5} | (cpio -idmu 2>>$VTLOG; cat > $vttmp) + ${vtx:5} $vtfile | (cpio -idmu 2>>$VTLOG; cat > $vttmp) fi break fi