@@ -38,7 +38,7 @@ export LC_ALL="C"
38
38
39
39
APTNI=" apt-get -q -y --no-install-recommends --force-yes -o Dpkg::Options::=\" --force-confdef\" -o Dpkg::Options::=\" --force-confold\" " ;
40
40
41
- DEBIAN_MIRROR=" http://ftp.at. debian.org /debian/"
41
+ DEBIAN_MIRROR=" http://debian.inode.at /debian/"
42
42
43
43
dir=" ` dirname $0 ` "
44
44
BOOTSTRAP_DIR=" ` cd $dir ; pwd` "
@@ -180,6 +180,12 @@ function doBuild() {
180
180
" $CHRT $APTNI -t sid install $PKG_BUILD "
181
181
182
182
if [ $ARCH == " armhf" ]; then
183
+ check " Clone kernel" \
184
+ " cd $BOOTSTRAP_DIR /third/; ./clone_kernel.sh"
185
+
186
+ check " Cross compile kernel" \
187
+ " cd $BOOTSTRAP_DIR /third/; ./build_kernel.sh"
188
+
183
189
check " Clone dri2" \
184
190
" cd $BOOTSTRAP_DIR /third/; ./clone_dri2.sh"
185
191
@@ -189,6 +195,9 @@ function doBuild() {
189
195
check " Clone sunxi-mali" \
190
196
" cd $BOOTSTRAP_DIR /third/; ./clone_sunxi-mali.sh"
191
197
198
+ check " Clone sunxi-tools" \
199
+ " cd $BOOTSTRAP_DIR /third/; ./clone_sunxi-tools.sh"
200
+
192
201
# check "Clone sunxi-tools" \
193
202
# "cd $BOOTSTRAP_DIR/third/; ./clone_sunxi-tools.sh"
194
203
@@ -217,33 +226,40 @@ function doBuild() {
217
226
" cp -r $BOOTSTRAP_DIR /third/ \" $CHROOT_DIR \" "
218
227
219
228
if [ $ARCH == " armhf" ]; then
220
- check " build dri2" \
229
+
230
+ check " Install kernel" \
231
+ " $CHRT /third/install_kernel.sh"
232
+
233
+ check " Build dri2" \
221
234
" $CHRT /third/build_dri2.sh"
222
235
223
- check " build sunxi-mali" \
236
+ check " Build sunxi-mali" \
224
237
" $CHRT /third//build_sunxi-mali.sh"
225
238
239
+ check " Build sunxi-tools" \
240
+ " $CHRT /third//build_sunxi-tools.sh"
241
+
226
242
# check "build sunxi-tools" \
227
243
# "$CHRT /third/build_sunxi-tools.sh"
228
244
229
- check " build xf86-video-fbturbo" \
245
+ check " Build xf86-video-fbturbo" \
230
246
" $CHRT /third/build_xf86-video-fbturbo.sh"
231
247
232
- check " build libvdpau-sunxi" \
248
+ check " Build libvdpau-sunxi" \
233
249
" $CHRT /third/build_libvdpau-sunxi.sh"
234
250
235
251
fi
236
252
237
- check " build luajit-rocks" \
253
+ check " Build luajit-rocks" \
238
254
" $CHRT /third/build_luajitrocks.sh"
239
255
240
- check " build lanes" \
256
+ check " Build lanes" \
241
257
" $CHRT /third/build_lanes.sh"
242
258
243
- check " build janosh" \
259
+ check " Build janosh" \
244
260
" $CHRT /third/build_janosh.sh"
245
261
246
- check " build SimpleOSD" \
262
+ check " Build SimpleOSD" \
247
263
" $CHRT /third/build_simpleosd.sh"
248
264
}
249
265
0 commit comments