]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - lfs/compat-wireless
Add missing dlink and linksys pciids to r8169 driver.
[people/pmueller/ipfire-2.x.git] / lfs / compat-wireless
index 3364b40dbe359b208a6d258c07fe01153ae0f534..5d1bff17e22471d0795a17feb145627c6e9b178e 100644 (file)
@@ -30,7 +30,7 @@ else
        VERSUFIX=ipfire
 endif
 
-VER        = 2009-06-30
+VER        = 2009-05-30
 
 THISAPP    = compat-wireless-$(VER)
 DL_FILE    = $(THISAPP).tar.bz2
@@ -46,7 +46,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 68777ce2aa6b28dc3d37fc2b9a3a6d70
+$(DL_FILE)_MD5 = 1f3924b3bf450713a88422e63c7481a3
 
 install : $(TARGET)
 
@@ -77,15 +77,52 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(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
 
-#      Build only the modules
+#      Enable B43 NPHY / PHY_LP
+       echo "CONFIG_B43_NPHY=y" >> $(DIR_APP)/config.mk
+       echo "CONFIG_B43_PHY_LP=y" >> $(DIR_APP)/config.mk
+
+
+       # This is for stable version
+       # Build only the modules
        cd $(DIR_APP) && sed -i -e "s|install: uninstall modules|install: modules|g" Makefile
        cd $(DIR_APP) && sed -i -e "s|\t@# All the scripts|\nende:|g" Makefile
 
        cd $(DIR_APP) && make KLIB=/lib/modules/$(KVER)-$(VERSUFIX) KMODDIR=kernel install
 
+
+       # This is for new developer versions (New makefile)
+       #       cd $(DIR_APP) && make KLIB=/lib/modules/$(KVER)-$(VERSUFIX) KMODDIR=kernel install-modules
+
+       #       # The makefile put the modules to a wrong place move back...
+       #       cp -rf /lib/modules/$(KVER)-$(VERSUFIX)/lib /
+       #       rm -rf /lib/modules/$(KVER)-$(VERSUFIX)/lib
+
+       # 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
+
+       # Remove original kernel modules (compat wireless use the
+       # place of newer kernels and so not overwrite it...)
+       -rm -rf /lib/modules/$(KVER)-$(VERSUFIX)/kernel/drivers/net/wireless/ath?k
+       -rm -rf /lib/modules/$(KVER)-$(VERSUFIX)/kernel/drivers/net/wireless/rtl818?.ko
+
+       -rm -rf $(DIR_APP)
        @$(POSTBUILD)
+