summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog73
-rw-r--r--etc/systemd/ibft-rule-generator2
-rw-r--r--iscsiuio/src/unix/Makefile.am17
-rw-r--r--libopeniscsiusr/version.h2
-rw-r--r--usr/version.h2
5 files changed, 83 insertions, 13 deletions
diff --git a/Changelog b/Changelog
index 6160f56..984361c 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,76 @@
+-> open-iscsi-2.1.6 - open-iscsi-2.1.7
+
+Lee Duncan (48):
+ Remove HEREIS usage from iscsi-gen-initiatorname
+ Fix iscsi-init.service start time
+ test: Rename README to README.orig
+ test: Add new README, update old README and TODO
+ test: Fix bug/spelling error, cleanup messages
+ test: Fix mispelling of MaxBurst
+ test: fix error with verifying mkfs command
+ test: remove the ".setup" file, used for development
+ test: Cleanup README and TODO
+ test: Track time spent calling subprocesses
+ test: Add suggested test setup info to README
+ test: Add missing verbose print, and track more time values
+ test: Track time spent in sleep() more easily/accurately
+ test: fix message mispelling of "umount"
+ test: add item to TODO list
+ test: further improve test suite time display
+ Remove SUSE init.d startup files
+ Cleanup iscsiadm man page
+ Allow name/value args for firmware logins.
+ Update iscsiadm.8 for firmware name/value pairs
+ General Makefile/README cleanup
+ Clean up Makefile build system.
+ Clean up the usage info for iscsid
+ Remove no-longer-used Makefile target for subdir
+ Make DB and ISCSIHOME directories configurable.
+ Build: Cleanup fwparam_ibft and sysdeps subdirs.
+ Add a README for fwparam_ibft subdirectory.
+ Build: cleanup usr Makefile: remove obj files on "clean"
+ Remove unused fwparam_ibft.[ch] files in fwparam_ibft.
+ Build: upate "depend" target to include sysdeps
+ Fix gcc issues with unused params in fwparam
+ Use DESTDIR correctly for HOMEDIR and DBROOT
+ Be smarter about creating iscsiuio.8 man page
+ Build: remove unused Makefile HOMEDIR creation
+ Build: use upper- vs lower-case variable names correctly
+ Build: libopeniscsiusr install should install docs
+ Remove debug messages from libopeniscsiusr/Makefile
+ Build: cleanup libopeniscsiusr/Makefile
+ Build: add libsystemd CFLAGS for building objects
+ Build: remove redundant definition in utils Makefile
+ Build: add RULESDIR to top-level Makefile
+ Create an systemd iBFT rule generator
+ Build: install systemd generator file with svc files
+ Use kernel initiatorname when setting local iname
+ utils: remove errant spaces in script
+ Check for root in iscsi-gen-initiatorname
+ Make fwparam_ibft build more reliable.
+ Fix ibft-rule-generator shell error
+
+Sam James (5):
+ iscsiuio: don't clobber LDFLAGS in configure.ac
+ iscsiuio: respect LDFLAGS fully
+ Makefiles: respect $(CC) fully (don't hardcode GCC); use $(RM)
+ Makefiles: don't hardcode sed, pkg-config
+ libopeniscsiusr: fix version in installed pkgconfig (.pc) file
+
+Wenchao Hao (5):
+ Add conn_xxx() macros to print connection info in more details
+ Make session and connect log readable and helpful to locate problem
+ mgmt: print connection info when write qtask response failed
+ initiator: return ENOMEM if failed to get ev_context in iscsi_send_logout()
+ initiator:print failure reason of iscsi_send_logout() if failed
+
+ryancaicse (1):
+ Fix a missing-unlocking bug
+
+scaleoutSean (1):
+ Fix minor error string typos
+
+
-> open-iscsi-2.1.5 - open-iscsi-2.1.6
Chris Leech (1):
diff --git a/etc/systemd/ibft-rule-generator b/etc/systemd/ibft-rule-generator
index 038a4c2..a464fd6 100644
--- a/etc/systemd/ibft-rule-generator
+++ b/etc/systemd/ibft-rule-generator
@@ -18,7 +18,7 @@
# so we need to hook in before that.
#
IBFT_RULE_DIR=/run/udev/rules.d
-IBFT_RULES=$(IBFT_RULE_DIR)/79-ibft.rules
+IBFT_RULES=${IBFT_RULE_DIR}/79-ibft.rules
# ensure we have a rules directory and no rules file
if [ -d ${IBFT_RULE_DIR} ] ; then
diff --git a/iscsiuio/src/unix/Makefile.am b/iscsiuio/src/unix/Makefile.am
index 8a94371..4c10711 100644
--- a/iscsiuio/src/unix/Makefile.am
+++ b/iscsiuio/src/unix/Makefile.am
@@ -27,16 +27,13 @@ iscsiuio_CFLAGS = $(AM_CFLAGS) \
$(LIBNL_CFLAGS) \
-DBYTE_ORDER=@ENDIAN@
-iscsiuio_LIBS = $(AM_LIBS) \
- -ldl \
- -rdynamic \
- $(LIBNL_LIBS) \
- -lpthread
-
-iscsiuio_LDADD = $(AM_LDADD) \
- ${top_srcdir}/src/uip/lib_iscsi_uip.a \
- ${top_srcdir}/src/apps/dhcpc/lib_apps_dhcpc.a\
+iscsiuio_LDADD = ${top_srcdir}/src/uip/lib_iscsi_uip.a \
+ ${top_srcdir}/src/apps/dhcpc/lib_apps_dhcpc.a \
${top_srcdir}/src/apps/brcm-iscsi/lib_apps_brcm_iscsi.a \
- ${top_srcdir}/src/unix/libs/lib_iscsiuio_hw_cnic.a
+ ${top_srcdir}/src/unix/libs/lib_iscsiuio_hw_cnic.a \
+ $(AM_LDADD) \
+ -ldl \
+ $(LIBNL_LIBS) \
+ -lpthread
iscsiuio_YFLAGS = -d
diff --git a/libopeniscsiusr/version.h b/libopeniscsiusr/version.h
index 5a7ec53..fa6d502 100644
--- a/libopeniscsiusr/version.h
+++ b/libopeniscsiusr/version.h
@@ -25,6 +25,6 @@
* This may not be the same value as the kernel versions because
* some other maintainer could merge a patch without going through us
*/
-#define ISCSI_VERSION_STR "2.1.6"
+#define ISCSI_VERSION_STR "2.1.7"
#endif /* End of __ISCSI_OPEN_USR_VERSION_H__ */
diff --git a/usr/version.h b/usr/version.h
index cc791cd..4b74514 100644
--- a/usr/version.h
+++ b/usr/version.h
@@ -6,7 +6,7 @@
* This may not be the same value as the kernel versions because
* some other maintainer could merge a patch without going through us
*/
-#define ISCSI_VERSION_STR "2.1.6"
+#define ISCSI_VERSION_STR "2.1.7"
#define ISCSI_VERSION_FILE "/sys/module/scsi_transport_iscsi/version"
#endif