[zaptel-commits] tzafrir: branch 1.4 r3721 - in /branches/1.4: wct4xxp/ wctc4xxp/ wctdm24xxp/ ...
SVN commits to the Zaptel project
zaptel-commits at lists.digium.com
Tue Jan 22 11:11:17 CST 2008
Author: tzafrir
Date: Mon Jan 21 17:15:03 2008
New Revision: 3721
URL: http://svn.digium.com/view/zaptel?view=rev&rev=3721
Log:
Fix my regression from r3706: Make sure HOTPLUG_FIRMWARE has effect on
the CFLAGS of kernel modules.
Closes issue #11806 .
Modified:
branches/1.4/wct4xxp/Kbuild
branches/1.4/wctc4xxp/Kbuild
branches/1.4/wctdm24xxp/Kbuild
branches/1.4/wcte12xp/Kbuild
Change Statistics:
0 files changed
Modified: branches/1.4/wct4xxp/Kbuild
URL: http://svn.digium.com/view/zaptel/branches/1.4/wct4xxp/Kbuild?view=diff&rev=3721&r1=3720&r2=3721
==============================================================================
--- branches/1.4/wct4xxp/Kbuild (original)
+++ branches/1.4/wct4xxp/Kbuild Mon Jan 21 17:15:03 2008
@@ -1,6 +1,10 @@
obj-m += wct4xxp.o
EXTRA_CFLAGS := -I$(src)/.. $(shell $(src)/../oct612x/octasic-helper cflags $(src)/../oct612x) -Wno-undef
+
+ifeq ($(HOTPLUG_FIRMWARE),yes)
+ EXTRA_CFLAGS+=-DHOTPLUG_FIRMWARE
+endif
wct4xxp-objs := base.o vpm450m.o $(shell $(src)/../oct612x/octasic-helper objects ../oct612x)
Modified: branches/1.4/wctc4xxp/Kbuild
URL: http://svn.digium.com/view/zaptel/branches/1.4/wctc4xxp/Kbuild?view=diff&rev=3721&r1=3720&r2=3721
==============================================================================
--- branches/1.4/wctc4xxp/Kbuild (original)
+++ branches/1.4/wctc4xxp/Kbuild Mon Jan 21 17:15:03 2008
@@ -1,6 +1,10 @@
obj-m += wctc4xxp.o
EXTRA_CFLAGS := -I$(src)/.. -Wno-undef -DSTANDALONE_ZAPATA
+
+ifeq ($(HOTPLUG_FIRMWARE),yes)
+ EXTRA_CFLAGS+=-DHOTPLUG_FIRMWARE
+endif
wctc4xxp-objs := base.o
Modified: branches/1.4/wctdm24xxp/Kbuild
URL: http://svn.digium.com/view/zaptel/branches/1.4/wctdm24xxp/Kbuild?view=diff&rev=3721&r1=3720&r2=3721
==============================================================================
--- branches/1.4/wctdm24xxp/Kbuild (original)
+++ branches/1.4/wctdm24xxp/Kbuild Mon Jan 21 17:15:03 2008
@@ -1,6 +1,10 @@
obj-m += wctdm24xxp.o
EXTRA_CFLAGS := -I$(src)/.. -Wno-undef
+
+ifeq ($(HOTPLUG_FIRMWARE),yes)
+ EXTRA_CFLAGS+=-DHOTPLUG_FIRMWARE
+endif
wctdm24xxp-objs := base.o GpakCust.o GpakApi.o
Modified: branches/1.4/wcte12xp/Kbuild
URL: http://svn.digium.com/view/zaptel/branches/1.4/wcte12xp/Kbuild?view=diff&rev=3721&r1=3720&r2=3721
==============================================================================
--- branches/1.4/wcte12xp/Kbuild (original)
+++ branches/1.4/wcte12xp/Kbuild Mon Jan 21 17:15:03 2008
@@ -1,6 +1,10 @@
obj-m += wcte12xp.o
EXTRA_CFLAGS := -I$(src)/.. -Wno-undef
+
+ifeq ($(HOTPLUG_FIRMWARE),yes)
+ EXTRA_CFLAGS+=-DHOTPLUG_FIRMWARE
+endif
wcte12xp-objs := base.o vpmadt032.o GpakApi.o
More information about the zaptel-commits
mailing list