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 Add cd9660 support to the secondary b...



details:   https://anonhg.NetBSD.org/src/rev/7d32657e87b5
branches:  trunk
changeset: 485319:7d32657e87b5
user:      matt <matt%NetBSD.org@localhost>
date:      Mon Apr 24 21:46:07 2000 +0000

description:
Add cd9660 support to the secondary boot blocks.

diffstat:

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

diffs (26 lines):

diff -r abb0ebbb8f70 -r 7d32657e87b5 sys/arch/vax/boot/boot/conf.c
--- a/sys/arch/vax/boot/boot/conf.c     Mon Apr 24 19:07:16 2000 +0000
+++ b/sys/arch/vax/boot/boot/conf.c     Mon Apr 24 21:46:07 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: conf.c,v 1.5 2000/04/22 16:52:23 ragge Exp $ */
+/*     $NetBSD: conf.c,v 1.6 2000/04/24 21:46:07 matt Exp $ */
 /*
  * Copyright (c) 1994 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -40,6 +40,7 @@
 #include "lib/libsa/stand.h"
 #include "lib/libsa/ufs.h"
 #include "lib/libsa/nfs.h"
+#include "lib/libsa/cd9660.h"
 #include "lib/libsa/ustarfs.h"
 
 #include "vaxstand.h"
@@ -88,6 +89,8 @@
 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 },
+       { cd9660_open, cd9660_close, cd9660_read, cd9660_write,
+           cd9660_seek, cd9660_stat },
        { ustarfs_open, ustarfs_close, ustarfs_read, ustarfs_write,
            ustarfs_seek, ustarfs_stat },
 };



Home | Main Index | Thread Index | Old Index