]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - lfs/compat-wireless
tzdata: add VER string.
[people/teissler/ipfire-2.x.git] / lfs / compat-wireless
CommitLineData
9a34a05c
AF
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
0249e1a6 4# Copyright (C) 2007-2012 IPFire Team <info@ipfire.org> #
9a34a05c
AF
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
25include Config
26
fdf0c7c1 27VERSUFIX=ipfire$(KCFG)
9a34a05c 28
0249e1a6 29VER = 3.2.5-1
9a34a05c
AF
30
31THISAPP = compat-wireless-$(VER)
32DL_FILE = compat-wireless-$(VER).tar.bz2
33DL_FROM = $(URL_IPFIRE)
34DIR_APP = $(DIR_SRC)/$(THISAPP)
35TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX)
36
37###############################################################################
38# Top-level Rules
39###############################################################################
40
e5620b24 41objects = $(DL_FILE) asix-3.5.0a.tar.bz2
9a34a05c
AF
42
43$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
e5620b24 44asix-3.5.0a.tar.bz2 = $(DL_FROM)/asix-3.5.0a.tar.bz2
9a34a05c 45
0249e1a6 46$(DL_FILE)_MD5 = 19670520d7f0289a5b4c6fb28520b2ac
e5620b24 47asix-3.5.0a.tar.bz2_MD5=cc57513505d3ad1a43b58add91d2bba7
9a34a05c
AF
48
49install : $(TARGET)
50
51check : $(patsubst %,$(DIR_CHK)/%,$(objects))
52
53download :$(patsubst %,$(DIR_DL)/%,$(objects))
54
55md5 : $(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
65248b97
AF
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
9a34a05c
AF
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
e5620b24
AF
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
236aae9d
AF
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
0249e1a6
AF
95
96ifeq "$(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
2f5e1d43
AF
99endif
100
9a34a05c 101 cd $(DIR_APP) && make KLIB=/lib/modules/$(KVER)-$(VERSUFIX) \
006ffcfe 102 KMODPATH_ARG='INSTALL_MOD_PATH=' KMODDIR=kernel install-modules
9a34a05c
AF
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)