moved everything to chookspace

This commit is contained in:
2026-01-28 09:13:12 +11:00
parent 73754d02b2
commit c547d34d36
537 changed files with 39235 additions and 0 deletions

68
kernel/startup.nsh Normal file
View File

@@ -0,0 +1,68 @@
@echo -off
mode 80 25
cls
if exist .\efi\boot\main.efi then
.\efi\boot\main.efi
goto END
endif
if exist fs0:\efi\boot\main.efi then
fs0:
echo Found bootloader on fs0:
efi\boot\main.efi
goto END
endif
if exist fs1:\efi\boot\main.efi then
fs1:
echo Found bootloader on fs1:
efi\boot\main.efi
goto END
endif
if exist fs2:\efi\boot\main.efi then
fs2:
echo Found bootloader on fs2:
efi\boot\main.efi
goto END
endif
if exist fs3:\efi\boot\main.efi then
fs3:
echo Found bootloader on fs3:
efi\boot\main.efi
goto END
endif
if exist fs4:\efi\boot\main.efi then
fs4:
echo Found bootloader on fs4:
efi\boot\main.efi
goto END
endif
if exist fs5:\efi\boot\main.efi then
fs5:
echo Found bootloader on fs5:
efi\boot\main.efi
goto END
endif
if exist fs6:\efi\boot\main.efi then
fs6:
echo Found bootloader on fs6:
efi\boot\main.efi
goto END
endif
if exist fs7:\efi\boot\main.efi then
fs7:
echo Found bootloader on fs7:
efi\boot\main.efi
goto END
endif
echo "Unable to find bootloader".
:END