blob: 5c4b5353b899b92a867ab85a2b14482de87d494a (
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
86
87
88
89
90
|
#
# WesionTek S905X Linux Kernel: https://github.com/khadas/linux.git
#
url = git://radix.pro/Khadas
repo_name = linux
#
# List of tags to be extracted:
# ============================
#
# Revisions from 'Vim' branch used for Khadas Vim S905X devices.
#
# hash | snapshot | date
# ----------------------------------------+--------------+--------
revisions = 9ff62f1c4e333feb64bc419191215cec2c7c7c73:khadas-3.14.29:20160919
revisions += 76fd19ac41bb774e396ce8009ff665f29c26c535:khadas-3.14.29:20161211
#
# Revisions from 'ubuntu' branch used for Khadas Vim S905X devices.
#
# hash | snapshot | date
# ----------------------------------------+--------------+--------
revisions += fbd6d58b43058868e4dd3795a1e513e1c0c74ffc:khadas-3.14.29:20170107
revisions += 94602ef5562978a8d8b5c7770c113074a714dbdb:khadas-3.14.29:20170119
#
# Default Linux config file name:
#
_defconfig = kvim_defconfig
git_repo = .git_clone
versions = $(foreach tag, $(revisions), $(addprefix $(shell echo $(tag) | cut -f 2 -d ':')-, $(shell echo $(tag) | cut -f 3 -d ':')))
tarballs = $(addsuffix .tar.xz, $(addprefix linux-, $(versions)))
defconfigs = $(addsuffix .defconfig, $(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 ':'` ; \
snapshot=`echo $$revision | cut -f 2 -d ':'` ; \
date=`echo $$revision | cut -f 3 -d ':'` ; \
if [ ! -f linux-$$snapshot-$$date.tar.xz ]; then \
echo -e "\n======= Creating 'linux-$$snapshot-$$date.tar.xz' snapshot =======" ; \
( cd $(repo_name) && \
git archive --format=tar --prefix=linux-$$snapshot-$$date/ $$hash | \
xz >../linux-$$snapshot-$$date.tar.xz ) ; \
fi ; \
done
$(defconfigs): %.defconfig: %.tar.xz
@for arch in $< ; do \
version=`echo $$arch | sed 's/\(^[a-zA-Z]*\)\(-\)\([a-zA-z0-9]*-[0-9][.0-9]*-[0-9]*\)\(.tar.xz\)/\3/'` ; \
defcfg=$(_defconfig) ; \
echo -e "\n======= Extracting default '.config' from '$$arch' tarball =======" ; \
( tar -xJf $$arch \
linux-$$version/arch/arm64/configs/$$defcfg && \
cp linux-$$version/arch/arm64/configs/$$defcfg linux-$$version.defconfig && \
rm -rf linux-$$version ) ; \
done
@chmod a-x *.defconfig
$(sha1s): %.tar.xz.sha1sum : %.tar.xz
@for tarball in $< ; do \
echo -e "\n======= Calculation the '$$tarball' sha1sum =======" ; \
sha1sum --binary $$tarball > $$tarball.sha1sum ; \
done
repository_clean: $(defconfigs) $(sha1s)
@echo -e "\n======= Remove cloned $(repo_name).git repository =======\n"
@rm -rf $(git_repo) $(repo_name)
downloads_clean:
@rm -rf $(tarballs) $(defconfigs) $(sha1s)
@rm -rf $(git_repo) $(repo_name)
|