]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/compat-wireless
Merge branch 'master' into next
[people/pmueller/ipfire-2.x.git] / lfs / compat-wireless
CommitLineData
999d55de
AF
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2008 Michael Tremer & Christian Schmidt #
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
2b2e03ed
AF
27ifeq "$(XEN)" "1"
28 VERSUFIX=ipfire-xen
29else
30 VERSUFIX=ipfire
31endif
32
d6c3183a 33VER = 2009-05-30
999d55de
AF
34
35THISAPP = compat-wireless-$(VER)
36DL_FILE = $(THISAPP).tar.bz2
37DL_FROM = $(URL_IPFIRE)
38DIR_APP = $(DIR_SRC)/$(THISAPP)
2b2e03ed 39TARGET = $(DIR_INFO)/$(THISAPP)-kmod-$(KVER)-$(VERSUFIX)
999d55de
AF
40
41###############################################################################
42# Top-level Rules
43###############################################################################
44
45objects = $(DL_FILE)
46
47$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
48
d6c3183a 49$(DL_FILE)_MD5 = 1f3924b3bf450713a88422e63c7481a3
999d55de
AF
50
51install : $(TARGET)
52
53check : $(patsubst %,$(DIR_CHK)/%,$(objects))
54
55download :$(patsubst %,$(DIR_DL)/%,$(objects))
56
57md5 : $(subst %,%_MD5,$(objects))
58
59###############################################################################
60# Downloading, checking, md5sum
61###############################################################################
62
63$(patsubst %,$(DIR_CHK)/%,$(objects)) :
64 @$(CHECK)
65
66$(patsubst %,$(DIR_DL)/%,$(objects)) :
67 @$(LOAD)
68
69$(subst %,%_MD5,$(objects)) :
70 @$(MD5)
71
72###############################################################################
73# Installation Details
74###############################################################################
75
76$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
77 @$(PREBUILD)
78 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xjf $(DIR_DL)/$(DL_FILE)
79
befea07c
BS
80 # Xen
81ifeq "$(XEN)" "1"
82# some dirty hacks that it is building
d6c3183a
BS
83# mv /usr/src/linux/include/linux/tracepoint.h /usr/src/linux/include/linux/tracepoint.h.xen
84# touch /usr/src/linux/include/linux/tracepoint.h
85# cd /usr/src/ && patch -Np1 < $(DIR_SRC)/src/patches/compat-xen-1.patch
befea07c
BS
86endif
87
999d55de 88# Apply some wlan-card patches
28d17eda 89 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/compat-wireless_rt2500pci-skb_allignment.patch
999d55de 90
a5ba47dc
AF
91# Enable B43 NPHY / PHY_LP
92 echo "CONFIG_B43_NPHY=y" >> $(DIR_APP)/config.mk
93 echo "CONFIG_B43_PHY_LP=y" >> $(DIR_APP)/config.mk
2b2e03ed 94
a5ba47dc 95
3fa051a0
AF
96 # This is for stable version
97 # Build only the modules
98 cd $(DIR_APP) && sed -i -e "s|install: uninstall modules|install: modules|g" Makefile
99 cd $(DIR_APP) && sed -i -e "s|\t@# All the scripts|\nende:|g" Makefile
100
101 cd $(DIR_APP) && make KLIB=/lib/modules/$(KVER)-$(VERSUFIX) KMODDIR=kernel install
102
103
104 # This is for new developer versions (New makefile)
105 # cd $(DIR_APP) && make KLIB=/lib/modules/$(KVER)-$(VERSUFIX) KMODDIR=kernel install-modules
106
107 # # The makefile put the modules to a wrong place move back...
108 # cp -rf /lib/modules/$(KVER)-$(VERSUFIX)/lib /
109 # rm -rf /lib/modules/$(KVER)-$(VERSUFIX)/lib
e0c2ffca 110
befea07c
BS
111 # Xen
112ifeq "$(XEN)" "1"
113# remove dirty hacks. restores to the status before the dirty hacks
d6c3183a
BS
114# cd /usr/src/ && patch -Np1 < $(DIR_SRC)/src/patches/compat-xen-2.patch
115# mv /usr/src/linux/include/linux/tracepoint.h.xen /usr/src/linux/include/linux/tracepoint.h
befea07c
BS
116endif
117
e0c2ffca
AF
118 # Set Regulatory Domain to "EU" (use Channel 1-14 max. 20db)
119 echo options cfg80211 ieee80211_regdom=EU > /etc/modprobe.d/cfg80211
cd7d7883
AF
120
121 # Remove original kernel rtl818x modules (compat wireless use the
122 # place of newer kernels and so not overwrite it...
123 -rm -rf /lib/modules/$(KVER)-$(VERSUFIX)/kernel/drivers/net/wireless/rtl818?.ko
124
a5ba47dc 125 -rm -rf $(DIR_APP)
999d55de 126 @$(POSTBUILD)
befea07c 127