Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/vax/boot/boot move ustarfs to end so that '@" can b...



details:   https://anonhg.NetBSD.org/src/rev/575d94d33d17
branches:  trunk
changeset: 484974:575d94d33d17
user:      matt <matt%NetBSD.org@localhost>
date:      Sun Apr 16 01:42:41 2000 +0000

description:
move ustarfs to end so that '@" can be avoided.  from mhitch.

diffstat:

 sys/arch/vax/boot/boot/conf.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r 90eaf3bae6db -r 575d94d33d17 sys/arch/vax/boot/boot/conf.c
--- a/sys/arch/vax/boot/boot/conf.c     Sun Apr 16 01:41:23 2000 +0000
+++ b/sys/arch/vax/boot/boot/conf.c     Sun Apr 16 01:42:41 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: conf.c,v 1.3 1999/10/23 14:42:21 ragge Exp $ */
+/*     $NetBSD: conf.c,v 1.4 2000/04/16 01:42:41 matt Exp $ */
 /*
  * Copyright (c) 1994 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -84,10 +84,10 @@
 int     ndevs = (sizeof(devsw)/sizeof(devsw[0]));
 
 struct fs_ops file_system[] = {
+       { ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat },
+       { nfs_open, nfs_close, nfs_read, nfs_write, nfs_seek, nfs_stat },
        { ustarfs_open, ustarfs_close, ustarfs_read, ustarfs_write,
            ustarfs_seek, ustarfs_stat },
-       { ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat },
-       { nfs_open, nfs_close, nfs_read, nfs_write, nfs_seek, nfs_stat },
 };
 
 int nfsys = (sizeof(file_system) / sizeof(struct fs_ops));



Home | Main Index | Thread Index | Old Index