From 9e3651c7cfe466d0e70f177cb6c1414494097d46 Mon Sep 17 00:00:00 2001 From: minoura Date: Tue, 20 Mar 2012 12:38:33 +0000 Subject: [PATCH] Add FFSv2 support. --- sys/arch/x68k/stand/boot/conf.c | 5 +++-- sys/arch/x68k/stand/boot/version | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/sys/arch/x68k/stand/boot/conf.c b/sys/arch/x68k/stand/boot/conf.c index 733c8edb8bd5..5377b65d4a5b 100644 --- a/sys/arch/x68k/stand/boot/conf.c +++ b/sys/arch/x68k/stand/boot/conf.c @@ -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), diff --git a/sys/arch/x68k/stand/boot/version b/sys/arch/x68k/stand/boot/version index 47b06d8a8d4a..0adfdf111c65 100644 --- a/sys/arch/x68k/stand/boot/version +++ b/sys/arch/x68k/stand/boot/version @@ -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.