From 99cf2756aad2c0cb41141ca7a220e2b80dbdf160 Mon Sep 17 00:00:00 2001 From: rodriguezst <2828844+rodriguezst@users.noreply.github.com> Date: Sun, 10 Nov 2024 18:56:57 +0100 Subject: [PATCH] Try with header_version 0 --- .github/workflows/patch-boot.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/patch-boot.yml b/.github/workflows/patch-boot.yml index 1c0938c..fc90dac 100644 --- a/.github/workflows/patch-boot.yml +++ b/.github/workflows/patch-boot.yml @@ -117,7 +117,8 @@ jobs: python3 ./unpack_bootimg.py --boot_img ./boot.img --format=mkbootimg | tee mkbootimg_args ./DualBootKernelPatcher out/kernel SM8150_EFI_${{ matrix.uefi-type }}.fd out/PatchedKernel Config/DualBoot.Sm8150.cfg ShellCode.Nabu.bin sed -i 's/out\/kernel/out\/PatchedKernel/g' mkbootimg_args - python3 ./mkbootimg.py -o boot_${{ matrix.name }}_${{ matrix.uefi-type }}.img $(cat mkbootimg_args) --pagesize 4096 --base 0x0 --second_offset 0xf00000 + sed -i 's/header_version 3/header_version 0/g' mkbootimg_args + python3 ./mkbootimg.py -o boot_${{ matrix.name }}_${{ matrix.uefi-type }}.img $(cat mkbootimg_args) --pagesize 4096 --base 0x0 - uses: actions/upload-artifact@v4 with: name: ${{ matrix.name }}_${{ matrix.uefi-type }}