mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-09 22:16:58 +02:00
All Qual DBs may be existed in the same directory of hardware_Components (overlaid internal git). So, if QUALDB is not specified, first check the existence of DBs matched the board name. Then remove other DBs not belonging to the board. TEST=build_packages, build_image, image_to_usb Review URL: http://codereview.chromium.org/3032036
30 lines
891 B
Bash
Executable File
30 lines
891 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (c) 2010 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.
|
|
|
|
TEST_DIR="${ROOT_FS_DIR}/usr/local/autotest/site_tests/hardware_Components"
|
|
|
|
pushd ${TEST_DIR} 1> /dev/null
|
|
|
|
if [ -z ${QUALDB} ]; then
|
|
# If QUALDB not specified, check the existence of the qualified components
|
|
# belonging to the board.
|
|
QUALDB="qualified_components_${BOARD}*"
|
|
FIRST_QUALDB=$(ls $QUALDB | head -1)
|
|
if [ ! -z ${FIRST_QUALDB} ]; then
|
|
# Remove qualified components belonging to other boards
|
|
ls qualified_components* | grep -v qualified_components_${BOARD} \
|
|
| xargs rm -f
|
|
else
|
|
echo "No qualified component file found at: ${QUALDB}"
|
|
fi
|
|
else
|
|
rm -f qualified_components*
|
|
echo "Copying ${QUALDB} to the image."
|
|
cp -f ${QUALDB} ${TEST_DIR}/
|
|
fi
|
|
|
|
popd 1> /dev/null
|