]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
Fix build of compat-wireless with xen.
authortrikolon <trikolon@ipfire.org>
Wed, 29 Jul 2009 12:46:10 +0000 (12:46 +0000)
committertrikolon <trikolon@ipfire.org>
Wed, 29 Jul 2009 12:46:10 +0000 (12:46 +0000)
lfs/compat-wireless

index 3364b40dbe359b208a6d258c07fe01153ae0f534..7c77f92f0a91fd4f31f43a8b91d52638bab41cb8 100644 (file)
@@ -77,6 +77,14 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xjf $(DIR_DL)/$(DL_FILE)
 
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xjf $(DIR_DL)/$(DL_FILE)
 
+       # Xen
+ifeq "$(XEN)" "1"
+#       some dirty hacks that it is building
+       mv /usr/src/linux/include/linux/tracepoint.h /usr/src/linux/include/linux/tracepoint.h.xen
+       touch /usr/src/linux/include/linux/tracepoint.h
+       cd /usr/src/ &&  patch -Np1 < $(DIR_SRC)/src/patches/compat-xen-1.patch
+endif
+
 #      Apply some wlan-card patches
        cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/compat-wireless_rt2500pci-skb_allignment.patch
 
 #      Apply some wlan-card patches
        cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/compat-wireless_rt2500pci-skb_allignment.patch
 
@@ -86,6 +94,14 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 
        cd $(DIR_APP) && make KLIB=/lib/modules/$(KVER)-$(VERSUFIX) KMODDIR=kernel install
 
 
        cd $(DIR_APP) && make KLIB=/lib/modules/$(KVER)-$(VERSUFIX) KMODDIR=kernel install
 
+       # Xen
+ifeq "$(XEN)" "1"
+#       remove dirty hacks. restores to the status before the dirty hacks
+       cd /usr/src/ &&  patch -Np1 < $(DIR_SRC)/src/patches/compat-xen-2.patch
+       mv /usr/src/linux/include/linux/tracepoint.h.xen /usr/src/linux/include/linux/tracepoint.h
+endif
+
        # Set Regulatory Domain to "EU" (use Channel 1-14 max. 20db)
        echo options cfg80211 ieee80211_regdom=EU > /etc/modprobe.d/cfg80211
        @$(POSTBUILD)
        # Set Regulatory Domain to "EU" (use Channel 1-14 max. 20db)
        echo options cfg80211 ieee80211_regdom=EU > /etc/modprobe.d/cfg80211
        @$(POSTBUILD)
+