OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 SCRIPT_DIR=$(cd $(dirname $0) && pwd) | 6 SCRIPT_DIR=$(cd $(dirname $0) && pwd) |
7 | 7 |
8 DISTRO=debian | 8 DISTRO=debian |
9 DIST=jessie | 9 DIST=jessie |
10 PACKAGES_EXT=xz | 10 PACKAGES_EXT=xz |
11 APT_REPO=http://http.us.debian.org/debian | 11 APT_REPO=http://http.us.debian.org/debian |
12 REPO_BASEDIR="${APT_REPO}/dists/${DIST}" | |
13 # gpg keyring file generated using: | 12 # gpg keyring file generated using: |
14 # export KEYS="518E17E1 46925553 2B90D010" | 13 # export KEYS="518E17E1 46925553 2B90D010" |
15 # gpg --recv-keys $KEYS | 14 # gpg --recv-keys $KEYS |
16 # gpg --output ./debian-archive-jessie-stable.gpg --export $KEYS | 15 # gpg --output ./debian-archive-jessie-stable.gpg --export $KEYS |
17 KEYRING_FILE=${SCRIPT_DIR}/debian-archive-jessie-stable.gpg | 16 KEYRING_FILE=${SCRIPT_DIR}/debian-archive-jessie-stable.gpg |
18 | 17 |
19 HAS_ARCH_AMD64=1 | 18 HAS_ARCH_AMD64=1 |
20 HAS_ARCH_I386=1 | 19 HAS_ARCH_I386=1 |
21 HAS_ARCH_ARM=1 | 20 HAS_ARCH_ARM=1 |
22 HAS_ARCH_ARM64=1 | 21 HAS_ARCH_ARM64=1 |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 libdatrie1 | 227 libdatrie1 |
229 libgmp10 | 228 libgmp10 |
230 libgraphite2-3 | 229 libgraphite2-3 |
231 libhogweed2 | 230 libhogweed2 |
232 libitm1 | 231 libitm1 |
233 libnettle4 | 232 libnettle4 |
234 libthai0 | 233 libthai0 |
235 " | 234 " |
236 | 235 |
237 . ${SCRIPT_DIR}/sysroot-creator.sh | 236 . ${SCRIPT_DIR}/sysroot-creator.sh |
OLD | NEW |