Enable ffsv2 in boot.

This commit is contained in:
ragge 2018-05-01 07:03:47 +00:00
parent ba0005f35a
commit 46b98f9cd0
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: conf.c,v 1.17 2017/05/22 16:59:32 ragge Exp $ */
/* $NetBSD: conf.c,v 1.18 2018/05/01 07:03:47 ragge Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
* All rights reserved.
@ -84,7 +84,7 @@ int ndevs = (sizeof(devsw)/sizeof(devsw[0]));
struct fs_ops file_system[] = {
FS_OPS(ffsv1),
//FS_OPS(ffsv2),
FS_OPS(ffsv2),
FS_OPS(nfs),
FS_OPS(cd9660),
FS_OPS(ustarfs),

View File

@ -1,4 +1,4 @@
/* $NetBSD: bootxx.c,v 1.37 2013/06/28 01:13:40 matt Exp $ */
/* $NetBSD: bootxx.c,v 1.38 2018/05/01 07:03:47 ragge Exp $ */
/*-
* Copyright (c) 1982, 1986 The Regents of the University of California.
@ -187,7 +187,7 @@ die:
struct fs_ops file_system[] = {
#ifdef NEED_UFS
{ ffsv1_open, 0, ffsv1_read, 0, 0, ffsv1_stat },
//{ ffsv2_open, 0, ffsv2_read, 0, 0, ffsv2_stat },
{ ffsv2_open, 0, ffsv2_read, 0, 0, ffsv2_stat },
#endif
#ifdef NEED_CD9660
{ cd9660_open, 0, cd9660_read, 0, 0, cd9660_stat },