Module Name: src Committed By: msaitoh Date: Sun Dec 5 04:47:18 UTC 2021
Modified Files: src/distrib/notes/emips: install src/distrib/notes/pmax: install src/sys/fs/adosfs: advfsops.c src/usr.sbin/fstyp: hammer_disk.h src/usr.sbin/installboot/arch: i386.c Log Message: s/filesytem/filesystem/ in comment. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/distrib/notes/emips/install cvs rdiff -u -r1.43 -r1.44 src/distrib/notes/pmax/install cvs rdiff -u -r1.79 -r1.80 src/sys/fs/adosfs/advfsops.c cvs rdiff -u -r1.1 -r1.2 src/usr.sbin/fstyp/hammer_disk.h cvs rdiff -u -r1.42 -r1.43 src/usr.sbin/installboot/arch/i386.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/distrib/notes/emips/install diff -u src/distrib/notes/emips/install:1.3 src/distrib/notes/emips/install:1.4 --- src/distrib/notes/emips/install:1.3 Thu Nov 21 19:23:17 2019 +++ src/distrib/notes/emips/install Sun Dec 5 04:47:17 2021 @@ -1,4 +1,4 @@ -.\" $NetBSD: install,v 1.3 2019/11/21 19:23:17 martin Exp $ +.\" $NetBSD: install,v 1.4 2021/12/05 04:47:17 msaitoh Exp $ .\" .\" Copyright (c) 2010 Microsoft Corp. .\" Copyright (c) 2010 The NetBSD Foundation, Inc. @@ -332,7 +332,7 @@ section. The file .Pa \*M/installation/netboot/diskimage.tar.gz contains a suitable set of files for installing on an NFS server to set -up a diskless root filesytem. +up a diskless root filesystem. (It is a tar copy of the contents of an installation ramdisk file system contained in the install kernel.) You will need to find an NFS server, unpack the tarfile, and setup Index: src/distrib/notes/pmax/install diff -u src/distrib/notes/pmax/install:1.43 src/distrib/notes/pmax/install:1.44 --- src/distrib/notes/pmax/install:1.43 Thu Nov 21 19:23:20 2019 +++ src/distrib/notes/pmax/install Sun Dec 5 04:47:17 2021 @@ -1,4 +1,4 @@ -.\" $NetBSD: install,v 1.43 2019/11/21 19:23:20 martin Exp $ +.\" $NetBSD: install,v 1.44 2021/12/05 04:47:17 msaitoh Exp $ .\" .\" Copyright (c) 1999-2002 The NetBSD Foundation, Inc. .\" All rights reserved. @@ -431,7 +431,7 @@ section. The file .Pa \*M/installation/netboot/diskimage.tar.gz contains a suitable set of files for installing on an NFS server to set -up a diskless root filesytem. +up a diskless root filesystem. (It is a tar copy of the contents of an installation ramdisk file system contained in the install kernel.) You will need to find an NFS server, unpack the tarfile, and setup Index: src/sys/fs/adosfs/advfsops.c diff -u src/sys/fs/adosfs/advfsops.c:1.79 src/sys/fs/adosfs/advfsops.c:1.80 --- src/sys/fs/adosfs/advfsops.c:1.79 Mon Mar 16 21:20:09 2020 +++ src/sys/fs/adosfs/advfsops.c Sun Dec 5 04:47:17 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: advfsops.c,v 1.79 2020/03/16 21:20:09 pgoyette Exp $ */ +/* $NetBSD: advfsops.c,v 1.80 2021/12/05 04:47:17 msaitoh Exp $ */ /* * Copyright (c) 1994 Christian E. Hopps @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: advfsops.c,v 1.79 2020/03/16 21:20:09 pgoyette Exp $"); +__KERNEL_RCSID(0, "$NetBSD: advfsops.c,v 1.80 2021/12/05 04:47:17 msaitoh Exp $"); #if defined(_KERNEL_OPT) #include "opt_compat_netbsd.h" @@ -227,7 +227,7 @@ adosfs_mountfs(struct vnode *devvp, stru blksperdisk = numsecs / secsperblk; - /* The filesytem variant ('dostype') is stored in the boot block */ + /* The filesystem variant ('dostype') is stored in the boot block */ bp = NULL; if ((error = bread(devvp, (daddr_t)BBOFF, amp->bsize, 0, &bp)) != 0) { Index: src/usr.sbin/fstyp/hammer_disk.h diff -u src/usr.sbin/fstyp/hammer_disk.h:1.1 src/usr.sbin/fstyp/hammer_disk.h:1.2 --- src/usr.sbin/fstyp/hammer_disk.h:1.1 Wed Jan 1 08:56:41 2020 +++ src/usr.sbin/fstyp/hammer_disk.h Sun Dec 5 04:47:17 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: hammer_disk.h,v 1.1 2020/01/01 08:56:41 tkusumi Exp $ */ +/* $NetBSD: hammer_disk.h,v 1.2 2021/12/05 04:47:17 msaitoh Exp $ */ /* * Copyright (c) 2007 The DragonFly Project. All rights reserved. @@ -36,7 +36,7 @@ * $DragonFly: src/sys/vfs/hammer/hammer_disk.h,v 1.55 2008/11/13 02:18:43 dillon Exp $ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: hammer_disk.h,v 1.1 2020/01/01 08:56:41 tkusumi Exp $"); +__KERNEL_RCSID(0, "$NetBSD: hammer_disk.h,v 1.2 2021/12/05 04:47:17 msaitoh Exp $"); #ifndef VFS_HAMMER_DISK_H_ #define VFS_HAMMER_DISK_H_ @@ -768,7 +768,7 @@ typedef struct hammer_volume_ondisk { /* * These fields are initialized and space is reserved in every - * volume making up a HAMMER filesytem, but only the root volume + * volume making up a HAMMER filesystem, but only the root volume * contains valid data. Note that vol0_stat_bigblocks does not * include big-blocks for freemap and undomap initially allocated * by newfs_hammer(8). Index: src/usr.sbin/installboot/arch/i386.c diff -u src/usr.sbin/installboot/arch/i386.c:1.42 src/usr.sbin/installboot/arch/i386.c:1.43 --- src/usr.sbin/installboot/arch/i386.c:1.42 Tue May 7 04:35:31 2019 +++ src/usr.sbin/installboot/arch/i386.c Sun Dec 5 04:47:18 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: i386.c,v 1.42 2019/05/07 04:35:31 thorpej Exp $ */ +/* $NetBSD: i386.c,v 1.43 2021/12/05 04:47:18 msaitoh Exp $ */ /*- * Copyright (c) 2003 The NetBSD Foundation, Inc. @@ -35,7 +35,7 @@ #include <sys/cdefs.h> #if !defined(__lint) -__RCSID("$NetBSD: i386.c,v 1.42 2019/05/07 04:35:31 thorpej Exp $"); +__RCSID("$NetBSD: i386.c,v 1.43 2021/12/05 04:47:18 msaitoh Exp $"); #endif /* !__lint */ #include <sys/param.h> @@ -462,7 +462,7 @@ i386_setboot(ib_params *params) u = disk_buf.b[1]; } if (params->s1start != 0) - /* Fixup physical offset of filesytem */ + /* Fixup physical offset of filesystem */ bpb->bpbHiddenSecs = htole32(params->s1start); memcpy(bootstrap.b + 2, disk_buf.b + 2, u); }