From 6e01ddacd7029c468863344917220f02d4f80d8c Mon Sep 17 00:00:00 2001 From: zyb Date: Tue, 16 Jul 2024 15:21:20 +0800 Subject: [PATCH] modified: chr.sh --- chr.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/chr.sh b/chr.sh index 36f3e97..5a1001f 100644 --- a/chr.sh +++ b/chr.sh @@ -1,21 +1,20 @@ -sgdisk --clear --set-alignment=2 \ +sgdisk --zap-all --clear --set-alignment=2 \ --new=1::+32M --typecode=1:8300 --change-name=1:"RouterOS Boot" --attributes=1:set:2 \ --new=2::-0 --typecode=2:8300 --change-name=2:"RouterOS" \ --gpttombr=1:2 \ /dev/sda - dd if=/dev/sda of=pt.bin bs=1 count=66 skip=446 echo -e "\x80" | dd of=pt.bin bs=1 count=1 conv=notrunc sgdisk --mbrtogpt --clear --set-alignment=2 \ --new=1::+32M --typecode=1:8300 --change-name=1:"RouterOS Boot" --attributes=1:set:2 \ --new=2::-0 --typecode=2:8300 --change-name=2:"RouterOS" \ /dev/sda - wget -O mbr.bin https://raw.gitmirror.com/elseif/MikroTikPatch/main/mbr.bin - dd if=mbr.bin of=/dev/sda bs=1 count=446 conv=notrunc dd if=pt.bin of=/dev/sda bs=1 count=66 seek=446 conv=notrunc + +partprobe mkfs.vfat -n "Boot" /dev/sda1 mkfs.ext4 -F -L "RouterOS" -m 0 /dev/sda2 mkdir -p /tmp/{boot,routeros}