Print this page
NEX-19401 update copyright year to 2019
Reviewed by: Rick McNeal <rick.mcneal@nexenta.com>
Reviewed by: Joyce McIntosh <joyce.mcintosh@nexenta.com>
NEX-15789 Update copyright to 2018 for NexentaStor on the boot screen
Reviewed by: Rick McNeal <rick.mcneal@nexenta.com>
Reviewed by: Rob Gittins <rob.gittins@nexenta.com>
NEX-15789 Update copyright to 2018 for NexentaStor on the boot screen
Reviewed by: Rick McNeal <rick.mcneal@nexenta.com>
Reviewed by: Rob Gittins <rob.gittins@nexenta.com>
NEX-9809 Need to change copyright in the boot screen to 2017
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
NEX-5095 Need to change copyright in the boot screen to 2016
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
Reviewed by: Rick McNeal <rick.mcneal@nexenta.com>
Reviewed by: Kevin Crowe <kevin.crowe@nexenta.com>
NEX-3821 WRC: System may panics due to uninitialized mutex
 added init and destroy of block's mutex
 moved block's initialization logic to separate function
 Reviewed by: Alek Pinchuk <alek@nexenta.com>
 Reviewed by: Josef 'Jeff' Sipek <josef.sipek@nexenta.com>
NEX-3646 Need to change copyright in the boot screen to 2015
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
OS-136 Need to log auth facility
OS-79 Want version string (etc.) similar to 3.x
re #12630 rb4054 Update copyright year in logsubr.c
Update the year of copyright during kernel loading
re #6591 update 4.0 logsubr to amend Nexenta copyright and OS version

*** 20,29 **** --- 20,30 ---- */ /* * Copyright (c) 2013 Gary Mills * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. + * Copyright 2019 Nexenta Systems, Inc. */ #include <sys/types.h> #include <sys/param.h> #include <sys/varargs.h>
*** 243,258 **** * Let the logging begin. */ log_update(&log_backlog, log_backlogq, SL_CONSOLE, log_console); /* ! * Now that logging is enabled, emit the SunOS banner. */ printf("\rSunOS Release %s Version %s %u-bit\n", utsname.release, utsname.version, NBBY * (uint_t)sizeof (void *)); printf("Copyright (c) 1983, 2010, Oracle and/or its affiliates. " "All rights reserved.\n"); #ifdef DEBUG printf("DEBUG enabled\n"); #endif } --- 244,260 ---- * Let the logging begin. */ log_update(&log_backlog, log_backlogq, SL_CONSOLE, log_console); /* ! * Now that logging is enabled, emit the OS banner. */ printf("\rSunOS Release %s Version %s %u-bit\n", 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 2019 Nexenta Systems, Inc.\n"); #ifdef DEBUG printf("DEBUG enabled\n"); #endif }