blob: 78b6abb75157ebcadfaad5ee44a5dd6e2a710667 (
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
#!/bin/sh
#
# Initial port bootstrap scripts
# bootstrap-prepare.sh
# Downloads, configures, and patches packages to be built.
#
# Copyright (C) 2013 Patrick "P. J." McDermott
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
set -e
IDX_SHA256SUM='1df55a00659f82da3a595c154ce2fbfb4b9ca355b5bc6edceb34076536d7f09d'
SCRIPT_DIR=
ARCH=
PLAT=
main()
{
SCRIPT_DIR="$(cd "${0%/*}" && pwd)"
ARCH="$(cat /etc/proteanos_arch)"
PLAT="$(cat /etc/proteanos_plat)"
cat <<-EOF
Preparing packages for bootstrap...
===================================
EOF
prepare_file_system_fake
prepare_packages_from_git
prepare_packages
prepare_file_system
}
log()
{
local msg i
msg="$(printf "${@}")"
printf '\n%s\n' "${msg}"
i=0
while [ ${i} -lt ${#msg} ]; do
printf '-'
i=$(($i + 1))
done
printf '\n\n'
}
prepare_file_system_fake()
{
# ob-platconf needs to find this file. Otherwise, opkbuild fails to
# build busybox. config-dev provides this, but that isn't fetched until
# after busybox is built.
sudo mkdir -p "/usr/local/share/platconf/${PLAT}/busybox"
sudo touch "/usr/local/share/platconf/${PLAT}/busybox/busybox.config"
# opkhelper installs an opkbuild helper configuration script named
# "opkhelper". ProteanOS packages depend on "opkhelper-3.0".
sudo ln -sf opkhelper /usr/local/share/opkbuild/helpers/opkhelper-3.0
}
prepare_packages_from_git()
{
local pkgs_list repo branch patch
if [ -e "${SCRIPT_DIR}/bootstrap-pkgs-git_${ARCH}.txt" ]; then
pkgs_list="${SCRIPT_DIR}/bootstrap-pkgs-git_${ARCH}.txt"
elif [ -e "${SCRIPT_DIR}/bootstrap-pkgs-git.txt" ]; then
pkgs_list="${SCRIPT_DIR}/bootstrap-pkgs-git.txt"
else
return 0
fi
[ -d pkg ] || mkdir pkg
cd pkg
while read repo branch; do
if [ -f "${repo##*/}_"*'_src_all.changes' ]; then
continue
fi
log 'Preparing package %s...' "${repo##*/}"
if [ ! -d "${repo##*/}/.git" ]; then
git clone --depth 1 --branch "${branch}" \
"git://git.proteanos.com/pkg/${repo}.git"
fi
cd "${repo##*/}"
git pull origin "${branch}"
if [ -d "${SCRIPT_DIR}/patches/${repo##*/}" ]; then
printf 'Patching package %s...\n' "${repo##*/%/}"
for patch in "${SCRIPT_DIR}/patches/${repo##*/}/"*; do
patch -N -p 1 -u -i "${patch}" || \
true
done
fi
if [ -x config ]; then
./config clean
./config
fi
rm -f local.mk
if [ -f source.mk -a ! -f "${repo##*/}"*.orig.tar* ]; then
if [ -f "../.cache/${repo##*/}"*.orig.tar* ]; then
mv "../.cache/${repo##*/}"*.orig.tar* .
else
opkbuild -bCT source
rm -Rf tmp
fi
fi
opkbuild -SC
rm -Rf tmp
cd ..
done <"${pkgs_list}"
cd ..
}
: <<'EOF'
prepare_packages_from_ftp()
{
local pkg src_opk path
cd pkg
for pkg in ; do
log 'Preparing package %s...' "${pkg}"
if [ ! -d "${pkg}" ]; then
src_opk="src-${pkg}_*_src_all.opk"
path="pub/pkg/${pkg}/${src_opk}"
wget "ftp://files.proteanos.com/${path}"
tar -xzOf ${src_opk} data.tar.gz | tar -xz
mv "usr/src/${pkg}_"* "${pkg}"
fi
done
[ -d usr/src ] && rmdir usr/src
[ -d usr ] && rmdir usr
cd ..
}
EOF
prepare_packages()
{
local mirror rand line filename sha256sum
log 'Selecting package archive mirror...'
if [ -r "${SCRIPT_DIR}/mirror" ]; then
mirror="$(cat "${SCRIPT_DIR}/mirror")"
else
rand=$(date '+%S')
rand=$(($rand % 3))
case ${rand} in
0)
mirror='http://us.mirror.gnu.dk/pub/proteanos'
;;
1)
mirror='http://eu.mirror.gnu.dk/pub/proteanos'
;;
2)
mirror='http://mirror.oss.maxcdn.com/proteanos'
;;
esac
fi
log 'Downloading Packages index file...'
wget -O Packages "${mirror}/feeds/dev/trunk/src/all/base/Packages"
if ! printf '%s Packages\n' "${IDX_SHA256SUM}" | sha256sum -c -; then
printf 'ERROR: Checksum of Packages index file failed!\n' >&2
exit 1
fi
log 'Downloading source packages...'
while IFS='' read -r line; do
if [ "x${line%: *}" = 'xFilename' ]; then
filename="${line}"
filename="${filename#Filename: }"
elif [ "x${line%: *}" = 'xSHA256sum' ]; then
sha256sum="${line}"
sha256sum="${sha256sum#SHA256sum: }"
get_pkg "${mirror}" "${filename}" "${sha256sum}"
fi
done <Packages
}
get_pkg()
{
local mirror="${1}"
local filename="${2}"
local sha256sum="${3}"
local pkg_ver
pkg_ver="${filename##*/src-}"
pkg_ver="${pkg_ver%_src_all.opk}"
grep "^${pkg_ver%_*}\$" "${SCRIPT_DIR}/bootstrap-pkgs.txt" \
>/dev/null 2>&1 || return
[ -d "pkg/${pkg_ver%_*}" ] && return
[ -d pkg ] || mkdir pkg
cd pkg
wget -O "${filename##*/}" \
"${mirror}/feeds/dev/trunk/src/all/base/${filename}"
filename="${filename##*/}"
if ! printf '%s %s\n' "${sha256sum}" "${filename}" | sha256sum -c; then
printf 'ERROR: Checksum of source package file failed!\n' >&2
exit 1
fi
tar -xzOf "${filename}" data.tar.gz | tar -xz
mv "usr/src/${pkg_ver}" "${pkg_ver%_*}"
rmdir usr/src usr
cd ..
}
prepare_file_system()
{
local ma dir bb_ver
if ma=$(dpkg-architecture -qDEB_HOST_MULTIARCH 2>/dev/null); then
log 'Making multiarch directory links...'
for dir in /lib /usr/lib /usr/include; do
if [ ! -e "${dir}/${ARCH}" ]; then
printf '%s/%s -> %s\n' \
"${dir}" "${ARCH}" "${ma}"
sudo ln -s "${ma}" "${dir}/${ARCH}"
fi
done
printf '\n'
log 'Overriding elf_interp macro in gcc-4.7 source package...'
case "${ma}" in
'x86_64-linux-gnu')
interp='ld-linux-x86-64.so.2'
;;
'i386-linux-gnu')
interp='ld-linux.so.2'
;;
'arm-linux-gnueabihf')
interp='ld-linux-armhf.so.3'
;;
esac
printf 'Using %s...\n\n' /lib/${ARCH}/${interp:-ld-*.so.*}
printf 'elf_interp = %s\n' /lib/${ARCH}/${interp:-ld-*.so.*} \
>pkg/gcc-4.7/local.mk
fi
bb_ver="$(sed 's/^busybox (\(.*\)-.*) .*$/\1/; q;' \
pkg/busybox/changelog)"
sudo cp -p "pkg/config-${PLAT}/src/build/busybox/${bb_ver}/busybox.config" \
"/usr/local/share/platconf/${PLAT}/busybox/busybox.config"
sudo cp -p "pkg/config-${PLAT}/src/build/busybox/${bb_ver}/inittab" \
"/usr/local/share/platconf/${PLAT}/busybox/inittab"
}
main "${@}"
|