aboutsummaryrefslogtreecommitdiff
path: root/sysutils/showbeastie/files/patch-testmain.c
blob: 197dc5b5a73c3e0df2164488e63162af567cc1bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
--- testmain.c.orig	2016-11-17 00:02:13 UTC
+++ testmain.c
@@ -296,6 +296,7 @@ void buildTestInterface(FICL_SYSTEM *pSy
     ficlBuild(pSys, "cd",       ficlChDir,    FW_DEFAULT);
     ficlBuild(pSys, "execxt",   execxt,       FW_DEFAULT);
     ficlBuild(pSys, "load",     ficlLoad,     FW_DEFAULT);
+    ficlBuild(pSys, "include",  ficlLoad,     FW_DEFAULT);
     ficlBuild(pSys, "pwd",      ficlGetCWD,   FW_DEFAULT);
     ficlBuild(pSys, "system",   ficlSystem,   FW_DEFAULT);
     ficlBuild(pSys, "spewhash", spewHash,     FW_DEFAULT);
@@ -316,17 +317,59 @@ int main(int argc, char **argv)
     buildTestInterface(pSys);
     pVM = ficlNewVM(pSys);
 
-    ficlEvaluate(pVM, ".ver .( " __DATE__ " ) cr quit");
+    ficlEvaluate(pVM, ": loader_color? ( -- ) TRUE ;");
+    ficlEvaluate(pVM, "vocabulary support-functions");
+    ficlEvaluate(pVM, ": contains? ( -- ) FALSE ;");
+    ficlEvaluate(pVM, ": any_conf_read? ( -- ) FALSE ;");
+    ficlEvaluate(pVM, ": boot_serial? ( -- ) TRUE ;");
+    ficlEvaluate(pVM, ": load_kernel ( -- ) ;");
+    ficlEvaluate(pVM, ": load_modules ( -- ) ;");
+    ficlEvaluate(pVM, ": delay_execute ( -- ) ;");
+    ficlEvaluate(pVM, ": boot ( -- ) ;");
+    ficlEvaluate(pVM, ": reboot ( -- ) ;");
+    ficlEvaluate(pVM, ": load_xen_throw ( -- ) ;");
+    ficlEvaluate(pVM, "variable logoX");
+    ficlEvaluate(pVM, "variable logoY");
+    ficlEvaluate(pVM, "variable brandX");
+    ficlEvaluate(pVM, "variable brandY");
+
+    sprintf(in, "load %s", "/boot/screen.4th");
+    ficlEvaluate(pVM, in);
+    sprintf(in, "load %s", "/boot/beastie.4th");
+    ficlEvaluate(pVM, in);
+    sprintf(in, "load %s", "/boot/brand.4th");
+    ficlEvaluate(pVM, in);
+    sprintf(in, "load %s", "/boot/frames.4th");
+    ficlEvaluate(pVM, in);
+    sprintf(in, "load %s", "/boot/menu.4th");
+    ficlEvaluate(pVM, in);
 
     /*
     ** load file from cmd line...
     */
     if (argc  > 1)
     {
-        sprintf(in, ".( loading %s ) cr load %s\n cr", argv[1], argv[1]);
+        char *brand = "/boot/brand-fbsd.4th";
+        sprintf(in, "load %s", argv[1]);
+        ficlEvaluate(pVM, in);        
+        if (argc > 2) {
+            brand = argv[2];
+        }
+        sprintf(in, "load %s", brand);
         ficlEvaluate(pVM, in);
+    } else {
+        fprintf(stderr, "usage: %s <logo.4th> [<brand.4th>]\n", argv[0]);
+        return 1;
     }
 
+    system("clear");
+    ficlEvaluate(pVM, "draw-beastie");
+    ficlEvaluate(pVM, "draw-brand");
+    ficlEvaluate(pVM, "menu-init");
+    fflush(stdout);
+    sleep(3600); // sleep "forever"
+    return 0;
+
     for (;;)
     {
         int ret;