xref: /netbsd/sys/arch/sun68k/stand/ufsboot/conf.c (revision bf9ec67e)
1 /*	$NetBSD: conf.c,v 1.1 2001/06/14 12:57:17 fredette Exp $	*/
2 
3 #include <stand.h>
4 #include <ufs.h>
5 #include <dev_disk.h>
6 
7 struct fs_ops file_system[] = {
8 	{ ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat },
9 };
10 int nfsys = 1;
11 
12 struct devsw devsw[] = {
13 	{ "disk", disk_strategy, disk_open, disk_close, disk_ioctl },
14 };
15 int	ndevs = 1;
16 
17 int
18 main() {
19 	xxboot_main("ufsboot");
20 }
21