M alphapc/fns.h => alphapc/fns.h +1 -0
@@ 40,6 40,7 @@ int i8042auxcmd(int);
void i8042auxenable(void (*)(int, int));
void i8042reset(void);
void i8250console(void);
+void i8250mouse(char*, int(*)(Queue*,int), int);
void i8259init(void);
int i8259enable(int, int, Vctl*);
#define idlehands() /* nothing to do in the runproc */
M alphapc/screen.h => alphapc/screen.h +1 -0
@@ 70,6 70,7 @@ struct VGAdev {
ulong (*linear)(VGAscr*, int*, int*);
void (*drawinit)(VGAscr*);
int (*fill)(VGAscr*, Rectangle, ulong);
+ void (*flush)(VGAscr*, Rectangle);
};
M boot/bootip.c => boot/bootip.c +1 -0
@@ 54,6 54,7 @@ configip(void)
bind("#l1", mpoint, MAFTER);
bind("#l2", mpoint, MAFTER);
bind("#l3", mpoint, MAFTER);
+ werrstr("");
/* let ipconfig configure the ip interface */
switch(pid = fork()){