blob: 246ec405aa7d2f50e62af95e5d5e38ad7ee049ee [file] [log] [blame]
#!/bin/bash
# Copyright 2018 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.
set -e
main() {
local target_dir=/mnt/stateful_partition/encrypted/var/cache/camera
if [[ ! -d "${target_dir}" ]]; then
rm -rf "${target_dir}"
mkdir -p "${target_dir}"
fi
cp /etc/camera/media_profiles.xml "${target_dir}"
return 0
}
main "$@"