blob: 088d29fdaca0bc3749c64043a020ad6f774a6065 (
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
|
#
# MIPS Creator CI20 native u-boot:
# ===============================
# http://elinux.org/CI20_Dev_Zone#Building_uboot_from_sources
#
# clone:
# $ git clone https://github.com/MIPS/CI20_u-boot.git
#
url = git://radix.pro/Ingenic/u-boot
repo_name = CI20_u-boot
#
# List of tags to be extracted:
# ============================
#
# Revisions from 'ci20-v2013.10' branch. Supports MIPS Creator CI20.
#
# hash | date
# ----------------------------------------+--------
revisions = 6cfaf802b580f2f7e92a5dec705ff9c196c637b4-20150826
revisions += a4f583551d0025eb957ee5c9cb68657a429e4914-20150915
git_repo = .git_clone
versions = $(foreach tag, $(revisions), $(addprefix ci20-2013.10-, $(shell echo $(tag) | cut -f 2 -d '-')))
tarballs = $(addsuffix .tar.bz2, $(addprefix u-boot-, $(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 '-'` ; \
date=`echo $$revision | cut -f 2 -d '-'` ; \
if [ ! -f u-boot-ci20-2013.10-$$date.tar.bz2 ]; then \
echo -e "\n======= Creating 'u-boot-ci20-2013.10-$$date.tar.bz2' snapshot =======" ; \
( cd $(repo_name) && \
git archive --format=tar --prefix=u-boot-ci20-2013.10-$$date/ $$hash | \
bzip2 >../u-boot-ci20-2013.10-$$date.tar.bz2 ) ; \
fi ; \
done
$(sha1s): %.tar.bz2.sha1sum : %.tar.bz2
@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)
|