mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-08 05:26:58 +02:00
This makes us fail if /etc/localtime doesn't point at /var/lib/timezone/localtime. BUG=chromium-os:27413 TEST=manual: error from build_image after i patched chromeos-base to not create the symlink Change-Id: I11ef272c2dcd67a189a5d67c46792490ec6d27a1 Reviewed-on: https://gerrit.chromium.org/gerrit/19335 Tested-by: Daniel Erat <derat@chromium.org> Reviewed-by: Mike Frysinger <vapier@chromium.org> Commit-Ready: Daniel Erat <derat@chromium.org>
60 lines
1.6 KiB
Bash
60 lines
1.6 KiB
Bash
# Copyright (c) 2012 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_image_content() {
|
|
local root="$1"
|
|
local returncode=0
|
|
|
|
local binaries=(
|
|
"$root/usr/bin/Xorg"
|
|
"$root/boot/vmlinuz"
|
|
"$root/sbin/session_manager"
|
|
"$root/bin/sed"
|
|
"$root/opt/google/chrome/chrome"
|
|
)
|
|
|
|
for test_file in "${binaries[@]}"; do
|
|
if [ ! -f "$test_file" ]; then
|
|
error "test_image_content: Cannot find '$test_file'"
|
|
returncode=1
|
|
fi
|
|
done
|
|
|
|
local libs=( $(sudo find "$root" -type f -name '*.so*') )
|
|
|
|
# Check that all .so files, plus the binaries, have the appropriate
|
|
# dependencies.
|
|
local check_deps="${BUILD_LIBRARY_DIR}/check_deps"
|
|
if ! "$check_deps" "$root" "${binaries[@]}" "${libs[@]}"; then
|
|
error "test_image_content: Failed dependency check"
|
|
returncode=1
|
|
fi
|
|
|
|
local blacklist_dirs=(
|
|
"$root/usr/share/locale"
|
|
)
|
|
for dir in "${blacklist_dirs[@]}"; do
|
|
if [ -d "$dir" ]; then
|
|
error "test_image_content: Blacklisted directory found: $dir"
|
|
returncode=1
|
|
fi
|
|
done
|
|
|
|
# Check that /etc/localtime is a symbolic link pointing at
|
|
# /var/lib/timezone/localtime.
|
|
local localtime="$root/etc/localtime"
|
|
if [ ! -L "$localtime" ]; then
|
|
error "test_image_content: /etc/localtime is not a symbolic link"
|
|
returncode=1
|
|
else
|
|
local dest=$(readlink "$localtime")
|
|
if [ "$dest" != "/var/lib/timezone/localtime" ]; then
|
|
error "test_image_content: /etc/localtime points at $dest"
|
|
returncode=1
|
|
fi
|
|
fi
|
|
|
|
return $returncode
|
|
}
|