]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/xr819-firmware
core130: remove lm_sensors config
[ipfire-2.x.git] / lfs / xr819-firmware
CommitLineData
37b86fa9
AF
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007-2018 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
27VER = c01.08.0043
28THISAPP = xr819-firmware-$(VER)
29DL_FILE = $(THISAPP).tar.xz
30DL_FROM = $(URL_IPFIRE)
31TARGET = $(DIR_INFO)/$(THISAPP)
32
33###############################################################################
34# Top-level Rules
35###############################################################################
36
37objects = $(DL_FILE)
38
39$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
40
41$(DL_FILE)_MD5 = b75463ca4649a5b11a5a18e8c8ff8908
42
43install : $(TARGET)
44
45check : $(patsubst %,$(DIR_CHK)/%,$(objects))
46
47download :$(patsubst %,$(DIR_DL)/%,$(objects))
48
49md5 : $(subst %,%_MD5,$(objects))
50
51###############################################################################
52# Downloading, checking, md5sum
53###############################################################################
54
55$(patsubst %,$(DIR_CHK)/%,$(objects)) :
56 @$(CHECK)
57
58$(patsubst %,$(DIR_DL)/%,$(objects)) :
59 @$(LOAD)
60
61$(subst %,%_MD5,$(objects)) :
62 @$(MD5)
63
64###############################################################################
65# Installation Details
66###############################################################################
67
68$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
69 @$(PREBUILD)
70 mkdir -p /lib/firmware/xr819
71 @cd /lib/firmware/xr819 && tar axf $(DIR_DL)/$(DL_FILE)
72 @$(POSTBUILD)