mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-08 13:36:58 +02:00
A modest number of different scripts and files have a usage restricted to build_image. Move those files to build_library, to prevent them accumulating unwanted clients. BUG=chromium-os:17390 TEST=build_image TEST=grep relevant sources for references to all the files Change-Id: I3e9f6447ec34c09ea2d61f29ac343386a1e122b9 Reviewed-on: http://gerrit.chromium.org/gerrit/4762 Reviewed-by: Richard Barnette <jrbarnette@chromium.org> Tested-by: Richard Barnette <jrbarnette@chromium.org>
23 lines
801 B
Bash
23 lines
801 B
Bash
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Common library file to be sourced by build_image,
|
|
# mod_image_for_test.sh, and mod_image_for_recovery.sh. This
|
|
# file ensures that library source files needed by all the scripts
|
|
# are included once, and also takes care of certain bookeeping tasks
|
|
# common to all the scripts.
|
|
|
|
# SCRIPT_ROOT must be set prior to sourcing this file
|
|
. "${SCRIPT_ROOT}/common.sh" || exit 1
|
|
|
|
# All scripts using this file must be run inside the chroot.
|
|
restart_in_chroot_if_needed "$@"
|
|
|
|
INSTALLER_ROOT=/usr/lib/installer
|
|
. "${INSTALLER_ROOT}/chromeos-common.sh" || exit 1
|
|
|
|
BUILD_LIBRARY_DIR=${SCRIPTS_DIR}/build_library
|
|
locate_gpt
|
|
get_default_board
|