mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-08 11:31:44 +00:00
Bump hekate to v6.0.2 and Nyx to v1.5.2
This commit is contained in:
parent
d286ee4e9d
commit
5bdf323e5c
4 changed files with 9 additions and 7 deletions
|
@ -180,7 +180,7 @@ hekate has a boot storage in the binary that helps it configure it outside of BP
|
||||||
| umsemmcrw=0 | 1: eMMC/emuMMC UMS will be mounted as writable by default. |
|
| umsemmcrw=0 | 1: eMMC/emuMMC UMS will be mounted as writable by default. |
|
||||||
| jcdisable=0 | 1: Disables Joycon driver completely. |
|
| jcdisable=0 | 1: Disables Joycon driver completely. |
|
||||||
| jcforceright=0 | 1: Forces right joycon to be used as main mouse control. |
|
| jcforceright=0 | 1: Forces right joycon to be used as main mouse control. |
|
||||||
| bpmpclock=1 | 0: Auto, 1: Faster, 2: Fast. Use 2 if Nyx hangs or some functions like UMS/Backup Verification fail. |
|
| bpmpclock=1 | 0: Auto, 1: Fastest, 2: Faster, 3: Fast. Use 2 or 3 if Nyx hangs or some functions like UMS/Backup Verification fail. |
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
# IPL Version.
|
# IPL Version.
|
||||||
BLVERSION_MAJOR := 6
|
BLVERSION_MAJOR := 6
|
||||||
BLVERSION_MINOR := 0
|
BLVERSION_MINOR := 0
|
||||||
BLVERSION_HOTFX := 1
|
BLVERSION_HOTFX := 2
|
||||||
BLVERSION_RSVD := 0
|
BLVERSION_RSVD := 0
|
||||||
|
|
||||||
# Nyx Version.
|
# Nyx Version.
|
||||||
NYXVERSION_MAJOR := 1
|
NYXVERSION_MAJOR := 1
|
||||||
NYXVERSION_MINOR := 5
|
NYXVERSION_MINOR := 5
|
||||||
NYXVERSION_HOTFX := 1
|
NYXVERSION_HOTFX := 2
|
||||||
NYXVERSION_RSVD := 0
|
NYXVERSION_RSVD := 0
|
||||||
|
|
|
@ -85,9 +85,9 @@ void emmcsn_path_impl(char *path, char *sub_dir, char *filename, sdmmc_storage_t
|
||||||
|
|
||||||
void check_power_off_from_hos()
|
void check_power_off_from_hos()
|
||||||
{
|
{
|
||||||
// Power off on AutoRCM wakeup from HOS shutdown. For modchips/dongles.
|
// Power off on alarm wakeup from HOS shutdown. For modchips/dongles.
|
||||||
u8 hosWakeup = i2c_recv_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_IRQTOP);
|
u8 hos_wakeup = i2c_recv_byte(I2C_5, MAX77620_I2C_ADDR, MAX77620_REG_IRQTOP);
|
||||||
if (hosWakeup & MAX77620_IRQ_TOP_RTC_MASK)
|
if (hos_wakeup & MAX77620_IRQ_TOP_RTC_MASK)
|
||||||
{
|
{
|
||||||
if (h_cfg.autohosoff == 1)
|
if (h_cfg.autohosoff == 1)
|
||||||
{
|
{
|
||||||
|
@ -1467,7 +1467,7 @@ ment_t ment_top[] = {
|
||||||
MDEF_END()
|
MDEF_END()
|
||||||
};
|
};
|
||||||
|
|
||||||
menu_t menu_top = { ment_top, "hekate v6.0.1", 0, 0 };
|
menu_t menu_top = { ment_top, "hekate v6.0.2", 0, 0 };
|
||||||
|
|
||||||
extern void pivot_stack(u32 stack_top);
|
extern void pivot_stack(u32 stack_top);
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,8 @@ Additionally, using the `icon={sd path}`, the icon will get colorized if the nam
|
||||||
|
|
||||||
If `_nobox.bmp` is used then the button background is removed. Useful for icon themes that aim for a specific style.
|
If `_nobox.bmp` is used then the button background is removed. Useful for icon themes that aim for a specific style.
|
||||||
|
|
||||||
|
A combo of both can be enabled via `_hue_nobox.bmp` suffix.
|
||||||
|
|
||||||
The default system icons (`icon_switch.bmp` and `icon_payload.bmp`) can be replaced with white layouts that have transparency. They can also be replaced with normal icons if the following exist: `icon_switch_custom.bmp` or/and `icon_payload_custom.bmp`
|
The default system icons (`icon_switch.bmp` and `icon_payload.bmp`) can be replaced with white layouts that have transparency. They can also be replaced with normal icons if the following exist: `icon_switch_custom.bmp` or/and `icon_payload_custom.bmp`
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue