Module Name: src
Committed By: kiyohara
Date: Mon Oct 18 17:56:40 UTC 2010
Modified Files:
src/sys/arch/bebox/stand/boot: filesystem.c version
Log Message:
Support ustarfs for floppy-disk.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/bebox/stand/boot/filesystem.c
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/bebox/stand/boot/version
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/bebox/stand/boot/filesystem.c
diff -u src/sys/arch/bebox/stand/boot/filesystem.c:1.8 src/sys/arch/bebox/stand/boot/filesystem.c:1.9
--- src/sys/arch/bebox/stand/boot/filesystem.c:1.8 Thu Oct 14 06:50:44 2010
+++ src/sys/arch/bebox/stand/boot/filesystem.c Mon Oct 18 17:56:40 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: filesystem.c,v 1.8 2010/10/14 06:50:44 kiyohara Exp $ */
+/* $NetBSD: filesystem.c,v 1.9 2010/10/18 17:56:40 kiyohara Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -30,11 +30,13 @@
*/
#include <lib/libsa/stand.h>
+#include <lib/libsa/ustarfs.h>
#include <ufs.h>
struct fs_ops file_system[] = {
FS_OPS(ffsv1),
FS_OPS(ffsv2),
+ FS_OPS(ustarfs),
FS_OPS(null),
};
Index: src/sys/arch/bebox/stand/boot/version
diff -u src/sys/arch/bebox/stand/boot/version:1.10 src/sys/arch/bebox/stand/boot/version:1.11
--- src/sys/arch/bebox/stand/boot/version:1.10 Thu Oct 14 06:58:22 2010
+++ src/sys/arch/bebox/stand/boot/version Mon Oct 18 17:56:40 2010
@@ -1,4 +1,4 @@
-$NetBSD: version,v 1.10 2010/10/14 06:58:22 kiyohara Exp $
+$NetBSD: version,v 1.11 2010/10/18 17:56:40 kiyohara Exp $
1.1: Boot program for BeBox; initial revision
1.2: check BUS FREQ, add clock information
@@ -11,3 +11,4 @@
1.7: Support kernel load from IDE HDD with onboard wdc.
1.8: Support kernel load from SCSI HDD with onboard siop.
(EXPERIMENTAL)
+1.9: Support ustarfs for floppy.