]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/xr819-firmware
suricata: Change midstream policy to "pass-flow"
[ipfire-2.x.git] / lfs / xr819-firmware
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2018 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 VER = c01.08.0043
28 THISAPP = xr819-firmware-$(VER)
29 DL_FILE = $(THISAPP).tar.xz
30 DL_FROM = $(URL_IPFIRE)
31 TARGET = $(DIR_INFO)/$(THISAPP)
32
33 ###############################################################################
34 # Top-level Rules
35 ###############################################################################
36
37 objects = $(DL_FILE)
38
39 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
40
41 $(DL_FILE)_MD5 = b75463ca4649a5b11a5a18e8c8ff8908
42
43 install : $(TARGET)
44
45 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
46
47 download :$(patsubst %,$(DIR_DL)/%,$(objects))
48
49 md5 : $(subst %,%_MD5,$(objects))
50
51 ###############################################################################
52 # Downloading, checking, md5sum
53 ###############################################################################
54
55 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
56 @$(CHECK)
57
58 $(patsubst %,$(DIR_DL)/%,$(objects)) :
59 @$(LOAD)
60
61 $(subst %,%_MD5,$(objects)) :
62 @$(MD5)
63
64 ###############################################################################
65 # Installation Details
66 ###############################################################################
67
68 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
69 @$(PREBUILD)
70 mkdir -p /lib/firmware/xr819
71 @cd /lib/firmware/xr819 && tar axf $(DIR_DL)/$(DL_FILE)
72 @$(POSTBUILD)