Modify boot files to use new bootstrapping library.

This commit is contained in:
Anna Rose 2021-08-19 02:29:54 +00:00
parent b9206f8480
commit 828b5f9a5e
4 changed files with 25 additions and 64 deletions

View File

@ -1,16 +1,10 @@
runoncepath("0:/lib/boot"). RunOncePath("0:/lib/boot").
parameter debug is false. parameter debug is false.
local compiled is List(
"/lib/stabilize_helicopter",
"/lib/ui"
).
Bootstrap( Bootstrap(
"/boot/helicopter", "/boot/helicopter",
"/prog/helicopter", "/prog/helicopter",
compiled, List(), // no additional program files
List(), // no copied files
debug debug
). ).

View File

@ -1,24 +1,10 @@
runoncepath("0:/lib/boot"). RunOncePath("0:/lib/boot").
parameter debug is false. parameter debug is false.
local compiled is list(
"/lib/launch_rocket",
"/lib/navigation",
"/lib/stabilize_rocket",
"/lib/ui",
"/lib/reentry",
"/lib/throttle"
).
local copied is list(
"/lib/sensors"
).
Bootstrap( Bootstrap(
"/boot/rocket", "/boot/rocket",
"/prog/rocket", "/prog/rocket",
compiled, List(),
copied, debug
debug
). ).

View File

@ -1,24 +1,13 @@
runoncepath("0:/lib/boot"). RunOncePath("0:/lib/boot").
parameter debug is false.
local compiled is list(
"/lib/navigation",
"/lib/throttle",
"/lib/ui",
"/prog/nodestats"
).
local copied is list(
"/prog/execnode",
"/prog/circ",
"/prog/satdeploy"
).
Bootstrap( Bootstrap(
"/boot/satellite", "/boot/satellite",
"", "",
compiled, List(
copied, "/prog/execnode",
debug "/prog/circ",
"/prog/satdeploy",
"/prog/nodestats"
),
debug
). ).

View File

@ -1,21 +1,13 @@
runoncepath("0:/lib/boot"). RunOncePath("0:/lib/boot").
parameter debug is false. parameter debug is false.
local compiled is List(
"/lib/navigation",
"/lib/reentry"
).
local copied is List(
"/prog/execnode",
"/prog/reentry"
).
Bootstrap( Bootstrap(
"/boot/science", "/boot/science",
"", "",
compiled, List(
copied, "/prog/execnode",
debug "/prog/reentry"
),
debug
). ).