forked from geohot/qira
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fetchlibs.sh
executable file
·55 lines (42 loc) · 998 Bytes
/
fetchlibs.sh
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
#!/bin/bash -e
DEBOOTSTRAP_DIR=/usr/share/debootstrap
if [ ! -d "$DEBOOTSTRAP_DIR" ]; then
echo "this script requires debootstrap to be installed"
exit 1
fi
# this is ubuntu specific i think
fetcharch() {
ARCH="$1"
SUITE="$2"
exec 4>&1
SHA_SIZE=256
DEBOOTSTRAP_CHECKSUM_FIELD="SHA$SHA_SIZE"
TARGET="$ARCH"
TARGET="$(echo "`pwd`/$TARGET")"
HOST_ARCH=`/usr/bin/dpkg --print-architecture`
HOST_OS=linux
USE_COMPONENTS=main
RESOLVE_DEPS=true
export DEBOOTSTRAP_CHECKSUM_FIELD
mkdir -p "$TARGET" "$TARGET/debootstrap"
. $DEBOOTSTRAP_DIR/functions
. $DEBOOTSTRAP_DIR/scripts/$SUITE
MIRRORS="$DEF_MIRROR"
download_indices
work_out_debs
all_debs=$(resolve_deps $LIBS)
echo "$all_debs"
download $all_debs
choose_extractor
extract $all_debs
}
#rm -rf libs
mkdir -p libs
cd libs
LIBS="libc-bin libstdc++6"
fetcharch armhf precise
fetcharch armel precise
fetcharch powerpc precise
fetcharch arm64 saucy
fetcharch i386 precise
# mini debootstrap