Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-3]: src/sys/arch/alpha/stand/boot Pull up following revision(s) (...
details: https://anonhg.NetBSD.org/src/rev/56609f4ad0bd
branches: netbsd-3
changeset: 577815:56609f4ad0bd
user: tron <tron%NetBSD.org@localhost>
date: Sun Feb 05 18:47:55 2006 +0000
description:
Pull up following revision(s) (requested by abs in ticket #738):
sys/arch/alpha/stand/boot/filesystem.c: revision 1.11 via patch
Include the ffsv2 filesystem ops. Necessary but not sufficient for booting
from an FFSv2 filesystem. Similar change tested on NetBSD-3
diffstat:
sys/arch/alpha/stand/boot/filesystem.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diffs (18 lines):
diff -r 40e3562ed2ec -r 56609f4ad0bd sys/arch/alpha/stand/boot/filesystem.c
--- a/sys/arch/alpha/stand/boot/filesystem.c Sun Feb 05 18:47:13 2006 +0000
+++ b/sys/arch/alpha/stand/boot/filesystem.c Sun Feb 05 18:47:55 2006 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: filesystem.c,v 1.8 2003/02/23 23:23:07 simonb Exp $ */
+/* $NetBSD: filesystem.c,v 1.8.16.1 2006/02/05 18:47:55 tron Exp $ */
/*
* Copyright (c) 1993 Philip A. Nelson.
@@ -42,6 +42,8 @@
struct fs_ops file_system[] = {
{ ustarfs_open, ustarfs_close, ustarfs_read, ustarfs_write, ustarfs_seek,
ustarfs_stat }, /* this one can work from tape, so put it first */
+ { ffsv2_open, ffsv2_close, ffsv2_read, ffsv2_write, ffsv2_seek,
+ ffsv2_stat },
{ ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek,
ufs_stat },
{ cd9660_open, cd9660_close, cd9660_read, cd9660_write, cd9660_seek,
Home |
Main Index |
Thread Index |
Old Index