| 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 "${BASH_SOURCE[0]}" )" && pwd )" | 6 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
| 7 | 7 |
| 8 DISTRO=debian | 8 DISTRO=debian |
| 9 DIST=jessie | 9 DIST=jessie |
| 10 DIST_UPDATES=jessie-updates | |
| 11 | 10 |
| 12 PACKAGES_EXT=xz | 11 APT_SOURCES_LIST="\ |
| 12 http://ftp.us.debian.org/debian/ jessie main |
| 13 http://security.debian.org/ jessie/updates main |
| 14 http://ftp.us.debian.org/debian/ jessie-updates main" |
| 13 | 15 |
| 14 APT_REPO=http://http.us.debian.org/debian | |
| 15 # gpg keyring file generated using: | 16 # gpg keyring file generated using: |
| 16 # export KEYS="518E17E1 46925553 2B90D010" | 17 # export KEYS="518E17E1 46925553 2B90D010 C857C906" |
| 17 # gpg --recv-keys $KEYS | 18 # gpg --recv-keys $KEYS |
| 18 # gpg --output ./debian-archive-jessie-stable.gpg --export $KEYS | 19 # gpg --output ./debian-archive-jessie-stable.gpg --export $KEYS |
| 19 KEYRING_FILE="${SCRIPT_DIR}/debian-archive-jessie-stable.gpg" | 20 KEYRING_FILE="${SCRIPT_DIR}/debian-archive-jessie-stable.gpg" |
| 20 | 21 |
| 21 HAS_ARCH_AMD64=1 | 22 HAS_ARCH_AMD64=1 |
| 22 HAS_ARCH_I386=1 | 23 HAS_ARCH_I386=1 |
| 23 HAS_ARCH_ARM=1 | 24 HAS_ARCH_ARM=1 |
| 24 HAS_ARCH_ARM64=1 | 25 HAS_ARCH_ARM64=1 |
| 25 HAS_ARCH_MIPS=1 | 26 HAS_ARCH_MIPS=1 |
| 26 | 27 |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 libdatrie1 | 258 libdatrie1 |
| 258 libgmp10 | 259 libgmp10 |
| 259 libgraphite2-3 | 260 libgraphite2-3 |
| 260 libhogweed2 | 261 libhogweed2 |
| 261 libitm1 | 262 libitm1 |
| 262 libnettle4 | 263 libnettle4 |
| 263 libthai0 | 264 libthai0 |
| 264 " | 265 " |
| 265 | 266 |
| 266 . "${SCRIPT_DIR}/sysroot-creator.sh" | 267 . "${SCRIPT_DIR}/sysroot-creator.sh" |
| OLD | NEW |