Add FFSv2 support.

This commit is contained in:
minoura 2012-03-20 12:38:33 +00:00
parent 4c819508b9
commit 9e3651c7cf
2 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: conf.c,v 1.8 2005/12/11 12:19:44 christos Exp $ */
/* $NetBSD: conf.c,v 1.9 2012/03/20 12:38:33 minoura Exp $ */
/*
* Copyright (c) 2001 Minoura Makoto
@ -52,7 +52,8 @@ const struct devspec devspec[] = {
};
struct fs_ops file_system[] = {
FS_OPS(ufs),
FS_OPS(ffsv1),
FS_OPS(ffsv2),
FS_OPS(lfsv1),
FS_OPS(lfsv2),
FS_OPS(cd9660),

View File

@ -1,4 +1,4 @@
$NetBSD: version,v 1.4 2011/10/13 11:35:37 tsutsui Exp $
$NetBSD: version,v 1.5 2012/03/20 12:38:33 minoura Exp $
NOTE ANY CHANGES YOU MAKE TO THE BOOTBLOCKS HERE. The format of this
file is important - make sure the entries are appended on end, last item
@ -9,3 +9,4 @@ is taken as the current.
1.1: loadfile() update to avoid backwards seeks for ELF Program Headers.
1.2: Fix serial console output.
1.3: Avoid exception on 68060 in UFS ops.
1.4: ffsv2 support.