xref: /inferno-os/os/boot/pc/noether.c (revision 9dc22068e29604f4b484e746112a9a4efe6fd57f)
1 #include "u.h"
2 #include "lib.h"
3 #include "mem.h"
4 #include "dat.h"
5 #include "fns.h"
6 #include "io.h"
7 
8 int
9 etherinit(void)
10 {
11 	return -1;
12 }
13 
14 void
15 etherinitdev(int, char*)
16 {
17 }
18 
19 void
20 etherprintdevs(int)
21 {
22 }
23 
24 int
25 etherrxpkt(int, Etherpkt*, int)
26 {
27 	return -1;
28 }
29 
30 int
31 bootpboot(int, char*, Boot*)
32 {
33 	return -1;
34 }
35 
36 void*
37 pxegetfspart(int, char*, int)
38 {
39 	return nil;
40 }
41