]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/hostapd
suricata: Change midstream policy to "pass-flow"
[ipfire-2.x.git] / lfs / hostapd
CommitLineData
fad7b108
AF
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
b493875f 4# Copyright (C) 2007-2023 IPFire Team <info@ipfire.org> #
fad7b108
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
808e3ea1 27SUMMARY = Daemon for running a WPA capable Access Point
6491a923 28VER = 2_10
f15707c7 29
6491a923
MF
30THISAPP = hostap_$(VER)
31DL_FILE = $(THISAPP).tar.bz2
fad7b108 32DL_FROM = $(URL_IPFIRE)
6491a923 33DIR_APP = $(DIR_SRC)/$(THISAPP)
fad7b108
AF
34TARGET = $(DIR_INFO)/$(THISAPP)
35PROG = hostapd
87d0d07b 36PAK_VER = 63
fad7b108 37
2dc2a278 38DEPS =
fad7b108 39
808e3ea1
PM
40SERVICES = hostapd
41
fad7b108
AF
42###############################################################################
43# Top-level Rules
44###############################################################################
45
46objects = $(DL_FILE)
47
48$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
49
9a7e4d85 50$(DL_FILE)_BLAKE2 = de474630835a1208ce456d3151759cd3411dc63b2470de7144117634d4985aba1c878fd2cc2388cf6226bc0674eb2bf48cc4b4491f85f3461966b0278f75ea1e
fad7b108
AF
51
52install : $(TARGET)
53
54check : $(patsubst %,$(DIR_CHK)/%,$(objects))
55
56download :$(patsubst %,$(DIR_DL)/%,$(objects))
57
9a7e4d85 58b2 : $(subst %,%_BLAKE2,$(objects))
fad7b108 59
15b6f6f9 60dist:
fad7b108
AF
61 @$(PAK)
62
63###############################################################################
9a7e4d85 64# Downloading, checking, b2sum
fad7b108
AF
65###############################################################################
66
67$(patsubst %,$(DIR_CHK)/%,$(objects)) :
68 @$(CHECK)
69
70$(patsubst %,$(DIR_DL)/%,$(objects)) :
71 @$(LOAD)
72
9a7e4d85
PM
73$(subst %,%_BLAKE2,$(objects)) :
74 @$(B2SUM)
fad7b108
AF
75
76###############################################################################
77# Installation Details
78###############################################################################
79
80$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
81 @$(PREBUILD)
6491a923 82 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
d7d57745 83
2fc8d419
MF
84 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/hostapd/hostapd-2.9-increase_EAPOL-timeouts.patch
85 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/hostapd/hostapd-2.9-noscan.patch
d823d5f0 86
d7be31cb
AF
87 cd $(DIR_APP)/hostapd && cp $(DIR_SRC)/config/hostapd/config ./.config
88 cd $(DIR_APP)/hostapd && sed -e "s@/usr/local@/usr@g" -i Makefile
6491a923 89 cd $(DIR_APP)/hostapd && make $(MAKETUNING) $(EXTRA_MAKE)
999d55de 90 cd $(DIR_APP)/hostapd && make install
07603508 91 install -v -m 644 $(DIR_SRC)/config/backup/includes/hostapd /var/ipfire/backup/addons/includes/hostapd
c6060f2d 92 # install initscript
808e3ea1 93 $(call INSTALL_INITSCRIPTS,$(SERVICES))
cd2b10d6
AF
94 mkdir -p /var/ipfire/wlanap
95 touch /var/ipfire/wlanap/settings
9fce0ca5 96 cp -vrf $(DIR_SRC)/config/hostapd/hostapd.conf /var/ipfire/wlanap/hostapd.conf
92f2665d
CS
97 touch /var/ipfire/wlanap/hostapd.accept
98 touch /var/ipfire/wlanap/hostapd.deny
99 cp -vrf /var/ipfire/wlanap/hostapd.* /etc/
91197a3f
AF
100 chown nobody:nobody /var/ipfire/wlanap/*
101 chmod 644 /var/ipfire/wlanap/*
fad7b108
AF
102 @rm -rf $(DIR_APP)
103 @$(POSTBUILD)