]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/pcengines-apu-firmware
core140: ship glibc built with new gcc
[ipfire-2.x.git] / lfs / pcengines-apu-firmware
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
25 include Config
26
27 VER = 4.10.0.3
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 = 4
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 = f996d2272685683b1bf8be1f27b44f18
57 apu2_v$(VER).rom_MD5 = 1ec2df4c0f9be2443192fead8e3b49e9
58 apu3_v$(VER).rom_MD5 = 4a5cee9b621432627d7f3dcbb6191904
59 apu4_v$(VER).rom_MD5 = a4a8bd06ebfa88907f5a4ddb6d7c3edc
60 apu5_v$(VER).rom_MD5 = c389d490d02810bf65f0f3abb461070e
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)