kOS/boot/rocket.ks
2021-07-19 04:54:15 -04:00

18 lines
499 B
Plaintext

// rocketOS bootstrapping sequence
// To maximize space, remove this file first thing. The in-memory copy
// will still run.
deletepath("/boot/rocket").
// Install software.
compile "0:/ui/rocket" to "1:/ui/rocket".
compile "0:/lib/navigation" to "1:/lib/navigation".
compile "0:/lib/throttle" to "1:/lib/throttle".
compile "0:/launch" to "1:/launch".
copypath("0:/execnode", "1:/execnode"). // smaller when compiled
// Set OS to boot and restart.
set core:bootfilename to "/ui/rocket".
reboot.