diff options
author | Boaz Harrosh <bharrosh@panasas.com> | 2009-05-24 13:05:58 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-06-10 10:00:41 -0400 |
commit | 3860c97bd60a4525bb62eb90e3e7d2f02662ac59 (patch) | |
tree | b3552abaa9e4e933c63a356fce728c6a83ec28cf /drivers | |
parent | 03306793e686fd895ab8fa095bb9ec33658ea53a (diff) |
[SCSI] osd: Remove out-of-tree left overs
* Delete Makefile. It is only used for out-of-tree compilation
and was never needed. It slipped in by mistake.
* Remove from Kbuild all the out of tree stuff as promised.
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/osd/Kbuild | 25 | ||||
-rwxr-xr-x | drivers/scsi/osd/Makefile | 37 |
2 files changed, 0 insertions, 62 deletions
diff --git a/drivers/scsi/osd/Kbuild b/drivers/scsi/osd/Kbuild index 0e207aa67d16..5fd73d77c3af 100644 --- a/drivers/scsi/osd/Kbuild +++ b/drivers/scsi/osd/Kbuild | |||
@@ -11,31 +11,6 @@ | |||
11 | # it under the terms of the GNU General Public License version 2 | 11 | # it under the terms of the GNU General Public License version 2 |
12 | # | 12 | # |
13 | 13 | ||
14 | ifneq ($(OSD_INC),) | ||
15 | # we are built out-of-tree Kconfigure everything as on | ||
16 | |||
17 | CONFIG_SCSI_OSD_INITIATOR=m | ||
18 | ccflags-y += -DCONFIG_SCSI_OSD_INITIATOR -DCONFIG_SCSI_OSD_INITIATOR_MODULE | ||
19 | |||
20 | CONFIG_SCSI_OSD_ULD=m | ||
21 | ccflags-y += -DCONFIG_SCSI_OSD_ULD -DCONFIG_SCSI_OSD_ULD_MODULE | ||
22 | |||
23 | # CONFIG_SCSI_OSD_DPRINT_SENSE = | ||
24 | # 0 - no print of errors | ||
25 | # 1 - print errors | ||
26 | # 2 - errors + warrnings | ||
27 | ccflags-y += -DCONFIG_SCSI_OSD_DPRINT_SENSE=1 | ||
28 | |||
29 | # Uncomment to turn debug on | ||
30 | # ccflags-y += -DCONFIG_SCSI_OSD_DEBUG | ||
31 | |||
32 | # if we are built out-of-tree and the hosting kernel has OSD headers | ||
33 | # then "ccflags-y +=" will not pick the out-off-tree headers. Only by doing | ||
34 | # this it will work. This might break in future kernels | ||
35 | LINUXINCLUDE := -I$(OSD_INC) $(LINUXINCLUDE) | ||
36 | |||
37 | endif | ||
38 | |||
39 | # libosd.ko - osd-initiator library | 14 | # libosd.ko - osd-initiator library |
40 | libosd-y := osd_initiator.o | 15 | libosd-y := osd_initiator.o |
41 | obj-$(CONFIG_SCSI_OSD_INITIATOR) += libosd.o | 16 | obj-$(CONFIG_SCSI_OSD_INITIATOR) += libosd.o |
diff --git a/drivers/scsi/osd/Makefile b/drivers/scsi/osd/Makefile deleted file mode 100755 index d905344f83ba..000000000000 --- a/drivers/scsi/osd/Makefile +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | # | ||
2 | # Makefile for the OSD modules (out of tree) | ||
3 | # | ||
4 | # Copyright (C) 2008 Panasas Inc. All rights reserved. | ||
5 | # | ||
6 | # Authors: | ||
7 | # Boaz Harrosh <bharrosh@panasas.com> | ||
8 | # Benny Halevy <bhalevy@panasas.com> | ||
9 | # | ||
10 | # This program is free software; you can redistribute it and/or modify | ||
11 | # it under the terms of the GNU General Public License version 2 | ||
12 | # | ||
13 | # This Makefile is used to call the kernel Makefile in case of an out-of-tree | ||
14 | # build. | ||
15 | # $KSRC should point to a Kernel source tree otherwise host's default is | ||
16 | # used. (eg. /lib/modules/`uname -r`/build) | ||
17 | |||
18 | # include path for out-of-tree Headers | ||
19 | OSD_INC ?= `pwd`/../../../include | ||
20 | |||
21 | # allow users to override these | ||
22 | # e.g. to compile for a kernel that you aren't currently running | ||
23 | KSRC ?= /lib/modules/$(shell uname -r)/build | ||
24 | KBUILD_OUTPUT ?= | ||
25 | ARCH ?= | ||
26 | V ?= 0 | ||
27 | |||
28 | # this is the basic Kbuild out-of-tree invocation, with the M= option | ||
29 | KBUILD_BASE = +$(MAKE) -C $(KSRC) M=`pwd` KBUILD_OUTPUT=$(KBUILD_OUTPUT) ARCH=$(ARCH) V=$(V) | ||
30 | |||
31 | all: libosd | ||
32 | |||
33 | libosd: ; | ||
34 | $(KBUILD_BASE) OSD_INC=$(OSD_INC) modules | ||
35 | |||
36 | clean: | ||
37 | $(KBUILD_BASE) clean | ||