14 lines
288 B
Plaintext
14 lines
288 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.
|
|
runpath("0:/bootstrap/rocket").
|
|
|
|
// Set OS to boot and restart.
|
|
set core:bootfilename to "/ui/rocket".
|
|
|
|
reboot.
|