This commit is contained in:
tumGER 2019-04-03 18:22:56 +02:00 committed by Nichole Mattera
parent fe7ddb309b
commit a1fc487868
55 changed files with 83 additions and 23 deletions

View file

@ -13,5 +13,6 @@ Licenses
* Hekate is licensed under [GPLv2](https://github.com/CTCaer/hekate/blob/master/LICENSE)
* Noexes is licensed under [GPLv3](https://github.com/mdbell/Noexes/blob/master/LICENSE)
* Lockpick is licensed under [GPLv2](https://github.com/shchmue/Lockpick/blob/master/LICENSE)
* sys-clk is licensed under [Beerware](https://github.com/retronx-team/sys-clk/blob/master/LICENSE)
All patches made to the original software respect their original license.

View file

@ -0,0 +1,21 @@
; Gamepad-rebind config. Currently always rebinds for all players, no individual config.
; VALUE is the button that gets registered when KEY is held down
[player1]
KEY_A=KEY_A
KEY_B=KEY_B
KEY_X=KEY_X
KEY_Y=KEY_Y
KEY_LSTICK=KEY_LSTICK
KEY_RSTICK=KEY_RSTICK
KEY_L=KEY_L
KEY_R=KEY_R
KEY_ZL=KEY_ZL
KEY_ZR=KEY_ZR
KEY_PLUS=KEY_PLUS
KEY_MINUS=KEY_MINUS
KEY_DLEFT=KEY_DLEFT
KEY_DUP=KEY_DUP
KEY_DRIGHT=KEY_DRIGHT
KEY_DDOWN=KEY_DDOWN
[network]
enabled=1

View file

@ -0,0 +1,24 @@
{
"sysmodules" : [
{
"name" : "sys-ftpd",
"tid" : "420000000000000E",
"requires_reboot": false
},
{
"name" : "sys-netcheat",
"tid" : "430000000000000A",
"requires_reboot": false
},
{
"name" : "hid-mitm",
"tid" : "0100000000000FAF",
"requires_reboot": true
},
{
"name" : "sys-clk",
"tid" : "00FF0000636C6BFF",
"requires_reboot": false
}
]
}

View file

@ -9,7 +9,7 @@ import time
modules = ["appstore", "bootlogo", "edizon", "goldleaf",
"hbmenu", "hekate_payload", "must_have", "kosmosupdater",
"sys-ftpd", "sys-netcheat", "kosmos_toolkit",
"lockpick", "sd_setup"] # Everything that will be merged together
"lockpick", "hid-mitm", "sys-clk"] # Everything that will be merged together
p2 = "compiled" # How the merged folder should be called
print("""

View file

@ -1,7 +1,8 @@
[hbl_config]
title_id=010000000000100D
override_any_app=true
path=atmosphere/hbl.nsp
override_key=!R
override_key=R
[default_config]
override_key=!L

View file

@ -11,4 +11,8 @@ usb30_force_enabled = u8!0x0
power_menu_reboot_function = str!payload
; Controls whether dmnt cheats should be toggled on or off by
; default. 1 = toggled on by default, 0 = toggled off by default.
dmnt_cheats_enabled_by_default = u8!0x0
dmnt_cheats_enabled_by_default = u8!0x1
; Controls whether dmnt should always save cheat toggle state
; for restoration on new game launch. 1 = always save toggles,
; 0 = only save toggles if toggle file exists.
dmnt_always_save_cheat_toggles = u8!0x0

View file

@ -1,5 +1,5 @@
[config]
autoboot=0
autoboot=1
autoboot_list=0
bootwait=5
customlogo=1
@ -8,7 +8,7 @@ backlight=100
autohosoff=0
autonogc=1
{AtlasNX/Kosmos v11.11-Hekate Beta}
{AtlasNX/Kosmos v12}
{ }
{Discord: discord.teamatlasnx.com}
{Github: git.teamatlasnx.com}

View file

@ -0,0 +1,14 @@
; Example #1: BOTW
; Overclock CPU when docked
; Overclock MEM to docked clocks when handheld
[01007EF00011E000]
docked_cpu=1224
handheld_charging_cpu=1224
handheld_mem=1600
; Example #2: Picross
; Underclock to save battery
[0100BA0003EEA000]
handheld_cpu=816
handheld_gpu=153.6
handheld_mem=800

View file

View file

@ -1,10 +0,0 @@
{----- FTP-Server -----}
{Port: 5000}
{Dont run SDFilesUpdater with this!}
[FTP + CFW]
fss0=atmosphere/fusee-secondary.bin
kip1=modules/sysftpd/sys-ftpd.kip
kip1patch=nosigchk
logopath=bootloader/bootlogo.bmp
atmosphere=1
{ }

View file

@ -0,0 +1,11 @@
[User]
user:=ftpd
[Password]
password:=12345
[Port]
port:=5000
[Anonymous]
anonymous:=1

View file

@ -1,8 +0,0 @@
{---- sys-netcheat ----}
[CFW + sys-netcheat]
fss0=atmosphere/fusee-secondary.bin
kip1=modules/sysnetcheat/sys-netcheat.kip
kip1patch=nosigchk
logopath=bootloader/bootlogo.bmp
atmosphere=1
{ }

View file

@ -47,3 +47,4 @@ This handy All-in-One package includes everything you need to run Hekate / Atmos
* [Goldleaf](https://github.com/XorTroll/Goldleaf)
* [Kosmos Updater](https://github.com/StevenMattera/SDFilesUpdater)
* [Kosmos Toolbox](https://github.com/AtlasNX/CFW-Settings)
* [Sys-CLK](https://github.com/retronx-team/sys-clk)