From fe84b1f26b5a0d2bb00c33c317e28485108cc2df Mon Sep 17 00:00:00 2001 From: Vladislav Bolkhovitin Date: Tue, 28 Oct 2008 20:43:38 +0000 Subject: [PATCH] The iscsi-scst kernel module does not get compiled even with CONFIG_SCST_ISCSI set to m or y. The patch below fixes this. This patch has been verified by rerunning scripts/run-regression-tests -k 2.6.27.3 and by verifying that the kernel build produced a iscsi-scst.ko kernel module. Signed-off-by: Bart Van Assche git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@548 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- iscsi-scst/kernel/Makefile.in-kernel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iscsi-scst/kernel/Makefile.in-kernel b/iscsi-scst/kernel/Makefile.in-kernel index 6008750af..59b34767c 100644 --- a/iscsi-scst/kernel/Makefile.in-kernel +++ b/iscsi-scst/kernel/Makefile.in-kernel @@ -3,4 +3,4 @@ EXTRA_CFLAGS += -Iinclude/scst iscsi-scst-y := iscsi.o nthread.o config.o digest.o \ conn.o session.o target.o event.o param.o -obj-$(SCST_ISCSI) += iscsi-scst.o +obj-$(CONFIG_SCST_ISCSI) += iscsi-scst.o