]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/pcengines-apu-firmware
Merge branch 'master' into temp-c165-development
[ipfire-2.x.git] / lfs / pcengines-apu-firmware
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2021 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 SUMMARY = Firmware files for PC Engines apu system boards
28
29 VER = 4.15.0.1
30
31 THISAPP = pcengines-apu-firmware-$(VER)
32 DL_FROM = $(URL_IPFIRE)
33 DIR_APP = $(DIR_SRC)/$(THISAPP)
34 TARGET = $(DIR_INFO)/$(THISAPP)
35 PROG = pcengines-apu-firmware
36 PAK_VER = 10
37 SUP_ARCH = x86_64
38
39 DEPS = firmware-update
40
41 SERVICES =
42
43 ###############################################################################
44 # Top-level Rules
45 ###############################################################################
46
47 objects = \
48 apu1_v$(VER).rom \
49 apu2_v$(VER).rom \
50 apu3_v$(VER).rom \
51 apu4_v$(VER).rom \
52 apu5_v$(VER).rom \
53 apu6_v$(VER).rom
54
55 apu1_v$(VER).rom = $(DL_FROM)/apu1_v$(VER).rom
56 apu2_v$(VER).rom = $(DL_FROM)/apu2_v$(VER).rom
57 apu3_v$(VER).rom = $(DL_FROM)/apu3_v$(VER).rom
58 apu4_v$(VER).rom = $(DL_FROM)/apu4_v$(VER).rom
59 apu5_v$(VER).rom = $(DL_FROM)/apu5_v$(VER).rom
60 apu6_v$(VER).rom = $(DL_FROM)/apu6_v$(VER).rom
61
62 apu1_v$(VER).rom_MD5 = 6b53385232624d48ec7c8fc7f0390413
63 apu2_v$(VER).rom_MD5 = 062b6fe09e22077b7155f3eb3bf8ec34
64 apu3_v$(VER).rom_MD5 = caa7a5b8d4977de9e4135ab1bc1d15dd
65 apu4_v$(VER).rom_MD5 = ffc0f94f2d9c6c25e1d53e0386fbd20b
66 apu5_v$(VER).rom_MD5 = e63e1f3392a414942ca65cfa46868665
67 apu6_v$(VER).rom_MD5 = 9264657ad3fca49101b28901cf65f4bf
68
69 install : $(TARGET)
70
71 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
72
73 download :$(patsubst %,$(DIR_DL)/%,$(objects))
74
75 md5 : $(subst %,%_MD5,$(objects))
76
77 dist:
78 @$(PAK)
79
80 ###############################################################################
81 # Downloading, checking, md5sum
82 ###############################################################################
83
84 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
85 @$(CHECK)
86
87 $(patsubst %,$(DIR_DL)/%,$(objects)) :
88 @$(LOAD)
89
90 $(subst %,%_MD5,$(objects)) :
91 @$(MD5)
92
93 ###############################################################################
94 # Installation Details
95 ###############################################################################
96
97 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
98 @$(PREBUILD)
99
100 # Install firmware to /lib/firmware
101 mkdir -pv /lib/firmware/pcengines/apu
102 cd $(DIR_DL) && install -v -m 644 $(objects) \
103 /lib/firmware/pcengines/apu
104
105 @$(POSTBUILD)