summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraiju <devnull@localhost>2017-06-01 06:40:05 +0000
committeraiju <devnull@localhost>2017-06-01 06:40:05 +0000
commit48fa332c61fe037b3f89575c2333df9216652316 (patch)
treefc51cb500ee263199cd836153b5af3537c05e069
parent7134d62ccbb32c783de67d26907e4e856c48f29c (diff)
downloadplan9front-48fa332c61fe037b3f89575c2333df9216652316.tar.xz
pc: actually call netconsole()
-rw-r--r--sys/src/9/pc/fns.h1
-rw-r--r--sys/src/9/pc/main.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/9/pc/fns.h b/sys/src/9/pc/fns.h
index 14c30ef21..13c390bd4 100644
--- a/sys/src/9/pc/fns.h
+++ b/sys/src/9/pc/fns.h
@@ -114,6 +114,7 @@ char* mtrr(uvlong, uvlong, char *);
void mtrrclock(void);
int mtrrprint(char *, long);
void mtrrsync(void);
+void netconsole(void);
uchar nvramread(int);
void nvramwrite(int, uchar);
void outb(int, int);
diff --git a/sys/src/9/pc/main.c b/sys/src/9/pc/main.c
index 2479bc071..18586cacc 100644
--- a/sys/src/9/pc/main.c
+++ b/sys/src/9/pc/main.c
@@ -164,6 +164,7 @@ main(void)
}else
links();
chandevreset();
+ netconsole();
pageinit();
swapinit();
userinit();