Print this page
4185 New hash algorithm support

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/intel/zfs/Makefile
          +++ new/usr/src/uts/intel/zfs/Makefile
↓ open down ↓ 16 lines elided ↑ open up ↑
  17   17  # information: Portions Copyright [yyyy] [name of copyright owner]
  18   18  #
  19   19  # CDDL HEADER END
  20   20  #
  21   21  #
  22   22  # Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
  23   23  # Use is subject to license terms.
  24   24  #
  25   25  #       This makefile drives the production of the zfs file system
  26   26  #       kernel module.
       27 +#
       28 +# Copyright 2013 Saso Kiselkov. All rights reserved.
       29 +#
  27   30  
  28   31  #
  29   32  #       Path to the base of the uts directory tree (usually /usr/src/uts).
  30   33  #
  31   34  UTSBASE = ../..
  32   35  
  33   36  ARCHDIR:sh = cd ..; basename `pwd`
  34   37  
  35   38  #
  36   39  #       Define the module and object file sets.
↓ open down ↓ 14 lines elided ↑ open up ↑
  51   54  #       Define targets
  52   55  #
  53   56  ALL_TARGET      = $(BINARY) $(SRC_CONFILE)
  54   57  LINT_TARGET     = $(MODULE).lint
  55   58  INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOTLINK) $(ROOT_CONFFILE)
  56   59  
  57   60  #
  58   61  #       Overrides and depends_on
  59   62  #
  60   63  MODSTUBS_DIR     = $(OBJS_DIR)
  61      -LDFLAGS         += -dy -Nfs/specfs -Ncrypto/swrand -Nmisc/idmap -Nmisc/sha2
       64 +LDFLAGS         += -dy -Nfs/specfs -Ncrypto/swrand -Nmisc/idmap -Nmisc/sha2 \
       65 +        -Nmisc/skein -Nmisc/edonr
  62   66  
  63   67  INC_PATH        += -I$(UTSBASE)/common/fs/zfs
  64   68  INC_PATH        += -I$(SRC)/common
  65   69  INC_PATH        += -I$(COMMONBASE)/zfs
  66   70  
  67   71  C99MODE=        -xc99=%all
  68   72  C99LMODE=       -Xc99=%all
  69   73  
  70   74  #
  71   75  # For now, disable these lint checks; maintainers should endeavor
↓ open down ↓ 45 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX