]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/pcengines-apu-firmware
Switch checksums from MD5 to BLAKE2
[people/pmueller/ipfire-2.x.git] / lfs / pcengines-apu-firmware
CommitLineData
0e54ca26
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
19473c97 4# Copyright (C) 2007-2021 IPFire Team <info@ipfire.org> #
0e54ca26
MT
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
f15707c7
RR
27SUMMARY = Firmware files for PC Engines apu system boards
28
f481a92f 29VER = 4.15.0.1
0e54ca26
MT
30
31THISAPP = pcengines-apu-firmware-$(VER)
32DL_FROM = $(URL_IPFIRE)
33DIR_APP = $(DIR_SRC)/$(THISAPP)
34TARGET = $(DIR_INFO)/$(THISAPP)
35PROG = pcengines-apu-firmware
f481a92f 36PAK_VER = 10
6cf219c4 37SUP_ARCH = x86_64
0e54ca26 38
2dc2a278 39DEPS = firmware-update
0e54ca26 40
f15707c7
RR
41SERVICES =
42
0e54ca26
MT
43###############################################################################
44# Top-level Rules
45###############################################################################
46
47objects = \
48 apu1_v$(VER).rom \
49 apu2_v$(VER).rom \
50 apu3_v$(VER).rom \
51 apu4_v$(VER).rom \
17a8437e
AF
52 apu5_v$(VER).rom \
53 apu6_v$(VER).rom
0e54ca26
MT
54
55apu1_v$(VER).rom = $(DL_FROM)/apu1_v$(VER).rom
56apu2_v$(VER).rom = $(DL_FROM)/apu2_v$(VER).rom
57apu3_v$(VER).rom = $(DL_FROM)/apu3_v$(VER).rom
58apu4_v$(VER).rom = $(DL_FROM)/apu4_v$(VER).rom
59apu5_v$(VER).rom = $(DL_FROM)/apu5_v$(VER).rom
17a8437e
AF
60apu6_v$(VER).rom = $(DL_FROM)/apu6_v$(VER).rom
61
9a7e4d85
PM
62apu1_v$(VER).rom_BLAKE2 = 317bf51d82c1c99514d3dc3d6324e8f6c6b4768f2052902673a21fbdb554f6602940dbd531a80074a00ca9777d72bd8772deac5be2e4df38c8675e1d67d426ee
63apu2_v$(VER).rom_BLAKE2 = eaa5fa9bf1b0f1439b41cc2d48e0db24fb3e1096419ca728c98644d43a5bf0164380ab7173cbcbcf14b38052128c4b6c0bd8032e65f12c6f79262801fc534875
64apu3_v$(VER).rom_BLAKE2 = 11af9de100d7da62edd585c1327325cdd661eafc1e540f9395728ee47e35acf427348b29e011f5269e86ab6d6923f7e2a47b59cdf7d5a982cbe4328abc10652c
65apu4_v$(VER).rom_BLAKE2 = bf57beb63cd7581d6d3f24e2c6f51f15c540dc99036a2ccc22ecf9e3fbc8f37bf5bc46bb96fa9f854b952aa9a09130d7096f0a3c372b040cfcfc2abbf644c428
66apu5_v$(VER).rom_BLAKE2 = e296e2e168be85220f22e00d7cd075c73660f18ffb28b26a16c01129f77e2ed50148b3c95405945bcacdebf9d6e4e76ef08ffcef362898c46a381453844d9606
67apu6_v$(VER).rom_BLAKE2 = d6ce353299499be201af03ee678aa8bf3e33bdc2c9c952e91242b67febf9678bb85b6f6ed1b7d7b4278f5921cadb306451603d6c59bdf45d70793faf2c26312b
0e54ca26
MT
68
69install : $(TARGET)
70
71check : $(patsubst %,$(DIR_CHK)/%,$(objects))
72
73download :$(patsubst %,$(DIR_DL)/%,$(objects))
74
9a7e4d85 75b2 : $(subst %,%_BLAKE2,$(objects))
0e54ca26 76
d01b47b7 77dist:
0e54ca26
MT
78 @$(PAK)
79
80###############################################################################
9a7e4d85 81# Downloading, checking, b2sum
0e54ca26
MT
82###############################################################################
83
84$(patsubst %,$(DIR_CHK)/%,$(objects)) :
85 @$(CHECK)
86
87$(patsubst %,$(DIR_DL)/%,$(objects)) :
88 @$(LOAD)
89
9a7e4d85
PM
90$(subst %,%_BLAKE2,$(objects)) :
91 @$(B2SUM)
0e54ca26
MT
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)