From 197ed8c319bd4132e4d7571ce037d4a27f806bba Mon Sep 17 00:00:00 2001 From: CTCaer Date: Sat, 28 Aug 2021 20:08:44 +0300 Subject: [PATCH] Bump hekate to v5.6.0 and Nyx to v1.0.6 --- README.md | 2 +- Versions.inc | 6 +++--- bootloader/main.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a0ec1ae..ade13b3 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ hekate has a boot storage in the binary that helps it configure it outside of BP | '0x94' boot_cfg | bit0: `Force AutoBoot`, bit1: `Show launch log`, bit2: `Boot from ID`, bit3: `Boot to emuMMC`. | | '0x95' autoboot | If `Force AutoBoot`: 0: Force go to menu, else boot that entry. | | '0x96' autoboot_list | If `Force AutoBoot` and `autoboot` then it boots from ini folder. | -| '0x97' extra_cfg | When menu is forced: bit5: `Run UMS`, bit7: `Run Dump pkg1/2`. | +| '0x97' extra_cfg | When menu is forced: bit5: `Run UMS`. | | '0x98' xt_str[128] | Depends on the set cfg bits. | | '0x98' ums[1] | When `Run UMS` is set, it will launch the selected UMS. 0: SD, 1: eMMC BOOT0, 2: eMMC BOOT1, 3: eMMC GPP, 4: emuMMC BOOT0, 5: emuMMC BOOT1, 6: emuMMC GPP, | | '0x98' id[8] | When `Boot from ID` is set, it will search all inis automatically and find the boot entry with that id and boot it. Must be NULL terminated. | diff --git a/Versions.inc b/Versions.inc index a6c28b9..640eb2d 100644 --- a/Versions.inc +++ b/Versions.inc @@ -1,11 +1,11 @@ # IPL Version. BLVERSION_MAJOR := 5 -BLVERSION_MINOR := 5 -BLVERSION_HOTFX := 8 +BLVERSION_MINOR := 6 +BLVERSION_HOTFX := 0 BLVERSION_RSVD := 0 # Nyx Version. NYXVERSION_MAJOR := 1 NYXVERSION_MINOR := 0 -NYXVERSION_HOTFX := 5 +NYXVERSION_HOTFX := 6 NYXVERSION_RSVD := 0 diff --git a/bootloader/main.c b/bootloader/main.c index 7d518de..fca463d 100644 --- a/bootloader/main.c +++ b/bootloader/main.c @@ -1474,7 +1474,7 @@ ment_t ment_top[] = { MDEF_END() }; -menu_t menu_top = { ment_top, "hekate v5.5.8", 0, 0 }; +menu_t menu_top = { ment_top, "hekate v5.6.0", 0, 0 }; extern void pivot_stack(u32 stack_top);