blob: 7b42726b108bd4328b31982d7d051e9ba0853853 (
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
|
#!/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
SCRIPT_DIR=
ARCH=
main()
{
SCRIPT_DIR="$(cd "${0%/*}" && pwd)"
ARCH="$(cat /etc/proteanos_arch)"
cat <<-EOF
Preparing packages for bootstrap...
===================================
EOF
prepare_packages_from_git
prepare_packages_from_ftp
patch_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_packages_from_git()
{
local repo
[ -d pkg ] || mkdir pkg
cd pkg
for repo in zlib toolchains/binutils linux-libre eglibc \
gmp toolchains/gcc-4.7 toolchains/gcc-defaults \
busybox gmake opkg opkbuild opkhelper-3.0 \
fakeroot file m4 config-dev \
expat gettext libunistring; do
log 'Preparing package %s...' "${repo##*/}"
if [ ! -d "${repo##*/}" ]; then
git clone --depth 1 \
"git://git.proteanos.com/pkg/${repo}.git"
fi
cd "${repo##*/}"
git pull origin master
if [ -x config ]; then
./config clean
PKG_TARGETS="${ARCH}" ./config
fi
rm -f local.mk
if [ -f source.mk -a ! -f "${repo##*/}"*.orig.tar* ]; then
opkbuild -bCT source
fi
opkbuild -SC
cd ..
done
cd ..
}
prepare_packages_from_ftp()
{
local pkg src_opk path
cd pkg
for pkg in mpc mpfr; 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 ..
}
patch_packages()
{
local dir patch
cd pkg
for dir in */; do
if [ -d "${SCRIPT_DIR}/patches/${dir}" ]; then
log 'Patching package %s...' "${dir%/}"
for patch in "${SCRIPT_DIR}/patches/${dir}"*; do
patch -N -p 1 -u -d "${dir}" -i "${patch}" || \
true
done
fi
done
cd ..
}
prepare_file_system()
{
local ma dir
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'
;;
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
sudo mkdir -p /usr/local/share/platconf/dev/busybox/
sudo cp -p pkg/busybox/busybox.config \
/usr/local/share/platconf/dev/busybox/busybox.config
}
main "${@}"
|