summaryrefslogtreecommitdiff
path: root/usr/src
diff options
context:
space:
mode:
authorjerry <jerry@opensolaris.(none)>2010-11-02 07:41:18 -0600
committerjerry <jerry@opensolaris.(none)>2010-11-02 07:41:18 -0600
commit90303e031054c4e8b32ec33c13dc375244a4eea9 (patch)
tree3543826d6d6857935f95b0d00e6c6dce4ec48e23 /usr/src
parentfe6f294bc2b8eaa42e94fd874c40d9ce4da4d854 (diff)
downloadillumos-joyent-90303e031054c4e8b32ec33c13dc375244a4eea9.tar.gz
include Joyent in copyright output
Diffstat (limited to 'usr/src')
-rw-r--r--usr/src/cmd/init/init.c2
-rw-r--r--usr/src/cmd/prtconf/prtconf.c4
-rw-r--r--usr/src/uts/common/os/logsubr.c1
3 files changed, 5 insertions, 2 deletions
diff --git a/usr/src/cmd/init/init.c b/usr/src/cmd/init/init.c
index e04bbecd89..17aaf69ddb 100644
--- a/usr/src/cmd/init/init.c
+++ b/usr/src/cmd/init/init.c
@@ -696,6 +696,8 @@ main(int argc, char *argv[])
console(B_FALSE,
"Copyright (c) 1983, 2010, Oracle and/or its affiliates."
" All rights reserved.\r\n");
+ console(B_FALSE,
+ "Copyright (c) 2010, Joyent. All rights reserved.\r\n");
}
/*
diff --git a/usr/src/cmd/prtconf/prtconf.c b/usr/src/cmd/prtconf/prtconf.c
index 8b6c8f3a9a..4ff967fffb 100644
--- a/usr/src/cmd/prtconf/prtconf.c
+++ b/usr/src/cmd/prtconf/prtconf.c
@@ -342,10 +342,10 @@ main(int argc, char *argv[])
/*
* If 0 bytes are returned (the system returns '1', for the \0),
* we're probably on x86, and there has been no si-hw-provider
- * set in /etc/bootrc, default to Oracle.
+ * set in /etc/bootrc, default to Joyent.
*/
if (ret <= 1) {
- (void) strncpy(hw_provider, "Oracle Corporation",
+ (void) strncpy(hw_provider, "Joyent",
sizeof (hw_provider));
}
(void) printf("System Configuration: %s %s\n", hw_provider,
diff --git a/usr/src/uts/common/os/logsubr.c b/usr/src/uts/common/os/logsubr.c
index f5cebbf82e..c450346f2f 100644
--- a/usr/src/uts/common/os/logsubr.c
+++ b/usr/src/uts/common/os/logsubr.c
@@ -250,6 +250,7 @@ log_init(void)
utsname.release, utsname.version, NBBY * (uint_t)sizeof (void *));
printf("Copyright (c) 1983, 2010, Oracle and/or its affiliates. "
"All rights reserved.\n");
+ printf("Copyright (c) 2010, Joyent. All rights reserved.\n");
#ifdef DEBUG
printf("DEBUG enabled\n");
#endif