diff options
author | Yuri Pankov <yuri.pankov@nexenta.com> | 2013-03-02 23:56:57 +0400 |
---|---|---|
committer | Gordon Ross <gwr@nexenta.com> | 2013-03-02 22:27:55 -0500 |
commit | df49e4e49391204d49b62e99bfae86101a20c690 (patch) | |
tree | 58f1ac4568b1c391f21d1e760b797e3f5c272ec3 | |
parent | 0689f76c08c5e553ff25ac43a852b56c430bb61e (diff) | |
download | illumos-joyent-df49e4e49391204d49b62e99bfae86101a20c690.tar.gz |
3551 hvm_sd module missing dependencies on scsi and cmlb
Reviewed by: Hans Rosenfeld <hans.rosenfeld@nexenta.com>
Reviewed by: Albert Lee <trisk@nexenta.com>
Reviewed by: Richard Lowe <richlowe@richlowe.net>
Approved by: Gordon Ross <gwr@nexenta.com>
-rw-r--r-- | usr/src/uts/i86pc/i86hvm/hvm_sd/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr/src/uts/i86pc/i86hvm/hvm_sd/Makefile b/usr/src/uts/i86pc/i86hvm/hvm_sd/Makefile index 681f4849ae..aba7418b0a 100644 --- a/usr/src/uts/i86pc/i86hvm/hvm_sd/Makefile +++ b/usr/src/uts/i86pc/i86hvm/hvm_sd/Makefile @@ -38,7 +38,7 @@ UTSBASE = ../../.. # Define the module and object file sets. # # Normally when compiling sd there are .conf file definitions and -# definitions for warlock, but we don't both with those here. +# definitions for warlock, but we don't bother with those here. # MODULE = hvm_sd OBJECTS = $(HVM_SD_OBJS:%=$(OBJS_DIR)/%) @@ -78,6 +78,11 @@ CERRWARN += -_gcc=-Wno-uninitialized CERRWARN += -_gcc=-Wno-unused-value # +# Depends on scsi and cmlb +# +LDFLAGS += -dy -N misc/scsi -N misc/cmlb + +# # Default build targets. # .KEEP_STATE: |