aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/copyright.h
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2006-09-25 23:19:01 +0000
committerRobert Watson <rwatson@FreeBSD.org>2006-09-25 23:19:01 +0000
commit5add74b4a7aa0beacf4c8d229fa65b4dbf568f50 (patch)
tree368d8786e60bb530d6f57d14ffc1831445d2a4e2 /sys/sys/copyright.h
parentfa81ece897e52f42e99db0aed3162f9172931258 (diff)
downloadsrc-5add74b4a7aa0beacf4c8d229fa65b4dbf568f50.tar.gz
src-5add74b4a7aa0beacf4c8d229fa65b4dbf568f50.zip
Add "FreeBSD" trademark statement to copyright section of boot messages.
MFC after: 3 days Approved by: core, board at FreeBSDFoundation dot org
Notes
Notes: svn path=/head/; revision=162639
Diffstat (limited to 'sys/sys/copyright.h')
-rw-r--r--sys/sys/copyright.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/sys/copyright.h b/sys/sys/copyright.h
index 8e65e40b4254..87c8bb80bb37 100644
--- a/sys/sys/copyright.h
+++ b/sys/sys/copyright.h
@@ -32,6 +32,10 @@
#define COPYRIGHT_FreeBSD \
"Copyright (c) 1992-2006 The FreeBSD Project.\n"
+/* Foundation */
+#define TRADEMARK_Foundation \
+ "FreeBSD is a registered trademark of The FreeBSD Foundation.\n"
+
/* Berkeley */
#define COPYRIGHT_UCB \
"Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994\n\tThe Regents of the University of California. All rights reserved.\n"
@@ -45,4 +49,5 @@ char copyright[] = COPYRIGHT_FreeBSD COPYRIGHT_PC98 COPYRIGHT_UCB;
#else
char copyright[] = COPYRIGHT_FreeBSD COPYRIGHT_UCB;
+char trademark[] = TRADEMARK_Foundation;
#endif