]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/pcengines-apu-firmware
pcengines-firmware: update to 4.10.0.3
[people/pmueller/ipfire-2.x.git] / lfs / pcengines-apu-firmware
CommitLineData
0e54ca26
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007-2019 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
25include Config
26
43fa700e 27VER = 4.10.0.3
0e54ca26
MT
28
29THISAPP = pcengines-apu-firmware-$(VER)
30DL_FROM = $(URL_IPFIRE)
31DIR_APP = $(DIR_SRC)/$(THISAPP)
32TARGET = $(DIR_INFO)/$(THISAPP)
33PROG = pcengines-apu-firmware
43fa700e 34PAK_VER = 4
1fd34bd2 35SUP_ARCH = i586 x86_64
0e54ca26
MT
36
37DEPS = "firmware-update"
38
39###############################################################################
40# Top-level Rules
41###############################################################################
42
43objects = \
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
50apu1_v$(VER).rom = $(DL_FROM)/apu1_v$(VER).rom
51apu2_v$(VER).rom = $(DL_FROM)/apu2_v$(VER).rom
52apu3_v$(VER).rom = $(DL_FROM)/apu3_v$(VER).rom
53apu4_v$(VER).rom = $(DL_FROM)/apu4_v$(VER).rom
54apu5_v$(VER).rom = $(DL_FROM)/apu5_v$(VER).rom
55
43fa700e
AF
56apu1_v$(VER).rom_MD5 = f996d2272685683b1bf8be1f27b44f18
57apu2_v$(VER).rom_MD5 = 1ec2df4c0f9be2443192fead8e3b49e9
58apu3_v$(VER).rom_MD5 = 4a5cee9b621432627d7f3dcbb6191904
59apu4_v$(VER).rom_MD5 = a4a8bd06ebfa88907f5a4ddb6d7c3edc
60apu5_v$(VER).rom_MD5 = c389d490d02810bf65f0f3abb461070e
0e54ca26
MT
61
62install : $(TARGET)
63
64check : $(patsubst %,$(DIR_CHK)/%,$(objects))
65
66download :$(patsubst %,$(DIR_DL)/%,$(objects))
67
68md5 : $(subst %,%_MD5,$(objects))
69
70dist:
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)