Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/x68k/stand/boot Add FFSv2 support.



details:   https://anonhg.NetBSD.org/src/rev/29024afa0c67
branches:  trunk
changeset: 778236:29024afa0c67
user:      minoura <minoura%NetBSD.org@localhost>
date:      Tue Mar 20 12:38:33 2012 +0000

description:
Add FFSv2 support.

diffstat:

 sys/arch/x68k/stand/boot/conf.c  |  5 +++--
 sys/arch/x68k/stand/boot/version |  3 ++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diffs (33 lines):

diff -r d157e687f2e9 -r 29024afa0c67 sys/arch/x68k/stand/boot/conf.c
--- a/sys/arch/x68k/stand/boot/conf.c   Tue Mar 20 12:37:34 2012 +0000
+++ b/sys/arch/x68k/stand/boot/conf.c   Tue Mar 20 12:38:33 2012 +0000
@@ -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 @@
 };
 
 struct fs_ops file_system[] = {
-       FS_OPS(ufs),
+       FS_OPS(ffsv1),
+       FS_OPS(ffsv2),
        FS_OPS(lfsv1),
        FS_OPS(lfsv2),
        FS_OPS(cd9660),
diff -r d157e687f2e9 -r 29024afa0c67 sys/arch/x68k/stand/boot/version
--- a/sys/arch/x68k/stand/boot/version  Tue Mar 20 12:37:34 2012 +0000
+++ b/sys/arch/x68k/stand/boot/version  Tue Mar 20 12:38:33 2012 +0000
@@ -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 @@
 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.



Home | Main Index | Thread Index | Old Index