summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sobrado <sobrado@cvs.openbsd.org>2008-03-09 12:03:04 +0000
committerIgor Sobrado <sobrado@cvs.openbsd.org>2008-03-09 12:03:04 +0000
commit8cf93d9dfc77b1b98401231889fcf26b11818f5e (patch)
treed462d39a53bd426feb18ccb46532f271f4b6a1ef
parent86732db71cd539216ad57d9d4ed05d6980a97c64 (diff)
use the right capitalization for platform names
ok jsing@
-rw-r--r--sys/arch/alpha/stand/boot/newvers.sh4
-rw-r--r--sys/arch/alpha/stand/netboot/if_prom.c4
-rw-r--r--sys/arch/alpha/stand/netboot/newvers.sh4
-rw-r--r--sys/arch/mac68k/mac68k/dpme.h4
-rw-r--r--sys/compat/osf1/README.syscalls4
-rw-r--r--sys/netinet6/in6.h6
6 files changed, 13 insertions, 13 deletions
diff --git a/sys/arch/alpha/stand/boot/newvers.sh b/sys/arch/alpha/stand/boot/newvers.sh
index e376aeeaf14..4fd742249ba 100644
--- a/sys/arch/alpha/stand/boot/newvers.sh
+++ b/sys/arch/alpha/stand/boot/newvers.sh
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: newvers.sh,v 1.9 2005/05/30 01:31:12 deraadt Exp $
+# $OpenBSD: newvers.sh,v 1.10 2008/03/09 12:03:03 sobrado Exp $
# $NetBSD: newvers.sh,v 1.3 1996/06/14 20:03:04 cgd Exp $
#
# Copyright (c) 1984, 1986, 1990, 1993
@@ -35,7 +35,7 @@
u=${USER-root} h=`hostname` t=`date`
r=`awk ' { print $3 ; exit } ' < $1`
-echo "char bootprog_name[] = \"OpenBSD/Alpha boot ${r}\";" > vers.c
+echo "char bootprog_name[] = \"OpenBSD/alpha boot ${r}\";" > vers.c
#echo "char bootprog_rev[] = \"${r}\";" >> vers.c
#echo "char bootprog_date[] = \"${t}\";" >> vers.c
#echo "char bootprog_maker[] = \"${u}@${h}\";" >> vers.c
diff --git a/sys/arch/alpha/stand/netboot/if_prom.c b/sys/arch/alpha/stand/netboot/if_prom.c
index 74524589f36..482994d6cea 100644
--- a/sys/arch/alpha/stand/netboot/if_prom.c
+++ b/sys/arch/alpha/stand/netboot/if_prom.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_prom.c,v 1.3 1997/05/05 06:02:01 millert Exp $ */
+/* $OpenBSD: if_prom.c,v 1.4 2008/03/09 12:03:03 sobrado Exp $ */
/* $NetBSD: if_prom.c,v 1.9 1997/04/06 08:41:26 cgd Exp $ */
/*
@@ -244,7 +244,7 @@ reallypunt:
printf("\n");
printf("Boot device name was: \"%s\"\n", devname);
printf("\n");
- printf("Your firmware may be too old to network-boot OpenBSD/Alpha,\n");
+ printf("Your firmware may be too old to network-boot OpenBSD/alpha,\n");
printf("or you might have to hard-code an ethernet address into\n");
printf("your network boot block with setnetbootinfo(8).\n");
halt();
diff --git a/sys/arch/alpha/stand/netboot/newvers.sh b/sys/arch/alpha/stand/netboot/newvers.sh
index e24739e1875..09262940fd7 100644
--- a/sys/arch/alpha/stand/netboot/newvers.sh
+++ b/sys/arch/alpha/stand/netboot/newvers.sh
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $OpenBSD: newvers.sh,v 1.3 2003/06/02 23:27:44 millert Exp $
+# $OpenBSD: newvers.sh,v 1.4 2008/03/09 12:03:03 sobrado Exp $
# $NetBSD: newvers.sh,v 1.1 1996/09/18 20:03:13 cgd Exp $
#
# Copyright (c) 1984, 1986, 1990, 1993
@@ -35,7 +35,7 @@
u=${USER-root} h=`hostname` t=`date`
r=`awk ' { print $3 ; exit } ' < $1`
-echo "char bootprog_name[] = \"OpenBSD/Alpha Network Boot\";" > vers.c
+echo "char bootprog_name[] = \"OpenBSD/alpha Network Boot\";" > vers.c
echo "char bootprog_rev[] = \"${r}\";" >> vers.c
echo "char bootprog_date[] = \"${t}\";" >> vers.c
echo "char bootprog_maker[] = \"${u}@${h}\";" >> vers.c
diff --git a/sys/arch/mac68k/mac68k/dpme.h b/sys/arch/mac68k/mac68k/dpme.h
index fb56b3bc8e8..10a2cf77673 100644
--- a/sys/arch/mac68k/mac68k/dpme.h
+++ b/sys/arch/mac68k/mac68k/dpme.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dpme.h,v 1.6 1999/04/19 04:48:02 downsj Exp $ */
+/* $OpenBSD: dpme.h,v 1.7 2008/03/09 12:03:03 sobrado Exp $ */
/* $NetBSD: dpme.h,v 1.8 1997/11/30 04:46:59 briggs Exp $ */
/*
@@ -71,7 +71,7 @@ struct partmapentry {
/*
* "pmBootArgs" for APPLE_UNIX_SVR2 partition.
- * OpenBSD/Mac68k only uses Magic, Cluster, Type, and Flags.
+ * OpenBSD/mac68k only uses Magic, Cluster, Type, and Flags.
*/
struct blockzeroblock {
u_int32_t bzbMagic;
diff --git a/sys/compat/osf1/README.syscalls b/sys/compat/osf1/README.syscalls
index 01d106b4b70..89ae0406e22 100644
--- a/sys/compat/osf1/README.syscalls
+++ b/sys/compat/osf1/README.syscalls
@@ -1,4 +1,4 @@
-$OpenBSD: README.syscalls,v 1.4 2001/07/09 05:15:23 fgsch Exp $
+$OpenBSD: README.syscalls,v 1.5 2008/03/09 12:03:03 sobrado Exp $
$NetBSD: README.syscalls,v 1.2 1999/04/27 16:09:28 cgd Exp $
XXX this file should be gutted. functions' comments should go with
@@ -17,7 +17,7 @@ Finally, there are some OSF/1 syscalls which were left unimplemented,
but which seem strange enough to merit a bit more explanation.
OSF/1 compatibility is helped by the fact that the sigcontext
-structure was created for NetBSD/Alpha to be the same as the OSF/1
+structure was created for NetBSD/alpha to be the same as the OSF/1
sigcontext structure. Because of this, only one sendsig() function is
needed, and then the NetBSD sigreturn() function can be used for OSF/1
sigreturn(), as well.
diff --git a/sys/netinet6/in6.h b/sys/netinet6/in6.h
index c197d236478..d85127b4945 100644
--- a/sys/netinet6/in6.h
+++ b/sys/netinet6/in6.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: in6.h,v 1.44 2007/01/22 06:12:18 miod Exp $ */
+/* $OpenBSD: in6.h,v 1.45 2008/03/09 12:03:03 sobrado Exp $ */
/* $KAME: in6.h,v 1.83 2001/03/29 02:55:07 jinmei Exp $ */
/*
@@ -229,7 +229,7 @@ extern const struct in6_addr in6addr_linklocal_allrouters;
/*
* Equality
- * NOTE: Some of kernel programming environment (for example, openbsd/sparc)
+ * NOTE: Some of kernel programming environment (for example, OpenBSD/sparc)
* does not supply memcmp(). For userland memcmp() is preferred as it is
* in ANSI standard.
*/
@@ -607,7 +607,7 @@ struct ip6_mtuinfo {
#define IPV6CTL_KAME_VERSION 20
#define IPV6CTL_USE_DEPRECATED 21 /* use deprecated addr (RFC2462 5.5.4) */
#define IPV6CTL_RR_PRUNE 22 /* walk timer for router renumbering */
-/*#define IPV6CTL_MAPPED_ADDR 23 not for openbsd */
+/*#define IPV6CTL_MAPPED_ADDR 23 not for OpenBSD */
#define IPV6CTL_V6ONLY 24
/* 25 to 40: resrved */
#define IPV6CTL_MAXFRAGS 41 /* max fragments */