Print this page
    
6064 ixgbe needs X550 support
Reviewed by: Tycho Nightingale <tycho.nightingale@pluribusnetworks.com>
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Dan McDonald <danmcd@omniti.com>
    
      
        | Split | 
	Close | 
      
      | Expand all | 
      | Collapse all | 
    
    
          --- old/usr/src/uts/intel/ixgbe/Makefile
          +++ new/usr/src/uts/intel/ixgbe/Makefile
   1    1  #
   2    2  # CDDL HEADER START
   3    3  #
   4    4  # The contents of this file are subject to the terms of the
   5    5  # Common Development and Distribution License (the "License").
   6    6  # You may not use this file except in compliance with the License.
   7    7  #
   8    8  # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9    9  # or http://www.opensolaris.org/os/licensing.
  10   10  # See the License for the specific language governing permissions
  11   11  # and limitations under the License.
  12   12  #
  13   13  # When distributing Covered Code, include this CDDL HEADER in each
  
    | 
      ↓ open down ↓ | 
    13 lines elided | 
    
      ↑ open up ↑ | 
  
  14   14  # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  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  # Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
  23   23  # Use is subject to license terms.
       24 +# Copyright 2016 OmniTI Computer Consulting, Inc.  All rights reserved.
  24   25  #
  25   26  # uts/intel/ixgbe/Makefile
  26   27  #
  27   28  #       This makefile drives the production of the ixgbe
  28   29  #       network driver kernel module.
  29   30  #
  30   31  #       intel architecture dependent
  31   32  #
  32   33  
  33   34  #
  34   35  #       Paths to the base of the uts directory trees
  35   36  #
  36   37  UTSBASE = ../..
  37   38  
  38   39  #
  39   40  #       Define the module and object file sets.
  40   41  #
  41   42  MODULE          = ixgbe
  42   43  OBJECTS         = $(IXGBE_OBJS:%=$(OBJS_DIR)/%)
       44 +OBJECTS         += $(IXGBE_INTC_OBJS:%=$(OBJS_DIR)/%)
  43   45  LINTS           = $(IXGBE_OBJS:%.o=$(LINTS_DIR)/%.ln)
  44   46  ROOTMODULE      = $(ROOT_DRV_DIR)/$(MODULE)
  45   47  CONF_SRCDIR     = $(UTSBASE)/common/io/ixgbe
  46   48  
  47   49  #
  48   50  #       Include common rules.
  49   51  #
  50   52  include $(UTSBASE)/intel/Makefile.intel
  51   53  
  52   54  INC_PATH        += -I$(UTSBASE)/common/io/ixgbe
  53   55  INC_PATH        += -I$(UTSBASE)/common/io/ixgbe/core
  54   56  
  55   57  CERRWARN        += -_gcc=-Wno-parentheses
  56   58  CERRWARN        += -_gcc=-Wno-switch
  57   59  CERRWARN        += -_gcc=-Wno-uninitialized
       60 +CERRWARN        += -_gcc=-Wno-unused-value
  58   61  
  59   62  #
  60   63  #       Define targets
  61   64  #
  62   65  ALL_TARGET      = $(BINARY) $(CONFMOD)
  63   66  LINT_TARGET     = $(MODULE).lint
  64   67  INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
  65   68  
  66   69  #
  67   70  # Driver depends on MAC
  68   71  #
  69   72  LDFLAGS         += -dy -N misc/mac
  70   73  
  71   74  #
  72   75  #       Default build targets.
  73   76  #
  74   77  .KEEP_STATE:
  75   78  
  76   79  def:            $(DEF_DEPS)
  77   80  
  78   81  all:            $(ALL_DEPS)
  79   82  
  80   83  clean:          $(CLEAN_DEPS)
  81   84  
  82   85  clobber:        $(CLOBBER_DEPS)
  83   86  
  84   87  lint:           $(LINT_DEPS)
  85   88  
  86   89  modlintlib:     $(MODLINTLIB_DEPS)
  87   90  
  88   91  clean.lint:     $(CLEAN_LINT_DEPS)
  89   92  
  90   93  install:        $(INSTALL_DEPS)
  91   94  
  92   95  #
  93   96  #       Include common targets.
  94   97  #
  95   98  include $(UTSBASE)/intel/Makefile.targ
  
    | 
      ↓ open down ↓ | 
    28 lines elided | 
    
      ↑ open up ↑ | 
  
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX