X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=lfs%2Fcompat-wireless;h=60a76c6179839f9bbd6bc39a560a534ab3b98b9e;hb=ac7cb03fb7bf6533ceb6f650586f4ff46987de1e;hp=bc3dd64eb7e69668e80529463227781caab7cb9c;hpb=999d55de0585b62235a43731a6b942082f96c404;p=people%2Fpmueller%2Fipfire-2.x.git diff --git a/lfs/compat-wireless b/lfs/compat-wireless index bc3dd64eb7..60a76c6179 100644 --- a/lfs/compat-wireless +++ b/lfs/compat-wireless @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2008 Michael Tremer & Christian Schmidt # +# Copyright (C) 2007-2011 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,27 +24,35 @@ include Config -VER = 2009-03-30 +ifeq "$(PAE)" "1" + VERSUFIX=ipfire-pae +else +ifeq "$(XEN)" "1" + VERSUFIX=ipfire-xen +else + VERSUFIX=ipfire +endif +endif + +VER = 2.6.37-4-sn THISAPP = compat-wireless-$(VER) -DL_FILE = $(THISAPP).tar.bz2 +DL_FILE = compat-wireless-$(VER).tar.bz2 DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) -ifeq "$(SMP)" "" - TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER) -else - TARGET = $(DIR_INFO)/$(THISAPP)-smp -endif +TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX) ############################################################################### # Top-level Rules ############################################################################### -objects = $(DL_FILE) +objects = $(DL_FILE) asix-3.5.0a.tar.bz2 $(DL_FILE) = $(DL_FROM)/$(DL_FILE) +asix-3.5.0a.tar.bz2 = $(DL_FROM)/asix-3.5.0a.tar.bz2 -$(DL_FILE)_MD5 = 88ea3e5b42ef5fbcec8b91043dd3aa76 +$(DL_FILE)_MD5 = be07898fa2e28a06c1b90dd424270ad2 +asix-3.5.0a.tar.bz2_MD5=cc57513505d3ad1a43b58add91d2bba7 install : $(TARGET) @@ -75,12 +83,26 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xjf $(DIR_DL)/$(DL_FILE) -# Apply some wlan-card patches - cd $(DIR_APP) && cat $(DIR_SRC)/src/patches/compat-wireless_*.patch | patch -Np1 + # Copy USB-Net drivers from Kernel... + mkdir $(DIR_APP)/drivers/net/usb/new + cp $(DIR_APP)/drivers/net/usb/*.c $(DIR_APP)/drivers/net/usb/new + cp /usr/src/linux/drivers/net/usb/{*.c,*.h,Makefile} $(DIR_APP)/drivers/net/usb + cp $(DIR_APP)/drivers/net/usb/new/*.c $(DIR_APP)/drivers/net/usb + + cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/compat-wireless-2.6.34-usbnet_compile.patch + + # Build Updated asix usb-lan driver + cd $(DIR_APP)/drivers/net/usb && tar xvf $(DIR_DL)/asix-3.5.0a.tar.bz2 + + cd $(DIR_APP) && make KLIB=/lib/modules/$(KVER)-$(VERSUFIX) \ + KMODPATH_ARG='INSTALL_MOD_PATH=' KMODDIR=kernel install-modules + + # Install firmware udev files... + cd $(DIR_APP)/udev && install -m 644 50-compat_firmware.rules /etc/udev/rules.d/ + cd $(DIR_APP)/udev && install -m 755 compat_firmware.sh /lib/udev/ + + # Disable hwcrypt on rt73 ... + echo "options rt73usb nohwcrypt=1" > /etc/modprobe.d/ralink_wireless - cd $(DIR_APP) && sed -i -e "s|uname -r|echo $(KVER)-ipfire|g" Makefile - cd $(DIR_APP) && sed -i -e "s|/sbin/modprobe|echo|g" Makefile - 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 KMODDIR=kernel install + -rm -rf $(DIR_APP) @$(POSTBUILD)