├── .github └── workflows │ └── Homebrew.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── compile.cmd ├── icon.jpg ├── romfs ├── TegraExplorer.bin ├── boot.dat ├── imkvdb.arc └── startup.te ├── source ├── lang.hpp ├── led.cpp ├── led.hpp ├── main.cpp ├── reboot.c ├── reboot.h ├── service_guard.h ├── spl.cpp └── spl.hpp └── stuff ├── Haku33.te ├── Howto.gif ├── icon-bum.jpg ├── iconD.jpg ├── iconUP.jpeg └── mariko.jpg /.github/workflows/Homebrew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/.github/workflows/Homebrew.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/README.md -------------------------------------------------------------------------------- /compile.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/compile.cmd -------------------------------------------------------------------------------- /icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/icon.jpg -------------------------------------------------------------------------------- /romfs/TegraExplorer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/romfs/TegraExplorer.bin -------------------------------------------------------------------------------- /romfs/boot.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/romfs/boot.dat -------------------------------------------------------------------------------- /romfs/imkvdb.arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/romfs/imkvdb.arc -------------------------------------------------------------------------------- /romfs/startup.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/romfs/startup.te -------------------------------------------------------------------------------- /source/lang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/source/lang.hpp -------------------------------------------------------------------------------- /source/led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/source/led.cpp -------------------------------------------------------------------------------- /source/led.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/source/led.hpp -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/source/reboot.c -------------------------------------------------------------------------------- /source/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/source/reboot.h -------------------------------------------------------------------------------- /source/service_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/source/service_guard.h -------------------------------------------------------------------------------- /source/spl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/source/spl.cpp -------------------------------------------------------------------------------- /source/spl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/source/spl.hpp -------------------------------------------------------------------------------- /stuff/Haku33.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/stuff/Haku33.te -------------------------------------------------------------------------------- /stuff/Howto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/stuff/Howto.gif -------------------------------------------------------------------------------- /stuff/icon-bum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/stuff/icon-bum.jpg -------------------------------------------------------------------------------- /stuff/iconD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/stuff/iconD.jpg -------------------------------------------------------------------------------- /stuff/iconUP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/stuff/iconUP.jpeg -------------------------------------------------------------------------------- /stuff/mariko.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StarDustCFW/Haku33/HEAD/stuff/mariko.jpg --------------------------------------------------------------------------------