mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-12 15:39:27 -04:00
29 lines
416 B
C
29 lines
416 B
C
/* $NetBSD: conf.c,v 1.6 2015/07/29 14:32:54 tsutsui Exp $ */
|
|
|
|
#include <sys/types.h>
|
|
#include <netinet/in.h>
|
|
|
|
#include "stand.h"
|
|
#include "nfs.h"
|
|
#include "dev_net.h"
|
|
#include "libsa.h"
|
|
|
|
struct fs_ops file_system[] = {
|
|
FS_OPS(nfs),
|
|
};
|
|
int nfsys = 1;
|
|
|
|
struct devsw devsw[] = {
|
|
{ "net", net_strategy, net_open, net_close, net_ioctl },
|
|
};
|
|
int ndevs = 1;
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
|
|
xxboot_main("netboot");
|
|
|
|
return 0;
|
|
}
|