Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Side by Side Diff: build/linux/sysroot_scripts/sysroot-creator-jessie.sh

Issue 2912533002: Add jessie-security repo to sysroot scripts (Closed)
Patch Set: Address thestig@'s comments Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/linux/sysroot_scripts/sysroot-creator.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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"
OLDNEW
« no previous file with comments | « build/linux/sysroot_scripts/sysroot-creator.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698