9boot: increase timeout, do less printing
parent
38e42ab857
commit
318a980c63
|
@ -170,6 +170,8 @@ Clear:
|
||||||
|
|
||||||
confend = BOOTARGS;
|
confend = BOOTARGS;
|
||||||
memset(confend, 0, BOOTARGSLEN);
|
memset(confend, 0, BOOTARGSLEN);
|
||||||
|
|
||||||
|
e820conf();
|
||||||
Loop:
|
Loop:
|
||||||
while((n = readline(f, line)) > 0){
|
while((n = readline(f, line)) > 0){
|
||||||
if(*line == 0 || strchr("#;=", *line))
|
if(*line == 0 || strchr("#;=", *line))
|
||||||
|
@ -196,14 +198,13 @@ Loop:
|
||||||
*confend++ = '\n';
|
*confend++ = '\n';
|
||||||
print(line); print(crnl);
|
print(line); print(crnl);
|
||||||
}
|
}
|
||||||
e820conf();
|
|
||||||
*confend = 0;
|
*confend = 0;
|
||||||
|
|
||||||
if(f){
|
if(f){
|
||||||
close(f);
|
close(f);
|
||||||
f = 0;
|
f = 0;
|
||||||
|
|
||||||
if(kern && timeout(500))
|
if(kern && timeout(1000))
|
||||||
goto Loop;
|
goto Loop;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -218,24 +219,6 @@ Loop:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static ushort
|
|
||||||
beswab(ushort s)
|
|
||||||
{
|
|
||||||
uchar *p;
|
|
||||||
|
|
||||||
p = (uchar*)&s;
|
|
||||||
return (p[0]<<8) | p[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
static ulong
|
|
||||||
beswal(ulong l)
|
|
||||||
{
|
|
||||||
uchar *p;
|
|
||||||
|
|
||||||
p = (uchar*)&l;
|
|
||||||
return (p[0]<<24) | (p[1]<<16) | (p[2]<<8) | p[3];
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
hexfmt(char *s, int i, ulong a)
|
hexfmt(char *s, int i, ulong a)
|
||||||
{
|
{
|
||||||
|
@ -332,6 +315,24 @@ e820conf(void)
|
||||||
*confend++ = '\n';
|
*confend++ = '\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static ushort
|
||||||
|
beswab(ushort s)
|
||||||
|
{
|
||||||
|
uchar *p;
|
||||||
|
|
||||||
|
p = (uchar*)&s;
|
||||||
|
return (p[0]<<8) | p[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
static ulong
|
||||||
|
beswal(ulong l)
|
||||||
|
{
|
||||||
|
uchar *p;
|
||||||
|
|
||||||
|
p = (uchar*)&l;
|
||||||
|
return (p[0]<<24) | (p[1]<<16) | (p[2]<<8) | p[3];
|
||||||
|
}
|
||||||
|
|
||||||
void a20(void);
|
void a20(void);
|
||||||
|
|
||||||
char*
|
char*
|
||||||
|
@ -341,9 +342,6 @@ bootkern(void *f)
|
||||||
ulong n;
|
ulong n;
|
||||||
Exec ex;
|
Exec ex;
|
||||||
|
|
||||||
print("boot");
|
|
||||||
print(crnl);
|
|
||||||
|
|
||||||
a20();
|
a20();
|
||||||
|
|
||||||
if(readn(f, &ex, sizeof(ex)) != sizeof(ex))
|
if(readn(f, &ex, sizeof(ex)) != sizeof(ex))
|
||||||
|
@ -365,7 +363,7 @@ bootkern(void *f)
|
||||||
close(f);
|
close(f);
|
||||||
unload();
|
unload();
|
||||||
|
|
||||||
print("go!");
|
print("boot");
|
||||||
print(crnl);
|
print(crnl);
|
||||||
|
|
||||||
jump(e);
|
jump(e);
|
||||||
|
|
Loading…
Reference in New Issue