This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartup
290 lines (269 loc) · 7.55 KB
/
startup
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
os.pullEvent = os.pullEventRaw
function splashscreen()
term.setBackgroundColor(colors.blue)
print(" ")
print(" ")
print(" ")
print(" ")
print(" ")
print(" # # # # ##### # # # # ")
print(" # # # # # # # # # ")
print(" # # # # # # # # # ")
print(" ###### # # #### ## ##### ")
print(" # # # # # # # # ")
print(" # # #### ##### # # # ")
print(" ")
print(" ")
print(" ")
print(" ")
print(" ")
print(" *Boot options disabled* ")
print(" ")
sleep(4)
shell.run("clear")
booting()
end
function nothing()
while os.pullEvent("key") == nil do
if os.pullEvent("key") == 66 then
term.setBackgroundColor(colors.blue)
print(" ")
print(" ")
print(" ")
print(" ")
print(" ")
print(" # # # # ##### # # # # ")
print(" # # # # # # # # # ")
print(" # # # # # # # # # ")
print(" ###### # # #### ## ##### ")
print(" # # # # # # # # ")
print(" # # #### ##### # # # ")
print(" ")
print(" ")
print(" ")
print(" ")
print(" Entering Boot Menu... ")
print(" ")
print(" ")
sleep(3)
shell.run("Bootmenu")
elseif os.pullEvent("key") == 60 then
shell.run("BiOs")
end
end
end
function booting()
term.setBackgroundColor(colors.black)
term.clear()
print(" ")
print(" ")
print(" ")
print(" ")
print(" ")
print(" # # # # ##### # # # # ")
print(" # # # # # # # # # ")
print(" # # # # # # # # # ")
print(" ###### # # #### ## ##### ")
print(" # # # # # # # # ")
print(" # # #### ##### # # # ")
print(" ")
print(" ")
print(" ")
print(" ")
print(" ")
print(" ")
print(" booting... ")
sleep(1)
shell.run("clear")
term.clear()
shell.run("/.sys/etc/bootmgr.run")
end
function waitForKey()
local sEvent, param = os.pullEvent("key")
if sEvent == "key" then
if param == 88 then
os.run( {} ,"/.sys/etc/bootsettings.ing")
else
print("ERROR!")
sleep(200)
end
end
end
term.setTextColor(colors.white)
term.clear()
term.setCursorPos(1,1)
sleep(1)
print("_")
sleep(0.1)
term.clear()
term.setCursorPos(1,1)
print(" ")
sleep(0.1)
term.clear()
term.setCursorPos(1,1)
print("_")
sleep(0.1)
term.clear()
term.setCursorPos(1,1)
print(" ")
sleep(0.1)
term.clear()
sleep(1)
print("HUSKYBIOS(C) 2014 Husky Tec. -Server Edition-")
term.setCursorPos(1, 19)
print("(C) HUSKY TEC.")
term.setCursorPos(1, 20)
term.setCursorPos(1,2)
sleep(1)
print("_")
sleep(0.1)
term.setCursorPos(1,2)
print(" ")
sleep(0.1)
term.setCursorPos(1,2)
print("_")
sleep(0.1)
term.setCursorPos(1,2)
print(" ")
sleep(0.1)
print("")
term.setCursorPos(1,2)
print("_")
sleep(0.1)
term.setCursorPos(1,2)
print(" ")
sleep(0.1)
term.setCursorPos(1,2)
print("_")
sleep(0.1)
term.setCursorPos(1,2)
print(" ")
print("_")
sleep(0.1)
term.setCursorPos(1,2)
print(" ")
sleep(0.1)
print("")
term.setCursorPos(1,2)
print("_")
sleep(0.1)
term.setCursorPos(1,2)
print(" ")
sleep(0.1)
term.setCursorPos(1,2)
print("_")
sleep(0.1)
term.setCursorPos(1,2)
print(" ")
sleep(0.1)
sleep(0.4)
print("BIOS Date: 01/24/14 13:34:14 Ver:01.00.20")
print("ComputerCraft X664 PC CPU Power = 0.8Watts")
print("Poduct Serial Number: -UNKNOWN-")
print("")
print("CPU : CCP (R) ATOMIC(R) CPU X5563 @ 0.13GHz")
print(" Speed : 0.13 GHz Count : 16")
print("")
print("")
sleep(1)
term.setCursorPos(1,11)
print("Initializing Controllers.")
sleep(1)
term.setCursorPos(1,11)
print("Initializing Controllers..")
sleep(1)
term.setCursorPos(1,11)
print("Initializing Controllers...")
sleep(1)
term.setCursorPos(1,11)
print("Controller 'CCDisk265KB' found!")
sleep(3)
print("")
print("Booting from hard drive...")
print("_")
sleep(0.1)
term.setCursorPos(1,14)
print(" ")
sleep(0.1)
term.setCursorPos(1,14)
print("_")
sleep(0.1)
term.setCursorPos(1,14)
print(" ")
sleep(0.1)
term.setCursorPos(1,14)
print("_")
sleep(0.1)
term.setCursorPos(1,14)
print(" ")
sleep(0.1)
term.setCursorPos(1,14)
print("_")
sleep(0.1)
term.setCursorPos(1,14)
print(" ")
sleep(0.1)
term.setCursorPos(1,14)
print("_")
sleep(0.1)
term.setCursorPos(1,14)
print(" ")
sleep(0.1)
term.setCursorPos(1,14)
print("_")
sleep(0.1)
term.setCursorPos(1,14)
print(" ")
sleep(0.1)
term.setCursorPos(1,14)
print("_")
sleep(2)
if fs.exists("/.sys/etc/bootmgr.run") == false then
term.clear()
term.setCursorPos(1,1)
print("BOOTMRG MISSING!")
print("Hold STRG+R to reboot")
while true do
term.setCursorBlink(true)
sleep(1)
term.setCursorBlink(false)
sleep(1)
end
else
local isAdvanced = term.isColor and term.isColor()
if isAdvanced then
term.clear()
sleep(1)
splashscreen()
else
term.clear()
sleep(1)
term.setCursorPos(15, 1)
print("[GLOBAL STARTUP ERROR]")
print("")
print("Sorry, but this version of HuskyOS-Server is only available for Advanced Computers or you installed the wrong version...")
print("")
print("You can download the newest version from http://huskyos.schwazis.net")
term.setCursorPos(20, 18)
print("Error-Code: term_NO_Advanced_PC")
sleep(15)
os.shutdown()
end
end
local ok, err2 = pcall(main)
local err = err2 or ""
local w,h = term.getSize()
local Version = "1.1.2-BETA"
if not ok then
term.clear()
term.setCursorPos(math.floor(w-string.len("[Error]"))/2, 2)
print("[Error]")
term.setCursorPos(2,4)
print("The HuskyOS bootloader detected an error in an\n system-file:")
term.setCursorPos(math.floor(w-string.len(err))/2, 7)
print(err)
term.setCursorPos(math.floor(w-string.len("Is HuskyOS up-to-date?"))/2, 9)
print("Is HuskyOS up-to-date?")
os.pullEvent("key")
os.reboot()
end