xref: /netbsd-src/sys/arch/sun68k/stand/ufsboot/conf.c (revision 2de962bd804263c16657f586aa00f1704045df8e)
1 /*	$NetBSD: conf.c,v 1.4 2005/12/11 12:19:29 christos Exp $	*/
2 
3 #include <stand.h>
4 #include <ufs.h>
5 #include <dev_disk.h>
6 
7 struct fs_ops file_system[] = {
8 	FS_OPS(ufs),
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(void)
19 {
20 	xxboot_main("ufsboot");
21 }
22