Compare commits
2 Commits
4d43ddf1e5
...
b2c245d6ab
| Author | SHA1 | Date | |
|---|---|---|---|
| b2c245d6ab | |||
| 50618d4607 |
17
.vscode/settings.json
vendored
17
.vscode/settings.json
vendored
@@ -1,17 +0,0 @@
|
|||||||
{
|
|
||||||
"claudeCode.disableLoginPrompt": false,
|
|
||||||
"claudeCode.environmentVariables": [
|
|
||||||
{
|
|
||||||
"name": "ANTHROPIC_BASE_URL",
|
|
||||||
"value": "https://api.z.ai/api/anthropic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "ANTHROPIC_AUTH_TOKEN",
|
|
||||||
"value": "caceb12fd1a740c68631842764f1b38a.kBX5z6hfW95z8QHj"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "CLAUDE_CODE_SKIP_AUTH_LOGIN",
|
|
||||||
"value": "true"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* HATS Installer - Filesystem operations with file logging
|
* OmniNX Installer - Filesystem operations with file logging
|
||||||
|
* Based on HATS Installer
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "fs.h"
|
#include "fs.h"
|
||||||
@@ -23,7 +24,7 @@ void log_init(const char *path) {
|
|||||||
int res = f_open(&log_file, path, FA_WRITE | FA_CREATE_ALWAYS);
|
int res = f_open(&log_file, path, FA_WRITE | FA_CREATE_ALWAYS);
|
||||||
if (res == FR_OK) {
|
if (res == FR_OK) {
|
||||||
log_enabled = true;
|
log_enabled = true;
|
||||||
log_write("=== HATS Installer Log ===\n\n");
|
log_write("=== OmniNX Installer Log ===\n\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* HATS Installer - Filesystem operations
|
* OmniNX Installer - Filesystem operations
|
||||||
|
* Based on HATS Installer
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* HATS Installer - Simplified disk I/O (SD card only)
|
* OmniNX Installer - Simplified disk I/O (SD card only)
|
||||||
* Based on TegraExplorer diskio.c by shchmue
|
* Based on HATS Installer, TegraExplorer diskio.c by shchmue
|
||||||
*
|
*
|
||||||
* This simplified version removes BIS/eMMC support since the
|
* This simplified version removes BIS/eMMC support since the
|
||||||
* HATS installer only needs SD card access.
|
* OmniNX installer only needs SD card access.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------*/
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
* OmniNX Installer Payload
|
* OmniNX Installer Payload
|
||||||
* Minimal payload to install OmniNX CFW Pack files outside of Horizon OS
|
* Minimal payload to install OmniNX CFW Pack files outside of Horizon OS
|
||||||
*
|
*
|
||||||
|
* Based on HATS Installer by sthetix
|
||||||
* Based on TegraExplorer/hekate by CTCaer, naehrwert, shchmue
|
* Based on TegraExplorer/hekate by CTCaer, naehrwert, shchmue
|
||||||
* Based on HATS-Installer-Payload by sthetix
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef VERSION
|
#ifndef VERSION
|
||||||
|
|||||||
Reference in New Issue
Block a user