-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c901ff
commit aa137dd
Showing
17 changed files
with
394 additions
and
255 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
## EN | ||
* 1 Copy [startup.te](startup.te?raw=true) and Copy [poweroff.bin](poweroff.bin) to the SD Root | ||
* 2 Inject The payload [TegraExplorer.bin](https://github.com/StarDustCFW/Haku33/raw/master/romfs/TegraExplorer.bin) | ||
* * No button input needed, Caution | ||
### For clean emunand use [startup.te](EmuKiller/startup.te?raw=true) This one | ||
|
||
## ES | ||
* 1 Copia [startup.te](startup.te?raw=true) y Copia [poweroff.bin](poweroff.bin) a la raiz de la SD | ||
* 2 injecta [TegraExplorer.bin](https://github.com/StarDustCFW/Haku33/raw/master/romfs/TegraExplorer.bin) via RCM | ||
* * No pedira una combinación de botones, usar con cuidado | ||
### Para Limpiar emunand debera usar [startup.te](EmuKiller/startup.te?raw=true) este | ||
|
||
#### [Descargar-Downloads](https://github.com/StarDustCFW/Haku33/archive/master.zip) | ||
### [Releases](https://github.com/StarDustCFW/Haku33/releases/latest) |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[Haku33] | ||
payload=/Haku33.bin | ||
icon=/bootloader/res/Haku33.bmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright (c) 2018-2020 Atmosphère-NX | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms and conditions of the GNU General Public License, | ||
* version 2, as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
* more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
#include <switch.h> | ||
#include <string.h> | ||
#include "ams_bpc.h" | ||
#include "service_guard.h" | ||
|
||
static Service g_amsBpcSrv; | ||
|
||
NX_GENERATE_SERVICE_GUARD(amsBpc); | ||
|
||
Result _amsBpcInitialize(void) { | ||
Handle h; | ||
Result rc = svcConnectToNamedPort(&h, "bpc:ams"); /* TODO: ams:bpc */ | ||
if (R_SUCCEEDED(rc)) serviceCreate(&g_amsBpcSrv, h); | ||
return rc; | ||
} | ||
|
||
void _amsBpcCleanup(void) { | ||
serviceClose(&g_amsBpcSrv); | ||
} | ||
|
||
Service *amsBpcGetServiceSession(void) { | ||
return &g_amsBpcSrv; | ||
} | ||
|
||
Result amsBpcSetRebootPayload(const void *src, size_t src_size) { | ||
return serviceDispatch(&g_amsBpcSrv, 65001, | ||
.buffer_attrs = { SfBufferAttr_In | SfBufferAttr_HipcMapAlias }, | ||
.buffers = { { src, src_size } }, | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright (c) 2018-2020 Atmosphère-NX | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms and conditions of the GNU General Public License, | ||
* version 2, as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
* more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
#pragma once | ||
#include <switch.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
Result amsBpcInitialize(); | ||
void amsBpcExit(); | ||
Service *amsBpcGetServiceSession(void); | ||
|
||
Result amsBpcSetRebootPayload(const void *src, size_t src_size); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.