From 0460e64d9ba877b58297f723320d15fa3c6ef33a Mon Sep 17 00:00:00 2001 From: nakasima Date: Thu, 27 Mar 2008 09:16:07 +0000 Subject: [PATCH] =?UTF-8?q?REBOOT=5FExecute=E4=BB=95=E6=A7=98=E5=A4=89?= =?UTF-8?q?=E6=9B=B4=E3=81=AB=E5=AF=BE=E5=BF=9C=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@983 b08762b0-b915-fc4b-9d8c-17b2551a87ff --- build/libraries/os/common/os_boot.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build/libraries/os/common/os_boot.c b/build/libraries/os/common/os_boot.c index 58697617..6e169848 100644 --- a/build/libraries/os/common/os_boot.c +++ b/build/libraries/os/common/os_boot.c @@ -44,8 +44,9 @@ void OS_BootWithRomHeaderFromFIRM( ROM_Header* rom_header ) #endif void *const wram_reg = rom_header->s.main_wram_config_data; REBOOTTarget target = rom_header->s.titleID_Hi & TITLE_ID_HI_SECURE_FLAG_MASK ? REBOOT_TARGET_TWL_SECURE : (rom_header->s.titleID_Hi & TITLE_ID_HI_APP_TYPE_MASK ? REBOOT_TARGET_TWL_SYSTEM : REBOOT_TARGET_TWL_APP); - BOOL scfg = TRUE; // no touch - BOOL jtag = FALSE; // no touch + BOOL scfg = TRUE; // no touch + BOOL set_jtag = FALSE; // no touch + BOOL forbid_jtag = FALSE; // no touch static u32 mem_list[32]; int i = 0; @@ -116,7 +117,7 @@ void OS_BootWithRomHeaderFromFIRM( ROM_Header* rom_header ) OS_Terminate(); } #endif // FIRM_USE_SDK_KEYS - REBOOT_Execute(entry, wram_reg, mem_list, code_buf, stack_top, target, scfg, jtag); + REBOOT_Execute(entry, wram_reg, mem_list, code_buf, stack_top, target, scfg, set_jtag, forbid_jtag); OS_Terminate(); }