]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/pcengines-apu-firmware
suricata: Change midstream policy to "pass-flow"
[ipfire-2.x.git] / lfs / pcengines-apu-firmware
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2020 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 = 4.11.0.6
28
29 THISAPP = pcengines-apu-firmware-$(VER)
30 DL_FROM = $(URL_IPFIRE)
31 DIR_APP = $(DIR_SRC)/$(THISAPP)
32 TARGET = $(DIR_INFO)/$(THISAPP)
33 PROG = pcengines-apu-firmware
34 PAK_VER = 6
35 SUP_ARCH = i586 x86_64
36
37 DEPS = firmware-update
38
39 ###############################################################################
40 # Top-level Rules
41 ###############################################################################
42
43 objects = \
44 apu1_v$(VER).rom \
45 apu2_v$(VER).rom \
46 apu3_v$(VER).rom \
47 apu4_v$(VER).rom \
48 apu5_v$(VER).rom
49
50 apu1_v$(VER).rom = $(DL_FROM)/apu1_v$(VER).rom
51 apu2_v$(VER).rom = $(DL_FROM)/apu2_v$(VER).rom
52 apu3_v$(VER).rom = $(DL_FROM)/apu3_v$(VER).rom
53 apu4_v$(VER).rom = $(DL_FROM)/apu4_v$(VER).rom
54 apu5_v$(VER).rom = $(DL_FROM)/apu5_v$(VER).rom
55
56 apu1_v$(VER).rom_MD5 = aa135df1cdbdf488a2c623020c9c94b3
57 apu2_v$(VER).rom_MD5 = ba861d29bb90491612e92de8d7db3065
58 apu3_v$(VER).rom_MD5 = 52d51b4c0ea1d4a7e05f8b48ec57c0d8
59 apu4_v$(VER).rom_MD5 = 22eba7cd14d2be3ddfaa4159f5c169af
60 apu5_v$(VER).rom_MD5 = de4da830a5424028b7492876edb41c86
61
62 install : $(TARGET)
63
64 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
65
66 download :$(patsubst %,$(DIR_DL)/%,$(objects))
67
68 md5 : $(subst %,%_MD5,$(objects))
69
70 dist:
71 @$(PAK)
72
73 ###############################################################################
74 # Downloading, checking, md5sum
75 ###############################################################################
76
77 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
78 @$(CHECK)
79
80 $(patsubst %,$(DIR_DL)/%,$(objects)) :
81 @$(LOAD)
82
83 $(subst %,%_MD5,$(objects)) :
84 @$(MD5)
85
86 ###############################################################################
87 # Installation Details
88 ###############################################################################
89
90 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
91 @$(PREBUILD)
92
93 # Install firmware to /lib/firmware
94 mkdir -pv /lib/firmware/pcengines/apu
95 cd $(DIR_DL) && install -v -m 644 $(objects) \
96 /lib/firmware/pcengines/apu
97
98 @$(POSTBUILD)