]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - lfs/compat-wireless
flashimages: switch to single ext4 (wo journal)
[people/teissler/ipfire-2.x.git] / lfs / compat-wireless
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2012 IPFire Team <info@ipfire.org> #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VERSUFIX=ipfire$(KCFG)
28
29 VER = 3.2.5-1
30
31 THISAPP = compat-wireless-$(VER)
32 DL_FILE = compat-wireless-$(VER).tar.bz2
33 DL_FROM = $(URL_IPFIRE)
34 DIR_APP = $(DIR_SRC)/$(THISAPP)
35 TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX)
36
37 ###############################################################################
38 # Top-level Rules
39 ###############################################################################
40
41 objects = $(DL_FILE) asix-3.5.0a.tar.bz2
42
43 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
44 asix-3.5.0a.tar.bz2 = $(DL_FROM)/asix-3.5.0a.tar.bz2
45
46 $(DL_FILE)_MD5 = 19670520d7f0289a5b4c6fb28520b2ac
47 asix-3.5.0a.tar.bz2_MD5=cc57513505d3ad1a43b58add91d2bba7
48
49 install : $(TARGET)
50
51 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
52
53 download :$(patsubst %,$(DIR_DL)/%,$(objects))
54
55 md5 : $(subst %,%_MD5,$(objects))
56
57 ###############################################################################
58 # Downloading, checking, md5sum
59 ###############################################################################
60
61 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
62 @$(CHECK)
63
64 $(patsubst %,$(DIR_DL)/%,$(objects)) :
65 @$(LOAD)
66
67 $(subst %,%_MD5,$(objects)) :
68 @$(MD5)
69
70 ###############################################################################
71 # Installation Details
72 ###############################################################################
73
74 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
75 @$(PREBUILD)
76 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xjf $(DIR_DL)/$(DL_FILE)
77
78 # kfifo has no license info and taints kernel
79 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/compat-wireless-2.6.39_kfifo_module_info.patch
80
81 # Copy USB-Net drivers from Kernel...
82 mkdir $(DIR_APP)/drivers/net/usb/new
83 cp $(DIR_APP)/drivers/net/usb/*.c $(DIR_APP)/drivers/net/usb/new
84 cp /usr/src/linux/drivers/net/usb/{*.c,*.h,Makefile} $(DIR_APP)/drivers/net/usb
85 cp $(DIR_APP)/drivers/net/usb/new/*.c $(DIR_APP)/drivers/net/usb
86
87 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/compat-wireless-2.6.34-usbnet_compile.patch
88
89 # Build Updated asix usb-lan driver
90 cd $(DIR_APP)/drivers/net/usb && tar xvf $(DIR_DL)/asix-3.5.0a.tar.bz2
91
92 # Add libartas uAP driver
93 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/compat-wireless-3.0-libertas_uap.patch
94 cd $(DIR_APP)&& echo CONFIG_LIBERTAS_UAP=m >> config.mk
95
96 ifeq "$(MACHINE_TYPE)" "arm"
97 # fix atomic64 functions
98 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/compat-wireless-3.2.5-1-fix_atomic64_t_on_arm.patch
99 endif
100
101 cd $(DIR_APP) && make KLIB=/lib/modules/$(KVER)-$(VERSUFIX) \
102 KMODPATH_ARG='INSTALL_MOD_PATH=' KMODDIR=kernel install-modules
103
104 # Install firmware udev files...
105 cd $(DIR_APP)/udev && install -m 644 50-compat_firmware.rules /etc/udev/rules.d/
106 cd $(DIR_APP)/udev && install -m 755 compat_firmware.sh /lib/udev/
107
108 -rm -rf $(DIR_APP)
109 @$(POSTBUILD)