mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-07 21:16:57 +02:00
This CL adds uinput module in INSTALL_MASK so that the module is not installed to non-test image. A mod_image_for_test script is implemented to install the module in the test image if the uinput module exists. BUG=chromium-os:26707 TEST=Build a base image and a test image. Check the directory /lib/modules/<version>/kernel/drivers/input/misc where current <version> is 3.2.7. In the base image, there should be no uinput.ko, while in the test image, there should be uinput.ko. CQ-DEPEND=Ie96242c4d56403866a2298db2ba3bd6459248c1b Change-Id: I0ca6599f80b9bb72cdc044fc97cdf990ce550edc Reviewed-on: https://gerrit.chromium.org/gerrit/19032 Reviewed-by: Kees Cook <keescook@chromium.org> Reviewed-by: Mandeep Singh Baines <msb@chromium.org> Tested-by: Joseph Shyh-In Hwang <josephsih@chromium.org> Commit-Ready: Joseph Shyh-In Hwang <josephsih@chromium.org>
153 lines
4.8 KiB
Bash
Executable File
153 lines
4.8 KiB
Bash
Executable File
# 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.
|
|
|
|
# Shell function library for functions specific to creating test
|
|
# images from dev images. This file also contains additional
|
|
# functions and initialization shared between build_image and
|
|
# mod_image_for_test.sh.
|
|
#
|
|
# TODO(jrbarnette): The two halves of this file aren't particularly
|
|
# related; they're together merely to consolidate the shared code in
|
|
# one file. Arguably, they should be broken up.
|
|
|
|
|
|
# ----
|
|
# The initialization and functions below are shared between
|
|
# build_image and mod_image_for_test.sh. The code is not used
|
|
# by the mod_image_for_test function.
|
|
|
|
EMERGE_BOARD_CMD="$GCLIENT_ROOT/chromite/bin/parallel_emerge"
|
|
EMERGE_BOARD_CMD="$EMERGE_BOARD_CMD --board=$BOARD"
|
|
|
|
if [ $FLAGS_jobs -ne -1 ]; then
|
|
EMERGE_JOBS="--jobs=$FLAGS_jobs"
|
|
fi
|
|
|
|
export INSTALL_MASK="${DEFAULT_INSTALL_MASK}"
|
|
|
|
|
|
# Utility function for creating a copy of an image prior to
|
|
# modification from the BUILD_DIR:
|
|
# $1: source filename
|
|
# $2: destination filename
|
|
copy_image() {
|
|
local src="${BUILD_DIR}/$1"
|
|
local dst="${BUILD_DIR}/$2"
|
|
if should_build_image $1; then
|
|
echo "Creating $2 from $1..."
|
|
$COMMON_PV_CAT "$src" >"$dst" || die "Cannot copy $1 to $2"
|
|
else
|
|
mv "${src}" "${dst}" || die "Cannot move $1 to $2"
|
|
fi
|
|
}
|
|
|
|
# Basic command to emerge binary packages into the target image.
|
|
# Arguments to this command are passed as addition options/arguments
|
|
# to the basic emerge command.
|
|
emerge_to_image() {
|
|
sudo -E ${EMERGE_BOARD_CMD} --root-deps=rdeps --usepkgonly -v \
|
|
"$@" ${EMERGE_JOBS}
|
|
}
|
|
|
|
# Returns 0 if any of the images was requested to be built, 1 otherwise.
|
|
# $@ The name(s) of the images to check.
|
|
should_build_image() {
|
|
# Fast pass back if we should build all incremental images.
|
|
local images="$@"
|
|
local image_name
|
|
local image_to_build
|
|
|
|
for image_name in ${images}; do
|
|
for image_to_build in ${IMAGES_TO_BUILD}; do
|
|
[ ${image_to_build} = ${image_name} ] && return 0
|
|
done
|
|
done
|
|
|
|
return 1
|
|
}
|
|
|
|
# ----
|
|
# From here down, the main exported function is
|
|
# 'mod_image_for_test'. The remainder of the code is not used
|
|
# outside this file.
|
|
|
|
# Emerges chromeos-test onto the image.
|
|
emerge_chromeos_test() {
|
|
# Determine the root dir for test packages.
|
|
local root_dev_dir="${ROOT_FS_DIR}/usr/local"
|
|
|
|
emerge_to_image --root="${root_dev_dir}" chromeos-test
|
|
}
|
|
|
|
prepare_hwid_for_factory() {
|
|
local hwid_dest="$1/hwid"
|
|
local hwid_src="${BOARD_ROOT}/usr/share/chromeos-hwid"
|
|
|
|
# Force refreshing source folder in build root folder
|
|
sudo rm -rf "${hwid_src}" "${hwid_dest}"
|
|
emerge_to_image chromeos-hwid
|
|
if [ -d "${hwid_src}" ]; then
|
|
# TODO(hungte) After being archived by chromite, the HWID files will be in
|
|
# factory_test/hwid; we should move it to top level folder.
|
|
cp -r "${hwid_src}" "${hwid_dest}"
|
|
else
|
|
echo "Skipping HWID: No HWID bundles found."
|
|
fi
|
|
}
|
|
|
|
# Converts a dev image into a test or factory test image
|
|
# Takes as an arg the name of the image to be created.
|
|
mod_image_for_test () {
|
|
local image_name="$1"
|
|
|
|
trap unmount_image EXIT
|
|
mount_image "${BUILD_DIR}/${image_name}" \
|
|
"${ROOT_FS_DIR}" "${STATEFUL_FS_DIR}"
|
|
|
|
emerge_chromeos_test
|
|
|
|
BACKDOOR=0
|
|
if [ $FLAGS_standard_backdoor -eq $FLAGS_TRUE ]; then
|
|
BACKDOOR=1
|
|
fi
|
|
|
|
local mod_test_script="${SCRIPTS_DIR}/mod_for_test_scripts/test_setup.sh"
|
|
# Run test setup script to modify the image
|
|
sudo -E GCLIENT_ROOT="${GCLIENT_ROOT}" ROOT_FS_DIR="${ROOT_FS_DIR}" \
|
|
STATEFUL_DIR="${STATEFUL_FS_DIR}" ARCH="${ARCH}" BACKDOOR="${BACKDOOR}" \
|
|
BOARD_ROOT="${BOARD_ROOT}" \
|
|
"${mod_test_script}"
|
|
|
|
# Legacy parameter (used by mod_image_for_test.sh --factory)
|
|
[ -n "${FLAGS_factory}" ] || FLAGS_factory=${FLAGS_FALSE}
|
|
|
|
if [ ${FLAGS_factory} -eq ${FLAGS_TRUE} ] ||
|
|
should_build_image "${CHROMEOS_FACTORY_TEST_IMAGE_NAME}"; then
|
|
emerge_to_image --root="${ROOT_FS_DIR}" factorytest-init
|
|
INSTALL_MASK="${FACTORY_TEST_INSTALL_MASK}"
|
|
emerge_to_image --root="${ROOT_FS_DIR}/usr/local" \
|
|
chromeos-base/autotest chromeos-base/autotest-all
|
|
prepare_hwid_for_factory "${BUILD_DIR}"
|
|
|
|
local mod_factory_script
|
|
mod_factory_script="${SCRIPTS_DIR}/mod_for_factory_scripts/factory_setup.sh"
|
|
# Run factory setup script to modify the image
|
|
sudo -E GCLIENT_ROOT="${GCLIENT_ROOT}" ROOT_FS_DIR="${ROOT_FS_DIR}" \
|
|
BOARD="${BOARD}" "${mod_factory_script}"
|
|
fi
|
|
|
|
# Re-run ldconfig to fix /etc/ldconfig.so.cache.
|
|
sudo ldconfig -r "${ROOT_FS_DIR}"
|
|
|
|
unmount_image
|
|
trap - EXIT
|
|
|
|
# Now make it bootable with the flags from build_image.
|
|
if should_build_image ${image_name}; then
|
|
"${SCRIPTS_DIR}/bin/cros_make_image_bootable" "${BUILD_DIR}" \
|
|
${image_name} \
|
|
--force_developer_mode
|
|
fi
|
|
}
|