aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board-js2x/slof/OF.fs6
-rw-r--r--board-qemu/slof/OF.fs6
-rw-r--r--slof/fs/boot.fs3
3 files changed, 12 insertions, 3 deletions
diff --git a/board-js2x/slof/OF.fs b/board-js2x/slof/OF.fs
index f342d2f..f8cde85 100644
--- a/board-js2x/slof/OF.fs
+++ b/board-js2x/slof/OF.fs
@@ -541,6 +541,12 @@ cr
\ this CATCH is to ensure the code bellow always executes: boot may ABORT!
' start-it CATCH drop
+: boot
+ boot
+ \ When we return from boot print the banner again.
+ .banner
+;
+
#include <history.fs>
nvram-history? [IF]
." loading shell history .. "
diff --git a/board-qemu/slof/OF.fs b/board-qemu/slof/OF.fs
index 2a6e33f..0169c35 100644
--- a/board-qemu/slof/OF.fs
+++ b/board-qemu/slof/OF.fs
@@ -312,4 +312,10 @@ cr cr
\ this CATCH is to ensure the code bellow always executes: boot may ABORT!
' start-it CATCH drop
+: boot
+ boot
+ \ When we return from boot print the banner again.
+ .banner
+;
+
cr ." Ready!"
diff --git a/slof/fs/boot.fs b/slof/fs/boot.fs
index e99a164..1fd7439 100644
--- a/slof/fs/boot.fs
+++ b/slof/fs/boot.fs
@@ -268,9 +268,6 @@ read-bootlist
BEGIN load-next WHILE
disable-watchdog (go-and-catch)
REPEAT
-
- \ When we return from boot print the banner again.
- .banner
;
: load load 0= IF -65 boot-exception-handler THEN ;