blob: 653ceb09e795c1492ddcc2b81a09330a2ef8e6ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
#
# Boundary Devices i.MX6 Linux Tree: https://github.com/boundarydevices/linux-imx6.git
#
url = git://radix.pro/freescale/boundary
repo_name = linux-imx6
#
# List of tags to be extracted:
# ============================
#
# Revisions from boundary-imx_3.14.28_1.0.0_ga branch used for i.MX6:
#
# hash | version | date
# ----------------------------------------+------------+------
revisions = f51af70093e980596fe15107b3848ef245ee4b4e:imx6-3.14.28:20160304
#
# Revisions from boundary-imx_4.1.15_2.0.0_ga branch used for i.MX6:
#
# hash | version | date
# ----------------------------------------+-----------+------
revisions += 690a19a892f2b3621fedbdffd45c694b478a649e:imx6-4.1.15:20190824
#
# Revisions from boundary-imx_4.9.x_1.0.0_ga branch used for i.MX6:
#
# hash | version | date
# ----------------------------------------+-----------+------
revisions += 1ec20712718b788a0c13dfedeabc29fe0002303e:imx6-4.9.88:20190824
#
# Revisions from boundary-imx_4.14.x_2.0.0_ga branch used for i.MX6:
#
# hash | version | date
# ----------------------------------------+------------+------
revisions += 0457288099908383fd9d3b37047a6a400a79764a:imx6-4.14.98:20190925
git_repo = .git_clone
suffix = tar.xz
versions = $(foreach tag, $(revisions), $(addprefix $(shell echo $(tag) | cut -f 2 -d ':')-, $(shell echo $(tag) | cut -f 3 -d ':')))
tarballs = $(addsuffix .$(suffix), $(addprefix linux-, $(versions)))
sha1s = $(addsuffix .sha1sum, $(tarballs))
TARGETS = repository_clean
all: $(TARGETS)
.PHONY: downloads_clean repository_clean
$(git_repo):
@echo -e "\n======= Clone $(repo_name).git repository =======\n"
@rm -rf $(repo_name)
@git clone $(url)/$(repo_name).git $(repo_name)
@touch $@
$(tarballs): $(git_repo)
@for revision in $(revisions) ; do \
hash=`echo $$revision | cut -f 1 -d ':'` ; \
branch=`echo $$revision | cut -f 2 -d ':'` ; \
date=`echo $$revision | cut -f 3 -d ':'` ; \
if [ ! -f linux-$$branch-$$date.$(suffix) ]; then \
echo -e "\n======= Creating 'linux-$$branch-$$date.$(suffix)' snapshot =======" ; \
( cd $(repo_name) && \
git archive --format=tar --prefix=linux-$$branch-$$date/ $$hash | \
xz >../linux-$$branch-$$date.$(suffix) ) ; \
fi ; \
done
$(sha1s): %.$(suffix).sha1sum : %.$(suffix)
@for tarball in $< ; do \
echo -e "\n======= Calculation the '$$tarball' sha1sum =======" ; \
sha1sum --binary $$tarball > $$tarball.sha1sum ; \
done
repository_clean: $(sha1s)
@echo -e "\n======= Remove cloned $(repo_name).git repository =======\n"
@rm -rf $(git_repo) $(repo_name)
downloads_clean:
@rm -rf $(tarballs) $(sha1s)
@rm -rf $(git_repo) $(repo_name)
|