diff --git a/boot/rocket.ks b/boot/rocket.ks index 8cbf0ef..c4f9b6d 100644 --- a/boot/rocket.ks +++ b/boot/rocket.ks @@ -5,7 +5,11 @@ deletepath("/boot/rocket"). // Install software. -runpath("0:/bootstrap/rocket"). +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". diff --git a/bootstrap/rocket.ks b/bootstrap/rocket.ks deleted file mode 100644 index b739337..0000000 --- a/bootstrap/rocket.ks +++ /dev/null @@ -1,5 +0,0 @@ -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