From 6ced7a2e2505e49d588e3d35c57cc73207c988b5 Mon Sep 17 00:00:00 2001 From: annabunches Date: Mon, 19 Jul 2021 04:54:15 -0400 Subject: [PATCH] Fix boot sequence. --- boot/rocket.ks | 6 +++++- bootstrap/rocket.ks | 5 ----- 2 files changed, 5 insertions(+), 6 deletions(-) delete mode 100644 bootstrap/rocket.ks 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