~kris/9p

9hist

22374a325e5e2c058bea786dc413a612ffa0d24b — David du Colombier 23 years ago 1555138
Plan 9 from Bell Labs 2003-04-02
4 files changed, 3 insertions(+), 10 deletions(-)

M boot/bootip.c
M pc/devarch.c
M pc/l.s
M port/devuart.c
M boot/bootip.c => boot/bootip.c +2 -1
@@ 113,7 113,7 @@ void
configtcp(Method*)
{
	sleep(100);
	print("t");
	print("t");	
	sleep(100);
	configip();
	sleep(100);


@@ 134,6 134,7 @@ connecttcp(void)
void
configil(Method*)
{
	print("i");
	configip();
	setauthaddr("tcp", 567);
}

M pc/devarch.c => pc/devarch.c +0 -6
@@ 763,7 763,6 @@ enum
	CMpge,
	CMcoherence,
	CMi8253set,
CMrealmode
};

static Cmdtab archctlmsg[] =


@@ 771,7 770,6 @@ static Cmdtab archctlmsg[] =
	CMpge,		"pge",		2,
	CMcoherence,	"coherence",	2,
	CMi8253set,	"i8253set",	2,
CMrealmode, "realmode", 1,
};

static long


@@ 816,10 814,6 @@ archctlwrite(Chan*, void *a, long n, vlong)
		else
			cmderror(cb, "invalid i2853set ctl");
		break;
	case CMrealmode:
		if(strcmp(cb->f[1], "realmode") == 0)
			realmode();
		break;
	}
	free(cb);
	poperror();

M pc/l.s => pc/l.s +0 -3
@@ 828,6 828,3 @@ TEXT vectortable(SB), $0
	CALL _strayintr(SB); BYTE $0xFE
	CALL _strayintr(SB); BYTE $0xFF

TEXT realmode(SB), $0
	RET


M port/devuart.c => port/devuart.c +1 -0
@@ 40,6 40,7 @@ uartenable(Uart *p)
{
	Uart **l;

dbgputc('E');
	if(p->iq == nil){
		if((p->iq = qopen(4*1024, 0, uartflow, p)) == nil)
			return nil;