mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-25 19:56:43 +00:00
Merge pull request #375 from ackalker/initramfs-iscsi-support
initramfs init: add support for iSCSI mounts, this fixes #269
This commit is contained in:
commit
d98af29041
@ -34,3 +34,7 @@ PKG_LONGDESC="debug is a Metapackage for installing initramfs"
|
|||||||
PKG_IS_ADDON="no"
|
PKG_IS_ADDON="no"
|
||||||
|
|
||||||
PKG_AUTORECONF="no"
|
PKG_AUTORECONF="no"
|
||||||
|
|
||||||
|
if [ "$ISCSI_SUPPORT" = yes ]; then
|
||||||
|
PKG_DEPENDS="$PKG_DEPENDS open-iscsi"
|
||||||
|
fi
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
# This file is part of OpenELEC - http://www.openelec.tv
|
# This file is part of OpenELEC - http://www.openelec.tv
|
||||||
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
||||||
# Copyright (C) 2010-2011 Roman Weber (roman@openelec.tv)
|
# Copyright (C) 2010-2011 Roman Weber (roman@openelec.tv)
|
||||||
|
# Copyright (C) 2012 Yann Cézard (eesprit@free.fr)
|
||||||
#
|
#
|
||||||
# This Program is free software; you can redistribute it and/or modify
|
# This Program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -144,6 +145,72 @@ NBD_DEVS="0"
|
|||||||
mount_common "$CIFS_SHARE" "$2" "$3,$CIFS_OPTIONS" "cifs"
|
mount_common "$CIFS_SHARE" "$2" "$3,$CIFS_OPTIONS" "cifs"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get_iscsistart_options() {
|
||||||
|
# Convert kernel commandline ISCSI= options to iscsistart options
|
||||||
|
IFS_SAVE="$IFS"
|
||||||
|
IFS=,
|
||||||
|
|
||||||
|
for arg in $1; do
|
||||||
|
val="${arg#*=}"
|
||||||
|
case "$arg" in
|
||||||
|
iscsi_initiator=*)
|
||||||
|
option="-i"
|
||||||
|
;;
|
||||||
|
iscsi_target_name=*)
|
||||||
|
option="-t"
|
||||||
|
;;
|
||||||
|
iscsi_target_ip=*)
|
||||||
|
option="-a"
|
||||||
|
;;
|
||||||
|
iscsi_target_port=*)
|
||||||
|
option="-p"
|
||||||
|
;;
|
||||||
|
iscsi_target_group=*)
|
||||||
|
option="-g"
|
||||||
|
;;
|
||||||
|
iscsi_username=*)
|
||||||
|
option="-u"
|
||||||
|
;;
|
||||||
|
iscsi_password=*)
|
||||||
|
option="-w"
|
||||||
|
;;
|
||||||
|
iscsi_in_username=*)
|
||||||
|
option="-U"
|
||||||
|
;;
|
||||||
|
iscsi_in_password=*)
|
||||||
|
option="-W"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
echo "$option $val"
|
||||||
|
done
|
||||||
|
|
||||||
|
IFS="$IFS_SAVE"
|
||||||
|
}
|
||||||
|
|
||||||
|
mount_iscsi() {
|
||||||
|
# Mount iSCSI target
|
||||||
|
ISCSI_DEV="${1##*,}"
|
||||||
|
ISCSI_OPTIONS="${1%,*}"
|
||||||
|
|
||||||
|
if [ ! -f "/sbin/iscsistart" ]; then
|
||||||
|
error "iscsistart" "iSCSI support not available"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$ISCSI_OPTIONS" = "auto" ]; then
|
||||||
|
progress "Network configuration based on iBFT"
|
||||||
|
/sbin/iscsistart -N >&$SILENT_OUT 2>&1 || \
|
||||||
|
error "iscsistart" "Unable to configure network"
|
||||||
|
progress "iSCSI auto connect based on iBFT"
|
||||||
|
/sbin/iscsistart -b >&$SILENT_OUT 2>&1 || \
|
||||||
|
error "iscsistart" "Unable to auto connect"
|
||||||
|
else
|
||||||
|
/sbin/iscsistart $(get_iscsistart_options "$ISCSI_OPTIONS") >&$SILENT_OUT 2>&1 || \
|
||||||
|
error "iscsistart" "Unable to connect to ISCSI target"
|
||||||
|
fi
|
||||||
|
|
||||||
|
mount_common "$ISCSI_DEV" "$2" "$3" "$4"
|
||||||
|
}
|
||||||
|
|
||||||
mount_nbd() {
|
mount_nbd() {
|
||||||
# Mount NBD device
|
# Mount NBD device
|
||||||
NBD_SERVER="${1%%:*}"
|
NBD_SERVER="${1%%:*}"
|
||||||
@ -182,6 +249,9 @@ NBD_DEVS="0"
|
|||||||
CIFS=*|SMB=*)
|
CIFS=*|SMB=*)
|
||||||
MOUNT_CMD="mount_cifs"
|
MOUNT_CMD="mount_cifs"
|
||||||
;;
|
;;
|
||||||
|
ISCSI=*)
|
||||||
|
MOUNT_CMD="mount_iscsi"
|
||||||
|
;;
|
||||||
NBD=*)
|
NBD=*)
|
||||||
MOUNT_CMD="mount_nbd"
|
MOUNT_CMD="mount_nbd"
|
||||||
;;
|
;;
|
||||||
|
31
packages/initramfs/sysutils/open-iscsi/build
Executable file
31
packages/initramfs/sysutils/open-iscsi/build
Executable file
@ -0,0 +1,31 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# This file is part of OpenELEC - http://www.openelec.tv
|
||||||
|
# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
|
||||||
|
# Copyright (C) 2012 Yann Cézard (eesprit@free.fr)
|
||||||
|
#
|
||||||
|
# This Program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
#
|
||||||
|
# This Program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
||||||
|
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
. config/options $1
|
||||||
|
|
||||||
|
cd $PKG_BUILD/utils/open-isns
|
||||||
|
./configure CFLAGS="$(OPTFLAGS)" --with-security=no \
|
||||||
|
--host=$TARGET_NAME \
|
||||||
|
--build=$HOST_NAME
|
||||||
|
cd ../..
|
||||||
|
make user
|
29
packages/initramfs/sysutils/open-iscsi/install
Executable file
29
packages/initramfs/sysutils/open-iscsi/install
Executable file
@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
################################################################################
|
||||||
|
# This file is part of OpenELEC - http://www.openelec.tv
|
||||||
|
# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
|
||||||
|
# Copyright (C) 2012 Yann Cézard (eesprit@free.fr)
|
||||||
|
#
|
||||||
|
# This Program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
#
|
||||||
|
# This Program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
||||||
|
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
. config/options $1
|
||||||
|
|
||||||
|
OPEN_ISCSI_DIR="$BUILD/open-iscsi-$PKG_VERSION"
|
||||||
|
|
||||||
|
mkdir -p $INSTALL/sbin
|
||||||
|
cp -P $OPEN_ISCSI_DIR/usr/iscsistart $INSTALL/sbin
|
37
packages/initramfs/sysutils/open-iscsi/meta
Normal file
37
packages/initramfs/sysutils/open-iscsi/meta
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
################################################################################
|
||||||
|
# This file is part of OpenELEC - http://www.openelec.tv
|
||||||
|
# Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
|
||||||
|
# Copyright (C) 2012 Yann Cézard (eesprit@free.fr)
|
||||||
|
#
|
||||||
|
# This Program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
#
|
||||||
|
# This Program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
||||||
|
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
PKG_NAME="open-iscsi"
|
||||||
|
PKG_VERSION="f9f627f"
|
||||||
|
PKG_REV="1"
|
||||||
|
PKG_ARCH="any"
|
||||||
|
PKG_LICENSE="GPL"
|
||||||
|
PKG_SITE="http://eesprit.free.fr"
|
||||||
|
PKG_URL="$PKG_SITE/openelec.tv/bits/$PKG_NAME-$PKG_VERSION.tar.xz"
|
||||||
|
PKG_DEPENDS=""
|
||||||
|
PKG_BUILD_DEPENDS="toolchain util-linux"
|
||||||
|
PKG_PRIORITY="optional"
|
||||||
|
PKG_SECTION="initramfs/system"
|
||||||
|
PKG_SHORTDESC="open-iscsi: system utilities for Linux to access iSCSI targets"
|
||||||
|
PKG_LONGDESC="The open-iscsi package allows you to mount iSCSI targets. This package add support for using iscsi target as root device."
|
||||||
|
PKG_IS_ADDON="no"
|
||||||
|
|
||||||
|
PKG_AUTORECONF="no"
|
@ -0,0 +1,11 @@
|
|||||||
|
--- a/usr/Makefile 2011-08-05 11:54:52.000000000 +0200
|
||||||
|
+++ b/usr/Makefile 2011-08-05 11:55:06.000000000 +0200
|
||||||
|
@@ -63,7 +63,7 @@
|
||||||
|
|
||||||
|
iscsistart: $(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)
|
||||||
|
|
@ -218,7 +218,7 @@ CONFIG_STOP_MACHINE=y
|
|||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
CONFIG_LBDAF=y
|
CONFIG_LBDAF=y
|
||||||
CONFIG_BLK_DEV_BSG=y
|
CONFIG_BLK_DEV_BSG=y
|
||||||
# CONFIG_BLK_DEV_BSGLIB is not set
|
CONFIG_BLK_DEV_BSGLIB=y
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
# CONFIG_BLK_DEV_THROTTLING is not set
|
# CONFIG_BLK_DEV_THROTTLING is not set
|
||||||
|
|
||||||
@ -844,11 +844,67 @@ CONFIG_SCSI_WAIT_SCAN=m
|
|||||||
#
|
#
|
||||||
# CONFIG_SCSI_SPI_ATTRS is not set
|
# CONFIG_SCSI_SPI_ATTRS is not set
|
||||||
# CONFIG_SCSI_FC_ATTRS is not set
|
# CONFIG_SCSI_FC_ATTRS is not set
|
||||||
# CONFIG_SCSI_ISCSI_ATTRS is not set
|
CONFIG_SCSI_ISCSI_ATTRS=y
|
||||||
# CONFIG_SCSI_SAS_ATTRS is not set
|
# CONFIG_SCSI_SAS_ATTRS is not set
|
||||||
# CONFIG_SCSI_SAS_LIBSAS is not set
|
# CONFIG_SCSI_SAS_LIBSAS is not set
|
||||||
# CONFIG_SCSI_SRP_ATTRS is not set
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
CONFIG_SCSI_LOWLEVEL=y
|
||||||
|
CONFIG_ISCSI_TCP=y
|
||||||
|
CONFIG_ISCSI_BOOT_SYSFS=y
|
||||||
|
# CONFIG_SCSI_CXGB3_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_CXGB4_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2X_FCOE is not set
|
||||||
|
# CONFIG_BE2ISCSI is not set
|
||||||
|
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
|
||||||
|
# CONFIG_SCSI_HPSA is not set
|
||||||
|
# CONFIG_SCSI_3W_9XXX is not set
|
||||||
|
# CONFIG_SCSI_3W_SAS is not set
|
||||||
|
# CONFIG_SCSI_ACARD is not set
|
||||||
|
# CONFIG_SCSI_AACRAID is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX_OLD is not set
|
||||||
|
# CONFIG_SCSI_AIC79XX is not set
|
||||||
|
# CONFIG_SCSI_AIC94XX is not set
|
||||||
|
# CONFIG_SCSI_MVSAS is not set
|
||||||
|
# CONFIG_SCSI_MVUMI is not set
|
||||||
|
# CONFIG_SCSI_DPT_I2O is not set
|
||||||
|
# CONFIG_SCSI_ADVANSYS is not set
|
||||||
|
# CONFIG_SCSI_ARCMSR is not set
|
||||||
|
# CONFIG_MEGARAID_NEWGEN is not set
|
||||||
|
# CONFIG_MEGARAID_LEGACY is not set
|
||||||
|
# CONFIG_MEGARAID_SAS is not set
|
||||||
|
# CONFIG_SCSI_MPT2SAS is not set
|
||||||
|
# CONFIG_SCSI_HPTIOP is not set
|
||||||
|
# CONFIG_SCSI_BUSLOGIC is not set
|
||||||
|
# CONFIG_VMWARE_PVSCSI is not set
|
||||||
|
# CONFIG_LIBFC is not set
|
||||||
|
# CONFIG_LIBFCOE is not set
|
||||||
|
# CONFIG_FCOE is not set
|
||||||
|
# CONFIG_FCOE_FNIC is not set
|
||||||
|
# CONFIG_SCSI_DMX3191D is not set
|
||||||
|
# CONFIG_SCSI_EATA is not set
|
||||||
|
# CONFIG_SCSI_FUTURE_DOMAIN is not set
|
||||||
|
# CONFIG_SCSI_GDTH is not set
|
||||||
|
# CONFIG_SCSI_ISCI is not set
|
||||||
|
# CONFIG_SCSI_IPS is not set
|
||||||
|
# CONFIG_SCSI_INITIO is not set
|
||||||
|
# CONFIG_SCSI_INIA100 is not set
|
||||||
|
# CONFIG_SCSI_STEX is not set
|
||||||
|
# CONFIG_SCSI_SYM53C8XX_2 is not set
|
||||||
|
# CONFIG_SCSI_IPR is not set
|
||||||
|
# CONFIG_SCSI_QLOGIC_1280 is not set
|
||||||
|
# CONFIG_SCSI_QLA_FC is not set
|
||||||
|
# CONFIG_SCSI_QLA_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_LPFC is not set
|
||||||
|
# CONFIG_SCSI_DC395x is not set
|
||||||
|
# CONFIG_SCSI_DC390T is not set
|
||||||
|
# CONFIG_SCSI_NSP32 is not set
|
||||||
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
|
# CONFIG_SCSI_PMCRAID is not set
|
||||||
|
# CONFIG_SCSI_PM8001 is not set
|
||||||
|
# CONFIG_SCSI_SRP is not set
|
||||||
|
# CONFIG_SCSI_BFA_FC is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
@ -2507,7 +2563,8 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
# CONFIG_DMI_SYSFS is not set
|
||||||
# CONFIG_ISCSI_IBFT_FIND is not set
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_SIGMA is not set
|
# CONFIG_SIGMA is not set
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
|
||||||
@ -2890,7 +2947,7 @@ CONFIG_CRYPTO_HMAC=y
|
|||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
CONFIG_CRYPTO_CRC32C=y
|
||||||
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
||||||
# CONFIG_CRYPTO_GHASH is not set
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
CONFIG_CRYPTO_MD4=y
|
CONFIG_CRYPTO_MD4=y
|
||||||
|
@ -257,6 +257,9 @@
|
|||||||
|
|
||||||
# build and install CEC adapter support (yes / no)
|
# build and install CEC adapter support (yes / no)
|
||||||
CEC_SUPPORT="yes"
|
CEC_SUPPORT="yes"
|
||||||
|
|
||||||
|
# build and install iSCSI support - iscsistart (yes / no)
|
||||||
|
ISCSI_SUPPORT="yes"
|
||||||
|
|
||||||
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
||||||
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
||||||
|
@ -219,7 +219,7 @@ CONFIG_STOP_MACHINE=y
|
|||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
CONFIG_LBDAF=y
|
CONFIG_LBDAF=y
|
||||||
CONFIG_BLK_DEV_BSG=y
|
CONFIG_BLK_DEV_BSG=y
|
||||||
# CONFIG_BLK_DEV_BSGLIB is not set
|
CONFIG_BLK_DEV_BSGLIB=y
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -891,11 +891,67 @@ CONFIG_SCSI_WAIT_SCAN=m
|
|||||||
#
|
#
|
||||||
# CONFIG_SCSI_SPI_ATTRS is not set
|
# CONFIG_SCSI_SPI_ATTRS is not set
|
||||||
# CONFIG_SCSI_FC_ATTRS is not set
|
# CONFIG_SCSI_FC_ATTRS is not set
|
||||||
# CONFIG_SCSI_ISCSI_ATTRS is not set
|
CONFIG_SCSI_ISCSI_ATTRS=y
|
||||||
# CONFIG_SCSI_SAS_ATTRS is not set
|
# CONFIG_SCSI_SAS_ATTRS is not set
|
||||||
# CONFIG_SCSI_SAS_LIBSAS is not set
|
# CONFIG_SCSI_SAS_LIBSAS is not set
|
||||||
# CONFIG_SCSI_SRP_ATTRS is not set
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
CONFIG_SCSI_LOWLEVEL=y
|
||||||
|
CONFIG_ISCSI_TCP=y
|
||||||
|
CONFIG_ISCSI_BOOT_SYSFS=y
|
||||||
|
# CONFIG_SCSI_CXGB3_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_CXGB4_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2X_FCOE is not set
|
||||||
|
# CONFIG_BE2ISCSI is not set
|
||||||
|
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
|
||||||
|
# CONFIG_SCSI_HPSA is not set
|
||||||
|
# CONFIG_SCSI_3W_9XXX is not set
|
||||||
|
# CONFIG_SCSI_3W_SAS is not set
|
||||||
|
# CONFIG_SCSI_ACARD is not set
|
||||||
|
# CONFIG_SCSI_AACRAID is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX_OLD is not set
|
||||||
|
# CONFIG_SCSI_AIC79XX is not set
|
||||||
|
# CONFIG_SCSI_AIC94XX is not set
|
||||||
|
# CONFIG_SCSI_MVSAS is not set
|
||||||
|
# CONFIG_SCSI_MVUMI is not set
|
||||||
|
# CONFIG_SCSI_DPT_I2O is not set
|
||||||
|
# CONFIG_SCSI_ADVANSYS is not set
|
||||||
|
# CONFIG_SCSI_ARCMSR is not set
|
||||||
|
# CONFIG_MEGARAID_NEWGEN is not set
|
||||||
|
# CONFIG_MEGARAID_LEGACY is not set
|
||||||
|
# CONFIG_MEGARAID_SAS is not set
|
||||||
|
# CONFIG_SCSI_MPT2SAS is not set
|
||||||
|
# CONFIG_SCSI_HPTIOP is not set
|
||||||
|
# CONFIG_SCSI_BUSLOGIC is not set
|
||||||
|
# CONFIG_VMWARE_PVSCSI is not set
|
||||||
|
# CONFIG_LIBFC is not set
|
||||||
|
# CONFIG_LIBFCOE is not set
|
||||||
|
# CONFIG_FCOE is not set
|
||||||
|
# CONFIG_FCOE_FNIC is not set
|
||||||
|
# CONFIG_SCSI_DMX3191D is not set
|
||||||
|
# CONFIG_SCSI_EATA is not set
|
||||||
|
# CONFIG_SCSI_FUTURE_DOMAIN is not set
|
||||||
|
# CONFIG_SCSI_GDTH is not set
|
||||||
|
# CONFIG_SCSI_ISCI is not set
|
||||||
|
# CONFIG_SCSI_IPS is not set
|
||||||
|
# CONFIG_SCSI_INITIO is not set
|
||||||
|
# CONFIG_SCSI_INIA100 is not set
|
||||||
|
# CONFIG_SCSI_STEX is not set
|
||||||
|
# CONFIG_SCSI_SYM53C8XX_2 is not set
|
||||||
|
# CONFIG_SCSI_IPR is not set
|
||||||
|
# CONFIG_SCSI_QLOGIC_1280 is not set
|
||||||
|
# CONFIG_SCSI_QLA_FC is not set
|
||||||
|
# CONFIG_SCSI_QLA_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_LPFC is not set
|
||||||
|
# CONFIG_SCSI_DC395x is not set
|
||||||
|
# CONFIG_SCSI_DC390T is not set
|
||||||
|
# CONFIG_SCSI_NSP32 is not set
|
||||||
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
|
# CONFIG_SCSI_PMCRAID is not set
|
||||||
|
# CONFIG_SCSI_PM8001 is not set
|
||||||
|
# CONFIG_SCSI_SRP is not set
|
||||||
|
# CONFIG_SCSI_BFA_FC is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
@ -2818,7 +2874,8 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
# CONFIG_DMI_SYSFS is not set
|
||||||
# CONFIG_ISCSI_IBFT_FIND is not set
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_SIGMA is not set
|
# CONFIG_SIGMA is not set
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
|
||||||
@ -3202,7 +3259,7 @@ CONFIG_CRYPTO_HMAC=y
|
|||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
CONFIG_CRYPTO_CRC32C=y
|
||||||
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
||||||
# CONFIG_CRYPTO_GHASH is not set
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
CONFIG_CRYPTO_MD4=y
|
CONFIG_CRYPTO_MD4=y
|
||||||
|
@ -220,7 +220,7 @@ CONFIG_MODULE_UNLOAD=y
|
|||||||
CONFIG_STOP_MACHINE=y
|
CONFIG_STOP_MACHINE=y
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
CONFIG_BLK_DEV_BSG=y
|
CONFIG_BLK_DEV_BSG=y
|
||||||
# CONFIG_BLK_DEV_BSGLIB is not set
|
CONFIG_BLK_DEV_BSGLIB=y
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
CONFIG_BLOCK_COMPAT=y
|
CONFIG_BLOCK_COMPAT=y
|
||||||
|
|
||||||
@ -851,11 +851,66 @@ CONFIG_SCSI_WAIT_SCAN=m
|
|||||||
#
|
#
|
||||||
# CONFIG_SCSI_SPI_ATTRS is not set
|
# CONFIG_SCSI_SPI_ATTRS is not set
|
||||||
# CONFIG_SCSI_FC_ATTRS is not set
|
# CONFIG_SCSI_FC_ATTRS is not set
|
||||||
# CONFIG_SCSI_ISCSI_ATTRS is not set
|
CONFIG_SCSI_ISCSI_ATTRS=y
|
||||||
# CONFIG_SCSI_SAS_ATTRS is not set
|
# CONFIG_SCSI_SAS_ATTRS is not set
|
||||||
# CONFIG_SCSI_SAS_LIBSAS is not set
|
# CONFIG_SCSI_SAS_LIBSAS is not set
|
||||||
# CONFIG_SCSI_SRP_ATTRS is not set
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
CONFIG_SCSI_LOWLEVEL=y
|
||||||
|
CONFIG_ISCSI_TCP=y
|
||||||
|
CONFIG_ISCSI_BOOT_SYSFS=y
|
||||||
|
# CONFIG_SCSI_CXGB3_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_CXGB4_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2X_FCOE is not set
|
||||||
|
# CONFIG_BE2ISCSI is not set
|
||||||
|
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
|
||||||
|
# CONFIG_SCSI_HPSA is not set
|
||||||
|
# CONFIG_SCSI_3W_9XXX is not set
|
||||||
|
# CONFIG_SCSI_3W_SAS is not set
|
||||||
|
# CONFIG_SCSI_ACARD is not set
|
||||||
|
# CONFIG_SCSI_AACRAID is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX_OLD is not set
|
||||||
|
# CONFIG_SCSI_AIC79XX is not set
|
||||||
|
# CONFIG_SCSI_AIC94XX is not set
|
||||||
|
# CONFIG_SCSI_MVSAS is not set
|
||||||
|
# CONFIG_SCSI_MVUMI is not set
|
||||||
|
# CONFIG_SCSI_DPT_I2O is not set
|
||||||
|
# CONFIG_SCSI_ADVANSYS is not set
|
||||||
|
# CONFIG_SCSI_ARCMSR is not set
|
||||||
|
# CONFIG_MEGARAID_NEWGEN is not set
|
||||||
|
# CONFIG_MEGARAID_LEGACY is not set
|
||||||
|
# CONFIG_MEGARAID_SAS is not set
|
||||||
|
# CONFIG_SCSI_MPT2SAS is not set
|
||||||
|
# CONFIG_SCSI_HPTIOP is not set
|
||||||
|
# CONFIG_SCSI_BUSLOGIC is not set
|
||||||
|
# CONFIG_VMWARE_PVSCSI is not set
|
||||||
|
# CONFIG_LIBFC is not set
|
||||||
|
# CONFIG_LIBFCOE is not set
|
||||||
|
# CONFIG_FCOE is not set
|
||||||
|
# CONFIG_FCOE_FNIC is not set
|
||||||
|
# CONFIG_SCSI_DMX3191D is not set
|
||||||
|
# CONFIG_SCSI_EATA is not set
|
||||||
|
# CONFIG_SCSI_FUTURE_DOMAIN is not set
|
||||||
|
# CONFIG_SCSI_GDTH is not set
|
||||||
|
# CONFIG_SCSI_ISCI is not set
|
||||||
|
# CONFIG_SCSI_IPS is not set
|
||||||
|
# CONFIG_SCSI_INITIO is not set
|
||||||
|
# CONFIG_SCSI_INIA100 is not set
|
||||||
|
# CONFIG_SCSI_STEX is not set
|
||||||
|
# CONFIG_SCSI_SYM53C8XX_2 is not set
|
||||||
|
# CONFIG_SCSI_IPR is not set
|
||||||
|
# CONFIG_SCSI_QLOGIC_1280 is not set
|
||||||
|
# CONFIG_SCSI_QLA_FC is not set
|
||||||
|
# CONFIG_SCSI_QLA_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_LPFC is not set
|
||||||
|
# CONFIG_SCSI_DC395x is not set
|
||||||
|
# CONFIG_SCSI_DC390T is not set
|
||||||
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
|
# CONFIG_SCSI_PMCRAID is not set
|
||||||
|
# CONFIG_SCSI_PM8001 is not set
|
||||||
|
# CONFIG_SCSI_SRP is not set
|
||||||
|
# CONFIG_SCSI_BFA_FC is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
@ -2764,7 +2819,8 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
# CONFIG_DMI_SYSFS is not set
|
||||||
# CONFIG_ISCSI_IBFT_FIND is not set
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_SIGMA is not set
|
# CONFIG_SIGMA is not set
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
|
||||||
@ -3147,7 +3203,7 @@ CONFIG_CRYPTO_HMAC=y
|
|||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
CONFIG_CRYPTO_CRC32C=y
|
||||||
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
||||||
# CONFIG_CRYPTO_GHASH is not set
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
CONFIG_CRYPTO_MD4=y
|
CONFIG_CRYPTO_MD4=y
|
||||||
|
@ -257,6 +257,9 @@
|
|||||||
|
|
||||||
# build and install CEC adapter support (yes / no)
|
# build and install CEC adapter support (yes / no)
|
||||||
CEC_SUPPORT="yes"
|
CEC_SUPPORT="yes"
|
||||||
|
|
||||||
|
# build and install iSCSI support - iscsistart (yes / no)
|
||||||
|
ISCSI_SUPPORT="yes"
|
||||||
|
|
||||||
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
||||||
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
||||||
|
@ -219,7 +219,7 @@ CONFIG_STOP_MACHINE=y
|
|||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
CONFIG_LBDAF=y
|
CONFIG_LBDAF=y
|
||||||
CONFIG_BLK_DEV_BSG=y
|
CONFIG_BLK_DEV_BSG=y
|
||||||
# CONFIG_BLK_DEV_BSGLIB is not set
|
CONFIG_BLK_DEV_BSGLIB=y
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -903,11 +903,67 @@ CONFIG_SCSI_WAIT_SCAN=m
|
|||||||
#
|
#
|
||||||
# CONFIG_SCSI_SPI_ATTRS is not set
|
# CONFIG_SCSI_SPI_ATTRS is not set
|
||||||
# CONFIG_SCSI_FC_ATTRS is not set
|
# CONFIG_SCSI_FC_ATTRS is not set
|
||||||
# CONFIG_SCSI_ISCSI_ATTRS is not set
|
CONFIG_SCSI_ISCSI_ATTRS=y
|
||||||
# CONFIG_SCSI_SAS_ATTRS is not set
|
# CONFIG_SCSI_SAS_ATTRS is not set
|
||||||
# CONFIG_SCSI_SAS_LIBSAS is not set
|
# CONFIG_SCSI_SAS_LIBSAS is not set
|
||||||
# CONFIG_SCSI_SRP_ATTRS is not set
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
CONFIG_SCSI_LOWLEVEL=y
|
||||||
|
CONFIG_ISCSI_TCP=y
|
||||||
|
CONFIG_ISCSI_BOOT_SYSFS=y
|
||||||
|
# CONFIG_SCSI_CXGB3_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_CXGB4_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2X_FCOE is not set
|
||||||
|
# CONFIG_BE2ISCSI is not set
|
||||||
|
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
|
||||||
|
# CONFIG_SCSI_HPSA is not set
|
||||||
|
# CONFIG_SCSI_3W_9XXX is not set
|
||||||
|
# CONFIG_SCSI_3W_SAS is not set
|
||||||
|
# CONFIG_SCSI_ACARD is not set
|
||||||
|
# CONFIG_SCSI_AACRAID is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX_OLD is not set
|
||||||
|
# CONFIG_SCSI_AIC79XX is not set
|
||||||
|
# CONFIG_SCSI_AIC94XX is not set
|
||||||
|
# CONFIG_SCSI_MVSAS is not set
|
||||||
|
# CONFIG_SCSI_MVUMI is not set
|
||||||
|
# CONFIG_SCSI_DPT_I2O is not set
|
||||||
|
# CONFIG_SCSI_ADVANSYS is not set
|
||||||
|
# CONFIG_SCSI_ARCMSR is not set
|
||||||
|
# CONFIG_MEGARAID_NEWGEN is not set
|
||||||
|
# CONFIG_MEGARAID_LEGACY is not set
|
||||||
|
# CONFIG_MEGARAID_SAS is not set
|
||||||
|
# CONFIG_SCSI_MPT2SAS is not set
|
||||||
|
# CONFIG_SCSI_HPTIOP is not set
|
||||||
|
# CONFIG_SCSI_BUSLOGIC is not set
|
||||||
|
# CONFIG_VMWARE_PVSCSI is not set
|
||||||
|
# CONFIG_LIBFC is not set
|
||||||
|
# CONFIG_LIBFCOE is not set
|
||||||
|
# CONFIG_FCOE is not set
|
||||||
|
# CONFIG_FCOE_FNIC is not set
|
||||||
|
# CONFIG_SCSI_DMX3191D is not set
|
||||||
|
# CONFIG_SCSI_EATA is not set
|
||||||
|
# CONFIG_SCSI_FUTURE_DOMAIN is not set
|
||||||
|
# CONFIG_SCSI_GDTH is not set
|
||||||
|
# CONFIG_SCSI_ISCI is not set
|
||||||
|
# CONFIG_SCSI_IPS is not set
|
||||||
|
# CONFIG_SCSI_INITIO is not set
|
||||||
|
# CONFIG_SCSI_INIA100 is not set
|
||||||
|
# CONFIG_SCSI_STEX is not set
|
||||||
|
# CONFIG_SCSI_SYM53C8XX_2 is not set
|
||||||
|
# CONFIG_SCSI_IPR is not set
|
||||||
|
# CONFIG_SCSI_QLOGIC_1280 is not set
|
||||||
|
# CONFIG_SCSI_QLA_FC is not set
|
||||||
|
# CONFIG_SCSI_QLA_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_LPFC is not set
|
||||||
|
# CONFIG_SCSI_DC395x is not set
|
||||||
|
# CONFIG_SCSI_DC390T is not set
|
||||||
|
# CONFIG_SCSI_NSP32 is not set
|
||||||
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
|
# CONFIG_SCSI_PMCRAID is not set
|
||||||
|
# CONFIG_SCSI_PM8001 is not set
|
||||||
|
# CONFIG_SCSI_SRP is not set
|
||||||
|
# CONFIG_SCSI_BFA_FC is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
@ -3003,7 +3059,8 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
# CONFIG_DMI_SYSFS is not set
|
||||||
# CONFIG_ISCSI_IBFT_FIND is not set
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_SIGMA is not set
|
# CONFIG_SIGMA is not set
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
|
||||||
@ -3388,7 +3445,7 @@ CONFIG_CRYPTO_HMAC=y
|
|||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
CONFIG_CRYPTO_CRC32C=y
|
||||||
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
||||||
# CONFIG_CRYPTO_GHASH is not set
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
CONFIG_CRYPTO_MD4=y
|
CONFIG_CRYPTO_MD4=y
|
||||||
|
@ -257,6 +257,9 @@
|
|||||||
|
|
||||||
# build and install CEC adapter support (yes / no)
|
# build and install CEC adapter support (yes / no)
|
||||||
CEC_SUPPORT="yes"
|
CEC_SUPPORT="yes"
|
||||||
|
|
||||||
|
# build and install iSCSI support - iscsistart (yes / no)
|
||||||
|
ISCSI_SUPPORT="yes"
|
||||||
|
|
||||||
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
||||||
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
||||||
|
@ -219,7 +219,7 @@ CONFIG_STOP_MACHINE=y
|
|||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
CONFIG_LBDAF=y
|
CONFIG_LBDAF=y
|
||||||
CONFIG_BLK_DEV_BSG=y
|
CONFIG_BLK_DEV_BSG=y
|
||||||
# CONFIG_BLK_DEV_BSGLIB is not set
|
CONFIG_BLK_DEV_BSGLIB=y
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -904,11 +904,67 @@ CONFIG_SCSI_WAIT_SCAN=m
|
|||||||
#
|
#
|
||||||
# CONFIG_SCSI_SPI_ATTRS is not set
|
# CONFIG_SCSI_SPI_ATTRS is not set
|
||||||
# CONFIG_SCSI_FC_ATTRS is not set
|
# CONFIG_SCSI_FC_ATTRS is not set
|
||||||
# CONFIG_SCSI_ISCSI_ATTRS is not set
|
CONFIG_SCSI_ISCSI_ATTRS=y
|
||||||
# CONFIG_SCSI_SAS_ATTRS is not set
|
# CONFIG_SCSI_SAS_ATTRS is not set
|
||||||
# CONFIG_SCSI_SAS_LIBSAS is not set
|
# CONFIG_SCSI_SAS_LIBSAS is not set
|
||||||
# CONFIG_SCSI_SRP_ATTRS is not set
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
CONFIG_SCSI_LOWLEVEL=y
|
||||||
|
CONFIG_ISCSI_TCP=y
|
||||||
|
CONFIG_ISCSI_BOOT_SYSFS=y
|
||||||
|
# CONFIG_SCSI_CXGB3_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_CXGB4_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2X_FCOE is not set
|
||||||
|
# CONFIG_BE2ISCSI is not set
|
||||||
|
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
|
||||||
|
# CONFIG_SCSI_HPSA is not set
|
||||||
|
# CONFIG_SCSI_3W_9XXX is not set
|
||||||
|
# CONFIG_SCSI_3W_SAS is not set
|
||||||
|
# CONFIG_SCSI_ACARD is not set
|
||||||
|
# CONFIG_SCSI_AACRAID is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX_OLD is not set
|
||||||
|
# CONFIG_SCSI_AIC79XX is not set
|
||||||
|
# CONFIG_SCSI_AIC94XX is not set
|
||||||
|
# CONFIG_SCSI_MVSAS is not set
|
||||||
|
# CONFIG_SCSI_MVUMI is not set
|
||||||
|
# CONFIG_SCSI_DPT_I2O is not set
|
||||||
|
# CONFIG_SCSI_ADVANSYS is not set
|
||||||
|
# CONFIG_SCSI_ARCMSR is not set
|
||||||
|
# CONFIG_MEGARAID_NEWGEN is not set
|
||||||
|
# CONFIG_MEGARAID_LEGACY is not set
|
||||||
|
# CONFIG_MEGARAID_SAS is not set
|
||||||
|
# CONFIG_SCSI_MPT2SAS is not set
|
||||||
|
# CONFIG_SCSI_HPTIOP is not set
|
||||||
|
# CONFIG_SCSI_BUSLOGIC is not set
|
||||||
|
# CONFIG_VMWARE_PVSCSI is not set
|
||||||
|
# CONFIG_LIBFC is not set
|
||||||
|
# CONFIG_LIBFCOE is not set
|
||||||
|
# CONFIG_FCOE is not set
|
||||||
|
# CONFIG_FCOE_FNIC is not set
|
||||||
|
# CONFIG_SCSI_DMX3191D is not set
|
||||||
|
# CONFIG_SCSI_EATA is not set
|
||||||
|
# CONFIG_SCSI_FUTURE_DOMAIN is not set
|
||||||
|
# CONFIG_SCSI_GDTH is not set
|
||||||
|
# CONFIG_SCSI_ISCI is not set
|
||||||
|
# CONFIG_SCSI_IPS is not set
|
||||||
|
# CONFIG_SCSI_INITIO is not set
|
||||||
|
# CONFIG_SCSI_INIA100 is not set
|
||||||
|
# CONFIG_SCSI_STEX is not set
|
||||||
|
# CONFIG_SCSI_SYM53C8XX_2 is not set
|
||||||
|
# CONFIG_SCSI_IPR is not set
|
||||||
|
# CONFIG_SCSI_QLOGIC_1280 is not set
|
||||||
|
# CONFIG_SCSI_QLA_FC is not set
|
||||||
|
# CONFIG_SCSI_QLA_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_LPFC is not set
|
||||||
|
# CONFIG_SCSI_DC395x is not set
|
||||||
|
# CONFIG_SCSI_DC390T is not set
|
||||||
|
# CONFIG_SCSI_NSP32 is not set
|
||||||
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
|
# CONFIG_SCSI_PMCRAID is not set
|
||||||
|
# CONFIG_SCSI_PM8001 is not set
|
||||||
|
# CONFIG_SCSI_SRP is not set
|
||||||
|
# CONFIG_SCSI_BFA_FC is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
@ -3005,7 +3061,8 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
# CONFIG_DMI_SYSFS is not set
|
||||||
# CONFIG_ISCSI_IBFT_FIND is not set
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_SIGMA is not set
|
# CONFIG_SIGMA is not set
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
|
||||||
@ -3390,7 +3447,7 @@ CONFIG_CRYPTO_HMAC=y
|
|||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
CONFIG_CRYPTO_CRC32C=y
|
||||||
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
||||||
# CONFIG_CRYPTO_GHASH is not set
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
CONFIG_CRYPTO_MD4=y
|
CONFIG_CRYPTO_MD4=y
|
||||||
|
@ -257,6 +257,9 @@
|
|||||||
|
|
||||||
# build and install CEC adapter support (yes / no)
|
# build and install CEC adapter support (yes / no)
|
||||||
CEC_SUPPORT="yes"
|
CEC_SUPPORT="yes"
|
||||||
|
|
||||||
|
# build and install iSCSI support - iscsistart (yes / no)
|
||||||
|
ISCSI_SUPPORT="yes"
|
||||||
|
|
||||||
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
||||||
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
||||||
|
@ -219,7 +219,7 @@ CONFIG_STOP_MACHINE=y
|
|||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
CONFIG_LBDAF=y
|
CONFIG_LBDAF=y
|
||||||
CONFIG_BLK_DEV_BSG=y
|
CONFIG_BLK_DEV_BSG=y
|
||||||
# CONFIG_BLK_DEV_BSGLIB is not set
|
CONFIG_BLK_DEV_BSGLIB=y
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -889,11 +889,67 @@ CONFIG_SCSI_WAIT_SCAN=m
|
|||||||
#
|
#
|
||||||
# CONFIG_SCSI_SPI_ATTRS is not set
|
# CONFIG_SCSI_SPI_ATTRS is not set
|
||||||
# CONFIG_SCSI_FC_ATTRS is not set
|
# CONFIG_SCSI_FC_ATTRS is not set
|
||||||
# CONFIG_SCSI_ISCSI_ATTRS is not set
|
CONFIG_SCSI_ISCSI_ATTRS=y
|
||||||
# CONFIG_SCSI_SAS_ATTRS is not set
|
# CONFIG_SCSI_SAS_ATTRS is not set
|
||||||
# CONFIG_SCSI_SAS_LIBSAS is not set
|
# CONFIG_SCSI_SAS_LIBSAS is not set
|
||||||
# CONFIG_SCSI_SRP_ATTRS is not set
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
CONFIG_SCSI_LOWLEVEL=y
|
||||||
|
CONFIG_ISCSI_TCP=y
|
||||||
|
CONFIG_ISCSI_BOOT_SYSFS=y
|
||||||
|
# CONFIG_SCSI_CXGB3_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_CXGB4_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2X_FCOE is not set
|
||||||
|
# CONFIG_BE2ISCSI is not set
|
||||||
|
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
|
||||||
|
# CONFIG_SCSI_HPSA is not set
|
||||||
|
# CONFIG_SCSI_3W_9XXX is not set
|
||||||
|
# CONFIG_SCSI_3W_SAS is not set
|
||||||
|
# CONFIG_SCSI_ACARD is not set
|
||||||
|
# CONFIG_SCSI_AACRAID is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX_OLD is not set
|
||||||
|
# CONFIG_SCSI_AIC79XX is not set
|
||||||
|
# CONFIG_SCSI_AIC94XX is not set
|
||||||
|
# CONFIG_SCSI_MVSAS is not set
|
||||||
|
# CONFIG_SCSI_MVUMI is not set
|
||||||
|
# CONFIG_SCSI_DPT_I2O is not set
|
||||||
|
# CONFIG_SCSI_ADVANSYS is not set
|
||||||
|
# CONFIG_SCSI_ARCMSR is not set
|
||||||
|
# CONFIG_MEGARAID_NEWGEN is not set
|
||||||
|
# CONFIG_MEGARAID_LEGACY is not set
|
||||||
|
# CONFIG_MEGARAID_SAS is not set
|
||||||
|
# CONFIG_SCSI_MPT2SAS is not set
|
||||||
|
# CONFIG_SCSI_HPTIOP is not set
|
||||||
|
# CONFIG_SCSI_BUSLOGIC is not set
|
||||||
|
# CONFIG_VMWARE_PVSCSI is not set
|
||||||
|
# CONFIG_LIBFC is not set
|
||||||
|
# CONFIG_LIBFCOE is not set
|
||||||
|
# CONFIG_FCOE is not set
|
||||||
|
# CONFIG_FCOE_FNIC is not set
|
||||||
|
# CONFIG_SCSI_DMX3191D is not set
|
||||||
|
# CONFIG_SCSI_EATA is not set
|
||||||
|
# CONFIG_SCSI_FUTURE_DOMAIN is not set
|
||||||
|
# CONFIG_SCSI_GDTH is not set
|
||||||
|
# CONFIG_SCSI_ISCI is not set
|
||||||
|
# CONFIG_SCSI_IPS is not set
|
||||||
|
# CONFIG_SCSI_INITIO is not set
|
||||||
|
# CONFIG_SCSI_INIA100 is not set
|
||||||
|
# CONFIG_SCSI_STEX is not set
|
||||||
|
# CONFIG_SCSI_SYM53C8XX_2 is not set
|
||||||
|
# CONFIG_SCSI_IPR is not set
|
||||||
|
# CONFIG_SCSI_QLOGIC_1280 is not set
|
||||||
|
# CONFIG_SCSI_QLA_FC is not set
|
||||||
|
# CONFIG_SCSI_QLA_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_LPFC is not set
|
||||||
|
# CONFIG_SCSI_DC395x is not set
|
||||||
|
# CONFIG_SCSI_DC390T is not set
|
||||||
|
# CONFIG_SCSI_NSP32 is not set
|
||||||
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
|
# CONFIG_SCSI_PMCRAID is not set
|
||||||
|
# CONFIG_SCSI_PM8001 is not set
|
||||||
|
# CONFIG_SCSI_SRP is not set
|
||||||
|
# CONFIG_SCSI_BFA_FC is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
@ -2794,7 +2850,8 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
# CONFIG_DMI_SYSFS is not set
|
||||||
# CONFIG_ISCSI_IBFT_FIND is not set
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_SIGMA is not set
|
# CONFIG_SIGMA is not set
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
|
||||||
@ -3179,7 +3236,7 @@ CONFIG_CRYPTO_HMAC=y
|
|||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
CONFIG_CRYPTO_CRC32C=y
|
||||||
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
||||||
# CONFIG_CRYPTO_GHASH is not set
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
CONFIG_CRYPTO_MD4=y
|
CONFIG_CRYPTO_MD4=y
|
||||||
|
@ -219,7 +219,7 @@ CONFIG_MODULE_UNLOAD=y
|
|||||||
CONFIG_STOP_MACHINE=y
|
CONFIG_STOP_MACHINE=y
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
CONFIG_BLK_DEV_BSG=y
|
CONFIG_BLK_DEV_BSG=y
|
||||||
# CONFIG_BLK_DEV_BSGLIB is not set
|
CONFIG_BLK_DEV_BSGLIB=y
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -840,11 +840,66 @@ CONFIG_SCSI_WAIT_SCAN=m
|
|||||||
#
|
#
|
||||||
# CONFIG_SCSI_SPI_ATTRS is not set
|
# CONFIG_SCSI_SPI_ATTRS is not set
|
||||||
# CONFIG_SCSI_FC_ATTRS is not set
|
# CONFIG_SCSI_FC_ATTRS is not set
|
||||||
# CONFIG_SCSI_ISCSI_ATTRS is not set
|
CONFIG_SCSI_ISCSI_ATTRS=y
|
||||||
# CONFIG_SCSI_SAS_ATTRS is not set
|
# CONFIG_SCSI_SAS_ATTRS is not set
|
||||||
# CONFIG_SCSI_SAS_LIBSAS is not set
|
# CONFIG_SCSI_SAS_LIBSAS is not set
|
||||||
# CONFIG_SCSI_SRP_ATTRS is not set
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
CONFIG_SCSI_LOWLEVEL=y
|
||||||
|
CONFIG_ISCSI_TCP=y
|
||||||
|
CONFIG_ISCSI_BOOT_SYSFS=y
|
||||||
|
# CONFIG_SCSI_CXGB3_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_CXGB4_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2X_FCOE is not set
|
||||||
|
# CONFIG_BE2ISCSI is not set
|
||||||
|
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
|
||||||
|
# CONFIG_SCSI_HPSA is not set
|
||||||
|
# CONFIG_SCSI_3W_9XXX is not set
|
||||||
|
# CONFIG_SCSI_3W_SAS is not set
|
||||||
|
# CONFIG_SCSI_ACARD is not set
|
||||||
|
# CONFIG_SCSI_AACRAID is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX_OLD is not set
|
||||||
|
# CONFIG_SCSI_AIC79XX is not set
|
||||||
|
# CONFIG_SCSI_AIC94XX is not set
|
||||||
|
# CONFIG_SCSI_MVSAS is not set
|
||||||
|
# CONFIG_SCSI_MVUMI is not set
|
||||||
|
# CONFIG_SCSI_DPT_I2O is not set
|
||||||
|
# CONFIG_SCSI_ADVANSYS is not set
|
||||||
|
# CONFIG_SCSI_ARCMSR is not set
|
||||||
|
# CONFIG_MEGARAID_NEWGEN is not set
|
||||||
|
# CONFIG_MEGARAID_LEGACY is not set
|
||||||
|
# CONFIG_MEGARAID_SAS is not set
|
||||||
|
# CONFIG_SCSI_MPT2SAS is not set
|
||||||
|
# CONFIG_SCSI_HPTIOP is not set
|
||||||
|
# CONFIG_SCSI_BUSLOGIC is not set
|
||||||
|
# CONFIG_VMWARE_PVSCSI is not set
|
||||||
|
# CONFIG_LIBFC is not set
|
||||||
|
# CONFIG_LIBFCOE is not set
|
||||||
|
# CONFIG_FCOE is not set
|
||||||
|
# CONFIG_FCOE_FNIC is not set
|
||||||
|
# CONFIG_SCSI_DMX3191D is not set
|
||||||
|
# CONFIG_SCSI_EATA is not set
|
||||||
|
# CONFIG_SCSI_FUTURE_DOMAIN is not set
|
||||||
|
# CONFIG_SCSI_GDTH is not set
|
||||||
|
# CONFIG_SCSI_ISCI is not set
|
||||||
|
# CONFIG_SCSI_IPS is not set
|
||||||
|
# CONFIG_SCSI_INITIO is not set
|
||||||
|
# CONFIG_SCSI_INIA100 is not set
|
||||||
|
# CONFIG_SCSI_STEX is not set
|
||||||
|
# CONFIG_SCSI_SYM53C8XX_2 is not set
|
||||||
|
# CONFIG_SCSI_IPR is not set
|
||||||
|
# CONFIG_SCSI_QLOGIC_1280 is not set
|
||||||
|
# CONFIG_SCSI_QLA_FC is not set
|
||||||
|
# CONFIG_SCSI_QLA_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_LPFC is not set
|
||||||
|
# CONFIG_SCSI_DC395x is not set
|
||||||
|
# CONFIG_SCSI_DC390T is not set
|
||||||
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
|
# CONFIG_SCSI_PMCRAID is not set
|
||||||
|
# CONFIG_SCSI_PM8001 is not set
|
||||||
|
# CONFIG_SCSI_SRP is not set
|
||||||
|
# CONFIG_SCSI_BFA_FC is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
@ -2732,7 +2787,8 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
# CONFIG_DMI_SYSFS is not set
|
||||||
# CONFIG_ISCSI_IBFT_FIND is not set
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_SIGMA is not set
|
# CONFIG_SIGMA is not set
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
|
||||||
@ -3115,7 +3171,7 @@ CONFIG_CRYPTO_HMAC=y
|
|||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
CONFIG_CRYPTO_CRC32C=y
|
||||||
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
||||||
# CONFIG_CRYPTO_GHASH is not set
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
CONFIG_CRYPTO_MD4=y
|
CONFIG_CRYPTO_MD4=y
|
||||||
|
@ -257,6 +257,9 @@
|
|||||||
|
|
||||||
# build and install CEC adapter support (yes / no)
|
# build and install CEC adapter support (yes / no)
|
||||||
CEC_SUPPORT="yes"
|
CEC_SUPPORT="yes"
|
||||||
|
|
||||||
|
# build and install iSCSI support - iscsistart (yes / no)
|
||||||
|
ISCSI_SUPPORT="yes"
|
||||||
|
|
||||||
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
||||||
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
||||||
|
@ -219,7 +219,7 @@ CONFIG_STOP_MACHINE=y
|
|||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
CONFIG_LBDAF=y
|
CONFIG_LBDAF=y
|
||||||
CONFIG_BLK_DEV_BSG=y
|
CONFIG_BLK_DEV_BSG=y
|
||||||
# CONFIG_BLK_DEV_BSGLIB is not set
|
CONFIG_BLK_DEV_BSGLIB=y
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -891,11 +891,67 @@ CONFIG_SCSI_WAIT_SCAN=m
|
|||||||
#
|
#
|
||||||
# CONFIG_SCSI_SPI_ATTRS is not set
|
# CONFIG_SCSI_SPI_ATTRS is not set
|
||||||
# CONFIG_SCSI_FC_ATTRS is not set
|
# CONFIG_SCSI_FC_ATTRS is not set
|
||||||
# CONFIG_SCSI_ISCSI_ATTRS is not set
|
CONFIG_SCSI_ISCSI_ATTRS=y
|
||||||
# CONFIG_SCSI_SAS_ATTRS is not set
|
# CONFIG_SCSI_SAS_ATTRS is not set
|
||||||
# CONFIG_SCSI_SAS_LIBSAS is not set
|
# CONFIG_SCSI_SAS_LIBSAS is not set
|
||||||
# CONFIG_SCSI_SRP_ATTRS is not set
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
CONFIG_SCSI_LOWLEVEL=y
|
||||||
|
CONFIG_ISCSI_TCP=y
|
||||||
|
CONFIG_ISCSI_BOOT_SYSFS=y
|
||||||
|
# CONFIG_SCSI_CXGB3_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_CXGB4_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2X_FCOE is not set
|
||||||
|
# CONFIG_BE2ISCSI is not set
|
||||||
|
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
|
||||||
|
# CONFIG_SCSI_HPSA is not set
|
||||||
|
# CONFIG_SCSI_3W_9XXX is not set
|
||||||
|
# CONFIG_SCSI_3W_SAS is not set
|
||||||
|
# CONFIG_SCSI_ACARD is not set
|
||||||
|
# CONFIG_SCSI_AACRAID is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX_OLD is not set
|
||||||
|
# CONFIG_SCSI_AIC79XX is not set
|
||||||
|
# CONFIG_SCSI_AIC94XX is not set
|
||||||
|
# CONFIG_SCSI_MVSAS is not set
|
||||||
|
# CONFIG_SCSI_MVUMI is not set
|
||||||
|
# CONFIG_SCSI_DPT_I2O is not set
|
||||||
|
# CONFIG_SCSI_ADVANSYS is not set
|
||||||
|
# CONFIG_SCSI_ARCMSR is not set
|
||||||
|
# CONFIG_MEGARAID_NEWGEN is not set
|
||||||
|
# CONFIG_MEGARAID_LEGACY is not set
|
||||||
|
# CONFIG_MEGARAID_SAS is not set
|
||||||
|
# CONFIG_SCSI_MPT2SAS is not set
|
||||||
|
# CONFIG_SCSI_HPTIOP is not set
|
||||||
|
# CONFIG_SCSI_BUSLOGIC is not set
|
||||||
|
# CONFIG_VMWARE_PVSCSI is not set
|
||||||
|
# CONFIG_LIBFC is not set
|
||||||
|
# CONFIG_LIBFCOE is not set
|
||||||
|
# CONFIG_FCOE is not set
|
||||||
|
# CONFIG_FCOE_FNIC is not set
|
||||||
|
# CONFIG_SCSI_DMX3191D is not set
|
||||||
|
# CONFIG_SCSI_EATA is not set
|
||||||
|
# CONFIG_SCSI_FUTURE_DOMAIN is not set
|
||||||
|
# CONFIG_SCSI_GDTH is not set
|
||||||
|
# CONFIG_SCSI_ISCI is not set
|
||||||
|
# CONFIG_SCSI_IPS is not set
|
||||||
|
# CONFIG_SCSI_INITIO is not set
|
||||||
|
# CONFIG_SCSI_INIA100 is not set
|
||||||
|
# CONFIG_SCSI_STEX is not set
|
||||||
|
# CONFIG_SCSI_SYM53C8XX_2 is not set
|
||||||
|
# CONFIG_SCSI_IPR is not set
|
||||||
|
# CONFIG_SCSI_QLOGIC_1280 is not set
|
||||||
|
# CONFIG_SCSI_QLA_FC is not set
|
||||||
|
# CONFIG_SCSI_QLA_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_LPFC is not set
|
||||||
|
# CONFIG_SCSI_DC395x is not set
|
||||||
|
# CONFIG_SCSI_DC390T is not set
|
||||||
|
# CONFIG_SCSI_NSP32 is not set
|
||||||
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
|
# CONFIG_SCSI_PMCRAID is not set
|
||||||
|
# CONFIG_SCSI_PM8001 is not set
|
||||||
|
# CONFIG_SCSI_SRP is not set
|
||||||
|
# CONFIG_SCSI_BFA_FC is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
@ -2855,7 +2911,8 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
# CONFIG_DMI_SYSFS is not set
|
||||||
# CONFIG_ISCSI_IBFT_FIND is not set
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_SIGMA is not set
|
# CONFIG_SIGMA is not set
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
|
||||||
@ -3240,7 +3297,7 @@ CONFIG_CRYPTO_HMAC=y
|
|||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
CONFIG_CRYPTO_CRC32C=y
|
||||||
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
||||||
# CONFIG_CRYPTO_GHASH is not set
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
CONFIG_CRYPTO_MD4=y
|
CONFIG_CRYPTO_MD4=y
|
||||||
|
@ -219,7 +219,7 @@ CONFIG_MODULE_UNLOAD=y
|
|||||||
CONFIG_STOP_MACHINE=y
|
CONFIG_STOP_MACHINE=y
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
CONFIG_BLK_DEV_BSG=y
|
CONFIG_BLK_DEV_BSG=y
|
||||||
# CONFIG_BLK_DEV_BSGLIB is not set
|
CONFIG_BLK_DEV_BSGLIB=y
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -843,11 +843,66 @@ CONFIG_SCSI_WAIT_SCAN=m
|
|||||||
#
|
#
|
||||||
# CONFIG_SCSI_SPI_ATTRS is not set
|
# CONFIG_SCSI_SPI_ATTRS is not set
|
||||||
# CONFIG_SCSI_FC_ATTRS is not set
|
# CONFIG_SCSI_FC_ATTRS is not set
|
||||||
# CONFIG_SCSI_ISCSI_ATTRS is not set
|
CONFIG_SCSI_ISCSI_ATTRS=y
|
||||||
# CONFIG_SCSI_SAS_ATTRS is not set
|
# CONFIG_SCSI_SAS_ATTRS is not set
|
||||||
# CONFIG_SCSI_SAS_LIBSAS is not set
|
# CONFIG_SCSI_SAS_LIBSAS is not set
|
||||||
# CONFIG_SCSI_SRP_ATTRS is not set
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
CONFIG_SCSI_LOWLEVEL=y
|
||||||
|
CONFIG_ISCSI_TCP=y
|
||||||
|
CONFIG_ISCSI_BOOT_SYSFS=y
|
||||||
|
# CONFIG_SCSI_CXGB3_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_CXGB4_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2X_FCOE is not set
|
||||||
|
# CONFIG_BE2ISCSI is not set
|
||||||
|
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
|
||||||
|
# CONFIG_SCSI_HPSA is not set
|
||||||
|
# CONFIG_SCSI_3W_9XXX is not set
|
||||||
|
# CONFIG_SCSI_3W_SAS is not set
|
||||||
|
# CONFIG_SCSI_ACARD is not set
|
||||||
|
# CONFIG_SCSI_AACRAID is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX_OLD is not set
|
||||||
|
# CONFIG_SCSI_AIC79XX is not set
|
||||||
|
# CONFIG_SCSI_AIC94XX is not set
|
||||||
|
# CONFIG_SCSI_MVSAS is not set
|
||||||
|
# CONFIG_SCSI_MVUMI is not set
|
||||||
|
# CONFIG_SCSI_DPT_I2O is not set
|
||||||
|
# CONFIG_SCSI_ADVANSYS is not set
|
||||||
|
# CONFIG_SCSI_ARCMSR is not set
|
||||||
|
# CONFIG_MEGARAID_NEWGEN is not set
|
||||||
|
# CONFIG_MEGARAID_LEGACY is not set
|
||||||
|
# CONFIG_MEGARAID_SAS is not set
|
||||||
|
# CONFIG_SCSI_MPT2SAS is not set
|
||||||
|
# CONFIG_SCSI_HPTIOP is not set
|
||||||
|
# CONFIG_SCSI_BUSLOGIC is not set
|
||||||
|
# CONFIG_VMWARE_PVSCSI is not set
|
||||||
|
# CONFIG_LIBFC is not set
|
||||||
|
# CONFIG_LIBFCOE is not set
|
||||||
|
# CONFIG_FCOE is not set
|
||||||
|
# CONFIG_FCOE_FNIC is not set
|
||||||
|
# CONFIG_SCSI_DMX3191D is not set
|
||||||
|
# CONFIG_SCSI_EATA is not set
|
||||||
|
# CONFIG_SCSI_FUTURE_DOMAIN is not set
|
||||||
|
# CONFIG_SCSI_GDTH is not set
|
||||||
|
# CONFIG_SCSI_ISCI is not set
|
||||||
|
# CONFIG_SCSI_IPS is not set
|
||||||
|
# CONFIG_SCSI_INITIO is not set
|
||||||
|
# CONFIG_SCSI_INIA100 is not set
|
||||||
|
# CONFIG_SCSI_STEX is not set
|
||||||
|
# CONFIG_SCSI_SYM53C8XX_2 is not set
|
||||||
|
# CONFIG_SCSI_IPR is not set
|
||||||
|
# CONFIG_SCSI_QLOGIC_1280 is not set
|
||||||
|
# CONFIG_SCSI_QLA_FC is not set
|
||||||
|
# CONFIG_SCSI_QLA_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_LPFC is not set
|
||||||
|
# CONFIG_SCSI_DC395x is not set
|
||||||
|
# CONFIG_SCSI_DC390T is not set
|
||||||
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
|
# CONFIG_SCSI_PMCRAID is not set
|
||||||
|
# CONFIG_SCSI_PM8001 is not set
|
||||||
|
# CONFIG_SCSI_SRP is not set
|
||||||
|
# CONFIG_SCSI_BFA_FC is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
@ -2794,7 +2849,8 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
# CONFIG_DMI_SYSFS is not set
|
||||||
# CONFIG_ISCSI_IBFT_FIND is not set
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_SIGMA is not set
|
# CONFIG_SIGMA is not set
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
|
||||||
@ -3177,7 +3233,7 @@ CONFIG_CRYPTO_HMAC=y
|
|||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
CONFIG_CRYPTO_CRC32C=y
|
||||||
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
||||||
# CONFIG_CRYPTO_GHASH is not set
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
CONFIG_CRYPTO_MD4=y
|
CONFIG_CRYPTO_MD4=y
|
||||||
|
@ -257,6 +257,9 @@
|
|||||||
|
|
||||||
# build and install CEC adapter support (yes / no)
|
# build and install CEC adapter support (yes / no)
|
||||||
CEC_SUPPORT="yes"
|
CEC_SUPPORT="yes"
|
||||||
|
|
||||||
|
# build and install iSCSI support - iscsistart (yes / no)
|
||||||
|
ISCSI_SUPPORT="yes"
|
||||||
|
|
||||||
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
||||||
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
||||||
|
@ -219,7 +219,7 @@ CONFIG_MODULE_UNLOAD=y
|
|||||||
CONFIG_STOP_MACHINE=y
|
CONFIG_STOP_MACHINE=y
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
CONFIG_BLK_DEV_BSG=y
|
CONFIG_BLK_DEV_BSG=y
|
||||||
# CONFIG_BLK_DEV_BSGLIB is not set
|
CONFIG_BLK_DEV_BSGLIB=y
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -832,11 +832,66 @@ CONFIG_SCSI_WAIT_SCAN=m
|
|||||||
#
|
#
|
||||||
# CONFIG_SCSI_SPI_ATTRS is not set
|
# CONFIG_SCSI_SPI_ATTRS is not set
|
||||||
# CONFIG_SCSI_FC_ATTRS is not set
|
# CONFIG_SCSI_FC_ATTRS is not set
|
||||||
# CONFIG_SCSI_ISCSI_ATTRS is not set
|
CONFIG_SCSI_ISCSI_ATTRS=y
|
||||||
# CONFIG_SCSI_SAS_ATTRS is not set
|
# CONFIG_SCSI_SAS_ATTRS is not set
|
||||||
# CONFIG_SCSI_SAS_LIBSAS is not set
|
# CONFIG_SCSI_SAS_LIBSAS is not set
|
||||||
# CONFIG_SCSI_SRP_ATTRS is not set
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
CONFIG_SCSI_LOWLEVEL=y
|
||||||
|
CONFIG_ISCSI_TCP=y
|
||||||
|
CONFIG_ISCSI_BOOT_SYSFS=y
|
||||||
|
# CONFIG_SCSI_CXGB3_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_CXGB4_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_BNX2X_FCOE is not set
|
||||||
|
# CONFIG_BE2ISCSI is not set
|
||||||
|
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
|
||||||
|
# CONFIG_SCSI_HPSA is not set
|
||||||
|
# CONFIG_SCSI_3W_9XXX is not set
|
||||||
|
# CONFIG_SCSI_3W_SAS is not set
|
||||||
|
# CONFIG_SCSI_ACARD is not set
|
||||||
|
# CONFIG_SCSI_AACRAID is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX is not set
|
||||||
|
# CONFIG_SCSI_AIC7XXX_OLD is not set
|
||||||
|
# CONFIG_SCSI_AIC79XX is not set
|
||||||
|
# CONFIG_SCSI_AIC94XX is not set
|
||||||
|
# CONFIG_SCSI_MVSAS is not set
|
||||||
|
# CONFIG_SCSI_MVUMI is not set
|
||||||
|
# CONFIG_SCSI_DPT_I2O is not set
|
||||||
|
# CONFIG_SCSI_ADVANSYS is not set
|
||||||
|
# CONFIG_SCSI_ARCMSR is not set
|
||||||
|
# CONFIG_MEGARAID_NEWGEN is not set
|
||||||
|
# CONFIG_MEGARAID_LEGACY is not set
|
||||||
|
# CONFIG_MEGARAID_SAS is not set
|
||||||
|
# CONFIG_SCSI_MPT2SAS is not set
|
||||||
|
# CONFIG_SCSI_HPTIOP is not set
|
||||||
|
# CONFIG_SCSI_BUSLOGIC is not set
|
||||||
|
# CONFIG_VMWARE_PVSCSI is not set
|
||||||
|
# CONFIG_LIBFC is not set
|
||||||
|
# CONFIG_LIBFCOE is not set
|
||||||
|
# CONFIG_FCOE is not set
|
||||||
|
# CONFIG_FCOE_FNIC is not set
|
||||||
|
# CONFIG_SCSI_DMX3191D is not set
|
||||||
|
# CONFIG_SCSI_EATA is not set
|
||||||
|
# CONFIG_SCSI_FUTURE_DOMAIN is not set
|
||||||
|
# CONFIG_SCSI_GDTH is not set
|
||||||
|
# CONFIG_SCSI_ISCI is not set
|
||||||
|
# CONFIG_SCSI_IPS is not set
|
||||||
|
# CONFIG_SCSI_INITIO is not set
|
||||||
|
# CONFIG_SCSI_INIA100 is not set
|
||||||
|
# CONFIG_SCSI_STEX is not set
|
||||||
|
# CONFIG_SCSI_SYM53C8XX_2 is not set
|
||||||
|
# CONFIG_SCSI_IPR is not set
|
||||||
|
# CONFIG_SCSI_QLOGIC_1280 is not set
|
||||||
|
# CONFIG_SCSI_QLA_FC is not set
|
||||||
|
# CONFIG_SCSI_QLA_ISCSI is not set
|
||||||
|
# CONFIG_SCSI_LPFC is not set
|
||||||
|
# CONFIG_SCSI_DC395x is not set
|
||||||
|
# CONFIG_SCSI_DC390T is not set
|
||||||
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
|
# CONFIG_SCSI_PMCRAID is not set
|
||||||
|
# CONFIG_SCSI_PM8001 is not set
|
||||||
|
# CONFIG_SCSI_SRP is not set
|
||||||
|
# CONFIG_SCSI_BFA_FC is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
@ -2566,7 +2621,8 @@ CONFIG_EFI_VARS=y
|
|||||||
# CONFIG_DCDBAS is not set
|
# CONFIG_DCDBAS is not set
|
||||||
CONFIG_DMIID=y
|
CONFIG_DMIID=y
|
||||||
# CONFIG_DMI_SYSFS is not set
|
# CONFIG_DMI_SYSFS is not set
|
||||||
# CONFIG_ISCSI_IBFT_FIND is not set
|
CONFIG_ISCSI_IBFT_FIND=y
|
||||||
|
CONFIG_ISCSI_IBFT=y
|
||||||
# CONFIG_SIGMA is not set
|
# CONFIG_SIGMA is not set
|
||||||
# CONFIG_GOOGLE_FIRMWARE is not set
|
# CONFIG_GOOGLE_FIRMWARE is not set
|
||||||
|
|
||||||
@ -2949,7 +3005,7 @@ CONFIG_CRYPTO_HMAC=y
|
|||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
CONFIG_CRYPTO_CRC32C=y
|
||||||
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
# CONFIG_CRYPTO_CRC32C_INTEL is not set
|
||||||
# CONFIG_CRYPTO_GHASH is not set
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
CONFIG_CRYPTO_MD4=y
|
CONFIG_CRYPTO_MD4=y
|
||||||
|
@ -257,6 +257,9 @@
|
|||||||
|
|
||||||
# build and install CEC adapter support (yes / no)
|
# build and install CEC adapter support (yes / no)
|
||||||
CEC_SUPPORT="yes"
|
CEC_SUPPORT="yes"
|
||||||
|
|
||||||
|
# build and install iSCSI support - iscsistart (yes / no)
|
||||||
|
ISCSI_SUPPORT="yes"
|
||||||
|
|
||||||
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
# LCD driver to Use - Possible drivers are ( Comma seperated:
|
||||||
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
# bayrad,CFontz,CFontz633,CFontzPacket,curses,CwLnx,
|
||||||
|
43
tools/mkpkg/mkpkg_open-iscsi
Executable file
43
tools/mkpkg/mkpkg_open-iscsi
Executable file
@ -0,0 +1,43 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
################################################################################
|
||||||
|
# This file is part of OpenELEC - http://www.openelec.tv
|
||||||
|
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
||||||
|
#
|
||||||
|
# This Program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2, or (at your option)
|
||||||
|
# any later version.
|
||||||
|
#
|
||||||
|
# This Program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
||||||
|
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
echo "getting sources..."
|
||||||
|
if [ ! -d open-iscsi.git ]; then
|
||||||
|
git clone https://github.com/mikechristie/open-iscsi -b release open-iscsi.git
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd open-iscsi.git
|
||||||
|
git pull
|
||||||
|
GIT_REV=`git log -n1 --format=%h`
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
echo "copying sources..."
|
||||||
|
rm -rf open-iscsi-$GIT_REV
|
||||||
|
cp -R open-iscsi.git open-iscsi-$GIT_REV
|
||||||
|
|
||||||
|
echo "cleaning sources..."
|
||||||
|
rm -rf open-iscsi-$GIT_REV/.git
|
||||||
|
|
||||||
|
echo "packing sources..."
|
||||||
|
tar cvJf open-iscsi-$GIT_REV.tar.xz open-iscsi-$GIT_REV
|
||||||
|
|
||||||
|
echo "remove temporary sourcedir..."
|
||||||
|
rm -rf open-iscsi-$GIT_REV
|
Loading…
x
Reference in New Issue
Block a user