Print this page
OS-3517 lx brand: branded zones don't interpret .interp section

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/brand/solaris10/s10_brand.h
          +++ new/usr/src/uts/common/brand/solaris10/s10_brand.h
↓ 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, OmniTI Computer Consulting, Inc. All rights reserved.
  24   24   * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
       25 + * Copyright (c) 2014, Joyent, Inc. All rights reserved.
  25   26   */
  26   27  
  27   28  #ifndef _S10_BRAND_H
  28   29  #define _S10_BRAND_H
  29   30  
  30   31  #ifdef  __cplusplus
  31   32  extern "C" {
  32   33  #endif
  33   34  
  34   35  #include <sys/brand.h>
  35   36  
  36   37  #define S10_BRANDNAME           "solaris10"
  37   38  
  38   39  #define S10_VERSION_1           1
  39   40  #define S10_VERSION             S10_VERSION_1
  40   41  
  41   42  #define S10_LIB_NAME            "s10_brand.so.1"
  42   43  #define S10_LINKER_NAME         "ld.so.1"
  43   44  
  44   45  #define S10_LIB32               BRAND_NATIVE_DIR "usr/lib/" S10_LIB_NAME
  45      -#define S10_LINKER32            "/lib/" S10_LINKER_NAME
  46      -
  47   46  #define S10_LIB64               BRAND_NATIVE_DIR "usr/lib/64/" S10_LIB_NAME
  48      -#define S10_LINKER64            "/lib/64/" S10_LINKER_NAME
  49   47  
  50   48  #if defined(_LP64)
  51   49  #define S10_LIB         S10_LIB64
  52      -#define S10_LINKER      S10_LINKER64
  53   50  #else /* !_LP64 */
  54   51  #define S10_LIB         S10_LIB32
  55      -#define S10_LINKER      S10_LINKER32
  56   52  #endif /* !_LP64 */
  57   53  
  58   54  /*
  59   55   * Solaris 10 value of _SIGRTMIN, _SIGRTMAX, MAXSIG, NSIG
  60   56   */
  61   57  #define S10_SIGRTMIN    41
  62   58  #define S10_SIGRTMAX    48
  63   59  #define S10_MAXSIG      48
  64   60  #define S10_NSIG        49
  65   61  
↓ open down ↓ 144 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX