Module Name: src
Committed By: ragge
Date: Tue May 1 07:03:48 UTC 2018
Modified Files:
src/sys/arch/vax/boot/boot: conf.c
src/sys/arch/vax/boot/xxboot: bootxx.c
Log Message:
Enable ffsv2 in boot.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/vax/boot/boot/conf.c
cvs rdiff -u -r1.37 -r1.38 src/sys/arch/vax/boot/xxboot/bootxx.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/vax/boot/boot/conf.c
diff -u src/sys/arch/vax/boot/boot/conf.c:1.17 src/sys/arch/vax/boot/boot/conf.c:1.18
--- src/sys/arch/vax/boot/boot/conf.c:1.17 Mon May 22 16:59:32 2017
+++ src/sys/arch/vax/boot/boot/conf.c Tue May 1 07:03:47 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: conf.c,v 1.17 2017/05/22 16:59:32 ragge Exp $ */
+/* $NetBSD: conf.c,v 1.18 2018/05/01 07:03:47 ragge Exp $ */
/*
* Copyright (c) 1994 Ludd, University of Lule}, Sweden.
* All rights reserved.
@@ -84,7 +84,7 @@ int ndevs = (sizeof(devsw)/sizeof(de
struct fs_ops file_system[] = {
FS_OPS(ffsv1),
- //FS_OPS(ffsv2),
+ FS_OPS(ffsv2),
FS_OPS(nfs),
FS_OPS(cd9660),
FS_OPS(ustarfs),
Index: src/sys/arch/vax/boot/xxboot/bootxx.c
diff -u src/sys/arch/vax/boot/xxboot/bootxx.c:1.37 src/sys/arch/vax/boot/xxboot/bootxx.c:1.38
--- src/sys/arch/vax/boot/xxboot/bootxx.c:1.37 Fri Jun 28 01:13:40 2013
+++ src/sys/arch/vax/boot/xxboot/bootxx.c Tue May 1 07:03:47 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: bootxx.c,v 1.37 2013/06/28 01:13:40 matt Exp $ */
+/* $NetBSD: bootxx.c,v 1.38 2018/05/01 07:03:47 ragge Exp $ */
/*-
* Copyright (c) 1982, 1986 The Regents of the University of California.
@@ -187,7 +187,7 @@ die:
struct fs_ops file_system[] = {
#ifdef NEED_UFS
{ ffsv1_open, 0, ffsv1_read, 0, 0, ffsv1_stat },
- //{ ffsv2_open, 0, ffsv2_read, 0, 0, ffsv2_stat },
+ { ffsv2_open, 0, ffsv2_read, 0, 0, ffsv2_stat },
#endif
#ifdef NEED_CD9660
{ cd9660_open, 0, cd9660_read, 0, 0, cd9660_stat },