summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorfile <file@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-02-26 18:18:13 +0000
committerfile <file@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-02-26 18:18:13 +0000
commitd2bc5edd30ddb4258feca767eb6cd5d2bc96ad30 (patch)
treea33db1b4266632056deabb0c60fe207eff768c24 /Makefile
parent58c83f507c7d244031f80f98349bb3025606147b (diff)
Just in case... set hotplug firmware loading option to no if on a 2.4 kernel. (issue #9140 reported by velter)
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.2@2232 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6947e64..7987f15 100644
--- a/Makefile
+++ b/Makefile
@@ -41,6 +41,9 @@ ifeq ($(BUILDVER),linux26)
UDEVRULES=yes
endif
HOTPLUG_FIRMWARE:=$(shell if grep CONFIG_FW_LOADER $(KINCLUDES)/linux/autoconf.h | grep -q undef; then echo "no"; else echo "yes"; fi)
+else
+ # Hotplug firmware loading is not supported on any other version then 2.6
+ HOTPLUG_FIRMWARE:=no
endif
ifeq ($(HOTPLUG_FIRMWARE),yes)