Print this page
11083 support NFS server in zone
Portions contributed by: Dan Kruchinin <dan.kruchinin@nexenta.com>
Portions contributed by: Stepan Zastupov <stepan.zastupov@gmail.com>
Portions contributed by: Joyce McIntosh <joyce.mcintosh@nexenta.com>
Portions contributed by: Mike Zeller <mike@mikezeller.net>
Portions contributed by: Dan McDonald <danmcd@joyent.com>
Portions contributed by: Gordon Ross <gordon.w.ross@gmail.com>
Portions contributed by: Vitaliy Gusev <gusev.vitaliy@gmail.com>
Reviewed by: Rick McNeal <rick.mcneal@nexenta.com>
Reviewed by: Rob Gittins <rob.gittins@nexenta.com>
Reviewed by: Sanjay Nadkarni <sanjay.nadkarni@nexenta.com>
Reviewed by: Jason King <jbk@joyent.com>
Reviewed by: C Fraire <cfraire@me.com>
Change-Id: I22f289d357503f9b48a0bc2482cc4328a6d43d16

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/fs.d/nfs/Makefile
          +++ new/usr/src/cmd/fs.d/nfs/Makefile
↓ open down ↓ 15 lines elided ↑ open up ↑
  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 2009 Sun Microsystems, Inc.  All rights reserved.
  24   24  # Use is subject to license terms.
  25   25  #
       26 +# Copyright 2018 Nexenta Systems, Inc.  All rights reserved.
       27 +#
  26   28  # cmd/fs.d/nfs/Makefile
  27   29  #
  28   30  #  cmd/fs.d/nfs is the directory of all nfs specific commands
  29   31  #  whose executable reside in $(INSDIR1) and $(INSDIR2).
  30   32  #
  31   33  
  32   34  include $(SRC)/Makefile.master
  33   35  
  34   36  SUBDIR1=        exportfs nfsd rquotad \
  35   37                  statd nfsstat mountd dfshares \
  36      -                nfsfind nfs4cbd share tests
       38 +                nfsfind nfs4cbd share tests dtrace
  37   39  
  38   40  # These do "make catalog"
  39   41  SUBDIR2=        clear_locks lockd umount showmount \
  40   42                  mount dfmounts nfslog nfsmapid \
  41   43                  nfsref rp_basic
  42   44  
  43   45  SUBDIR3=        etc svc
  44   46  SUBDIRS=        $(SUBDIR1) $(SUBDIR2) $(SUBDIR3)
  45   47  
  46   48  # for messaging catalog files
  47   49  #
  48   50  POFILES=        $(SUBDIR2:%=%/%.po)
  49   51  POFILE=         nfs.po
  50   52  
  51   53  all:=           TARGET= all
  52   54  install:=       TARGET= install
  53   55  clean:=         TARGET= clean
  54   56  clobber:=       TARGET= clobber
  55      -lint:=          TARGET= lint
  56   57  catalog:=       TARGET= catalog
  57   58  
  58   59  .KEEP_STATE:
  59   60  
  60   61  .PARALLEL:      $(SUBDIRS)
  61   62  
  62      -all install clean clobber lint: $(SUBDIRS)
       63 +all install clean clobber: $(SUBDIRS)
  63   64  
  64   65  catalog: $(SUBDIR2)
  65   66          $(RM) $(POFILE)
  66   67          cat $(POFILES) > $(POFILE)
  67   68  
  68   69  $(SUBDIRS): FRC
  69   70          @cd $@; pwd; $(MAKE) $(TARGET)
  70   71  
  71   72  FRC:
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX