From cb83d163b2e924f5d2f4f28ee3e9ffb468e15c32 Mon Sep 17 00:00:00 2001 From: synackuk Date: Sat, 13 Jun 2020 15:26:06 +0100 Subject: [PATCH] Fixed bootargs --- patchers/iboot/ibootpatcher.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patchers/iboot/ibootpatcher.c b/patchers/iboot/ibootpatcher.c index 6625616..f4e0641 100644 --- a/patchers/iboot/ibootpatcher.c +++ b/patchers/iboot/ibootpatcher.c @@ -66,14 +66,14 @@ int patch_iboot(char* address) { return -1; } if(has_ticket_check(&iboot_in)) { - ret = patch_boot_args(&iboot_in, "-v rd=md0 amfi=0xff cs_enforcement_disable=1 serial=3"); + ret = patch_boot_args(&iboot_in, "-v rd=md0 amfi=0xff cs_enforcement_disable=1"); if(ret != 0) { return -1; } patch_ticket_check(&iboot_in); // No return check as loader may not have a ticket check (if old enough.) } else { - ret = patch_boot_args(&iboot_in, "-v amfi=0xff cs_enforcement_disable=1 serial=3"); + ret = patch_boot_args(&iboot_in, "-v amfi=0xff cs_enforcement_disable=1"); if(ret != 0) { return -1; }