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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/os/logsubr.c
          +++ new/usr/src/uts/common/os/logsubr.c
↓ open down ↓ 14 lines elided ↑ open up ↑
  15   15   * If applicable, add the following below this CDDL HEADER, with the
  16   16   * fields enclosed by brackets "[]" replaced with your own identifying
  17   17   * information: Portions Copyright [yyyy] [name of copyright owner]
  18   18   *
  19   19   * CDDL HEADER END
  20   20   */
  21   21  
  22   22  /*
  23   23   * Copyright (c) 2013 Gary Mills
  24   24   * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
       25 + * Copyright 2019 Nexenta Systems, Inc.
  25   26   */
  26   27  
  27   28  #include <sys/types.h>
  28   29  #include <sys/param.h>
  29   30  #include <sys/varargs.h>
  30   31  #include <sys/systm.h>
  31   32  #include <sys/cmn_err.h>
  32   33  #include <sys/stream.h>
  33   34  #include <sys/strsubr.h>
  34   35  #include <sys/strsun.h>
↓ open down ↓ 203 lines elided ↑ open up ↑
 238  239          log_cons_cache = kmem_cache_create("log_cons_cache",
 239  240              sizeof (struct log), 0, log_cons_constructor, log_cons_destructor,
 240  241              NULL, NULL, NULL, 0);
 241  242  
 242  243          /*
 243  244           * Let the logging begin.
 244  245           */
 245  246          log_update(&log_backlog, log_backlogq, SL_CONSOLE, log_console);
 246  247  
 247  248          /*
 248      -         * Now that logging is enabled, emit the SunOS banner.
      249 +         * Now that logging is enabled, emit the OS banner.
 249  250           */
 250  251          printf("\rSunOS Release %s Version %s %u-bit\n",
 251  252              utsname.release, utsname.version, NBBY * (uint_t)sizeof (void *));
 252  253          printf("Copyright (c) 1983, 2010, Oracle and/or its affiliates. "
 253  254              "All rights reserved.\n");
      255 +        printf("Copyright 2019 Nexenta Systems, Inc.\n");
 254  256  #ifdef DEBUG
 255  257          printf("DEBUG enabled\n");
 256  258  #endif
 257  259  }
 258  260  
 259  261  /*
 260  262   * Allocate a log device corresponding to supplied device type.
 261  263   * Both devices are clonable. /dev/log devices are allocated per zone.
 262  264   * /dev/conslog devices are allocated from kmem cache.
 263  265   */
↓ open down ↓ 502 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX