Modify boot files to use new bootstrapping library.
This commit is contained in:
parent
b9206f8480
commit
828b5f9a5e
|
@ -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
|
||||||
).
|
).
|
||||||
|
|
|
@ -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
|
|
||||||
).
|
).
|
||||||
|
|
|
@ -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
|
||||||
).
|
).
|
||||||
|
|
|
@ -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
|
||||||
).
|
).
|
||||||
|
|
Loading…
Reference in New Issue
Block a user