diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-11-23 20:15:10 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-11-23 20:15:10 +0100 |
commit | 0221cc4264b0516f055efcdd2455ba880b53aa8c (patch) | |
tree | c3cfc3286d6cc34d4ed2fb00abbc0ca2f9383022 /package | |
parent | 9c9d5cb90a86edf1e9dc240bf0f38572f2ab26d6 (diff) | |
parent | 937473821b259ed94969e62daa2ec60f5f2a9ffc (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package')
-rw-r--r-- | package/open-iscsi/Makefile | 33 | ||||
-rw-r--r-- | package/open-iscsi/patches/patch-usr_Makefile | 19 | ||||
-rw-r--r-- | package/open-iscsi/patches/patch-usr_iscsi_sysfs_c | 10 | ||||
-rw-r--r-- | package/open-iscsi/patches/patch-usr_log_h | 17 | ||||
-rw-r--r-- | package/open-iscsi/patches/patch-usr_mgmt_ipc_c | 35 |
5 files changed, 114 insertions, 0 deletions
diff --git a/package/open-iscsi/Makefile b/package/open-iscsi/Makefile new file mode 100644 index 000000000..0194c1d3a --- /dev/null +++ b/package/open-iscsi/Makefile @@ -0,0 +1,33 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= open-iscsi +PKG_VERSION:= 2.0 +PKG_EXTRAVER:= 871 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 0c403e8c9ad41607571ba0e6e8ff196e +PKG_DESCR:= iSCSI utilities +PKG_SECTION:= fs +PKG_URL:= http://www.open-iscsi.org/ +PKG_SITES:= http://www.open-iscsi.org/bits/ + +DISTFILES:= $(PKG_NAME)-$(PKG_VERSION)-$(PKG_EXTRAVER).tar.gz +WRKDIST= ${WRKDIR}/${PKG_NAME}-${PKG_VERSION}-${PKG_EXTRAVER} + +include $(TOPDIR)/mk/package.mk + +ALL_TARGET:= user +INSTALL_TARGET:= install_user + +$(eval $(call PKG_template,OPEN_ISCSI,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIG_STYLE:= manual + +do-install: + $(INSTALL_DIR) $(IDIR_OPEN_ISCSI)/sbin $(IDIR_OPEN_ISCSI)/etc/iscsi + $(INSTALL_BIN) $(WRKINST)/sbin/* $(IDIR_OPEN_ISCSI)/sbin + $(CP) $(WRKINST)/etc/iscsi/* $(IDIR_OPEN_ISCSI)/etc/iscsi + +include ${TOPDIR}/mk/pkg-bottom.mk diff --git a/package/open-iscsi/patches/patch-usr_Makefile b/package/open-iscsi/patches/patch-usr_Makefile new file mode 100644 index 000000000..af7106fd8 --- /dev/null +++ b/package/open-iscsi/patches/patch-usr_Makefile @@ -0,0 +1,19 @@ +--- open-iscsi-2.0-871.orig/usr/Makefile 2009-07-11 05:55:58.000000000 +0200 ++++ open-iscsi-2.0-871/usr/Makefile 2010-11-22 23:23:09.000000000 +0100 +@@ -1,6 +1,6 @@ + # This Makefile will work only with GNU make. + +-OSNAME=$(shell uname -s) ++OSNAME=Linux + + # allow users to override these + # eg to compile for a kernel that you aren't currently running +@@ -55,7 +55,7 @@ iscsiadm: $(COMMON_SRCS) $(FW_BOOT_SRCS) + + iscsistart: $(IPC_OBJ) $(ISCSI_LIB_SRCS) $(INITIATOR_SRCS) $(FW_BOOT_SRCS) \ + iscsistart.o statics.o +- $(CC) $(CFLAGS) -static $^ -o $@ ++ $(CC) $(CFLAGS) $^ -o $@ + clean: + rm -f *.o $(PROGRAMS) .depend $(LIBSYS) + diff --git a/package/open-iscsi/patches/patch-usr_iscsi_sysfs_c b/package/open-iscsi/patches/patch-usr_iscsi_sysfs_c new file mode 100644 index 000000000..42f5d0330 --- /dev/null +++ b/package/open-iscsi/patches/patch-usr_iscsi_sysfs_c @@ -0,0 +1,10 @@ +--- open-iscsi-2.0-871.orig/usr/iscsi_sysfs.c 2009-07-11 05:55:58.000000000 +0200 ++++ open-iscsi-2.0-871/usr/iscsi_sysfs.c 2010-11-22 23:16:35.000000000 +0100 +@@ -22,6 +22,7 @@ + #include <string.h> + #include <errno.h> + #include <dirent.h> ++#include <sys/stat.h> + + #include "log.h" + #include "initiator.h" diff --git a/package/open-iscsi/patches/patch-usr_log_h b/package/open-iscsi/patches/patch-usr_log_h new file mode 100644 index 000000000..f4a5f9431 --- /dev/null +++ b/package/open-iscsi/patches/patch-usr_log_h @@ -0,0 +1,17 @@ +--- open-iscsi-2.0-871.orig/usr/log.h 2009-07-11 05:55:58.000000000 +0200 ++++ open-iscsi-2.0-871/usr/log.h 2010-11-22 22:45:22.000000000 +0100 +@@ -28,14 +28,12 @@ + + #include "iscsid.h" + +-#if defined(Linux) + union semun { + int val; + struct semid_ds *buf; + unsigned short int *array; + struct seminfo *__buf; + }; +-#endif + #include <sys/sem.h> + + #define DEFAULT_AREA_SIZE 16384 diff --git a/package/open-iscsi/patches/patch-usr_mgmt_ipc_c b/package/open-iscsi/patches/patch-usr_mgmt_ipc_c new file mode 100644 index 000000000..bc29bd21b --- /dev/null +++ b/package/open-iscsi/patches/patch-usr_mgmt_ipc_c @@ -0,0 +1,35 @@ +--- open-iscsi-2.0-871.orig/usr/mgmt_ipc.c 2009-07-11 05:55:58.000000000 +0200 ++++ open-iscsi-2.0-871/usr/mgmt_ipc.c 2010-11-22 22:47:25.000000000 +0100 +@@ -341,31 +341,7 @@ mgmt_ipc_notify_del_portal(queue_task_t + static int + mgmt_peeruser(int sock, char *user) + { +-#if defined(SO_PEERCRED) +- /* Linux style: use getsockopt(SO_PEERCRED) */ +- struct ucred peercred; +- socklen_t so_len = sizeof(peercred); +- struct passwd *pass; +- +- errno = 0; +- if (getsockopt(sock, SOL_SOCKET, SO_PEERCRED, &peercred, +- &so_len) != 0 || so_len != sizeof(peercred)) { +- /* We didn't get a valid credentials struct. */ +- log_error("peeruser_unux: error receiving credentials: %m"); +- return 0; +- } +- +- pass = getpwuid(peercred.uid); +- if (pass == NULL) { +- log_error("peeruser_unix: unknown local user with uid %d", +- (int) peercred.uid); +- return 0; +- } +- +- strlcpy(user, pass->pw_name, PEERUSER_MAX); +- return 1; +- +-#elif defined(SCM_CREDS) ++#if defined(SCM_CREDS) + struct msghdr msg; + typedef struct cmsgcred Cred; + #define cruid cmcred_uid |