Compare commits

...

4 Commits

Author SHA1 Message Date
bff8bc1910 Clean install: remove sd:/TegraExplorer entirely
Some checks failed
Build / Build (push) Failing after 14s
Delete the TegraExplorer directory in misc dirs instead of individual
script files under scripts/.

Made-with: Cursor
2026-04-11 19:44:47 +02:00
c9bcb29f50 Exclude source/TegraExplorer from Makefile object list
The vendored tree under source/TegraExplorer is optional reference-only;
building it fails without extra usb/ headers. The payload uses bdk/ at repo
root instead.

Made-with: Cursor
2026-04-11 00:14:41 +02:00
dc97677e72 Delete sd:/themes/systemData on update and clean installs
Removes cached qlaunch/FW theme extracts so theme-patches apply after
firmware updates; clearing atmosphere/contents alone is insufficient.

Made-with: Cursor
2026-04-11 00:12:45 +02:00
4535c4508f Added TegraExplorer 2026-04-10 22:32:01 +02:00
4 changed files with 9 additions and 4 deletions

3
.gitignore vendored
View File

@@ -20,3 +20,6 @@ Thumbs.db
# Version file is tracked, ignore local edits
# VERSION
# Vendored TegraExplorer tree
source/TegraExplorer/

View File

@@ -31,6 +31,9 @@ OBJS += $(patsubst $(BDKDIR)/%.S, $(BUILDDIR)/$(TARGET)/%.o, \
$(patsubst $(BDKDIR)/%.c, $(BUILDDIR)/$(TARGET)/%.o, \
$(call rwildcard, $(BDKDIR), *.S *.c)))
# Optional vendored tree under source/TegraExplorer/ is not part of this payload build.
OBJS := $(filter-out $(BUILDDIR)/$(TARGET)/TegraExplorer/%,$(OBJS))
GFX_INC := '"../$(SOURCEDIR)/gfx.h"'
FFCFG_INC := '"../$(SOURCEDIR)/libs/fatfs/ffconf.h"'

View File

@@ -264,7 +264,9 @@ static const char* clean_misc_dirs_to_delete[] = {
"sd:/Patched Apps",
"sd:/SaltySD/flags",
"sd:/scripts",
"sd:/TegraExplorer",
"sd:/switch/tinfoil/db",
"sd:/themes/systemData",
"sd:/tools",
"sd:/warmboot_mariko",
NULL
@@ -272,10 +274,6 @@ static const char* clean_misc_dirs_to_delete[] = {
// Miscellaneous files to delete
static const char* clean_misc_files_to_delete[] = {
"sd:/TegraExplorer/scripts/Reparatur Skript fuer error 010000000000BD00.te",
"sd:/TegraExplorer/scripts/Reparatur Skript fuer error 0100000000001000.te",
"sd:/TegraExplorer/scripts/Reparatur Skript fuer error 690000000000000D.te",
"sd:/TegraExplorer/scripts/Reparatur Skript fuer error 4200000000000010.te",
"sd:/fusee-primary.bin",
"sd:/fusee.bin",
"sd:/SaltySD/exceptions.txt",

View File

@@ -263,6 +263,7 @@ static const char* misc_dirs_to_delete[] = {
"sd:/SaltySD/flags",
"sd:/scripts",
"sd:/switch/tinfoil/db",
"sd:/themes/systemData",
"sd:/tools",
"sd:/warmboot_mariko",
NULL