blob: 32175deed1731f270f000f5e56052cfd7f5894df (
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
91
92
93
94
95
96
97
98
99
|
# upstream git revision: 775e8180ca39499be8b7f03b018f3de4320c9dcb
# fail if upstream's .config changes
for ((i=0; i<${#sha256sums[@]}; i++)); do
if [ "${sha256sums[${i}]}" = '5b00c25683ca77c6e160861b3e089421215e77951d54c635d8108158f33b6980' ]; then
sha256sums[${i}]='f8ccadfef4280082b0e996e53e3b0e5eb3dc118db2288b36ac3d4b73322a204d'
fi
done
eval "$(
declare -f package_linux-zen-headers | \
sed '
\,/tools/objtool" ,d
\,arch/x86/Makefile, {
a \
install -t "${builddir}/arch/x86" -m644 arch/x86/Makefile_32.cpu
}
'
)"
# use our tarballer instead of cloning from git
#~ for ((i=0; i<${#source[@]}; i++)); do
#~ infos=$(
#~ printf '%s\n' "${source[${i}]}" | \
#~ sed '
#~ s@^\(\([^:]\+\)::\)\?\(git\|hg\)+\([^#?]\+\)\(?signed\)\?#\(\(tag\|commit\)=[^?]\+\)$@\3 \2 \4 \5 \6@
#~ t
#~ s@^\(\([^:]\+\)::\)\?\(git\|hg\)+\([^#?]\+\)#\(\(tag\|commit\)=[^?]\+\)\(?signed\)\?$@\3 \2 \4 \7 \5@
#~ t
#~ d
#~ '
#~ )
#~ if [ -n "${infos}" ]; then
#~ source[${i}]=$(
#~ type="${infos%% *}"
#~ infos="${infos#* }"
#~ if [ -n "${infos%% *}" ]; then
#~ prefix="${infos%% *}"
#~ else
#~ prefix=''
#~ fi
#~ infos="${infos#* }"
#~ repo="${infos%% *}"
#~ repo64=$(
#~ printf '%s' "${repo}" | \
#~ base64 -w0 | \
#~ sed 's/=/%3D/g'
#~ )
#~ infos="${infos#* }"
#~ if [ "${infos%% *}" = '?signed' ]; then
#~ key_check=$(
#~ printf '&valid_keys='
#~ printf '%s,' "${validpgpkeys[@]}" | \
#~ sed 's/,$//'
#~ )
#~ else
#~ key_check=''
#~ fi
#~ infos="${infos#* }"
#~ if [ -z "${prefix}" ]; then
#~ prefix="${repo%.git}"
#~ prefix="${prefix##*/}"
#~ fi
#~ prefix_64=$(
#~ printf '%s/' "${prefix}" | \
#~ base64 -w0 | \
#~ sed 's/=/%3D/g'
#~ )
#~ printf '%s-%s.tar.gz::https://archive-server.archlinux32.org/?t=%s&p=%s&r=%s%s&%s\n' \
#~ "${prefix}" \
#~ "${pkgver}" \
#~ "${type}" \
#~ "${prefix_64}" \
#~ "${repo64}" \
#~ "${key_check}" \
#~ "${infos}"
#~ )
#~ fi
#~ done
# temporary (FS32#163)
eval "$(
declare -f build | \
sed '
s/\bhtmldocs\b//
'
)"
# upstream prepare() does already do the *.patch patching
# avoid using zstd compression in ultra mode (exhausts virtual memory)
source+=('core/linux/no-ultra-zstd.patch')
sha256sums+=('d32270be5fd9c3e3ba50f3aef33f6cfcb85be0c8216f03b777287cc621fdff28')
# https://bbs.archlinux32.org/viewtopic.php?pid=9109#p9109
# avoid "sleepy" VIA C7 CPUs (and possibly others)
source+=('core/linux/acpi-c3.patch')
sha256sums+=('fc44aaf0b68abc9502fd4e0f73345c53b756566b532005466b106bacc9f9bc9c')
|