1 #!/bin/bash 2 3 # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. 4 # Use of this source code is governed by a BSD-style license that can be 5 # found in the LICENSE file. 6 7 # Files/directories that should never be present in a clean, 8 # standard release build. 9 RELEASE_FILE_BLACKLIST=( 10 # Flag-file indicating "developer mode", crosh offers "shell" if present: 11 /root/.dev_mode 12 13 # Should not ship with a local account pre-set on the system 14 /opt/google/chrome/localaccount 15 16 # Generation of this should happen on-device. Don't want to introduce 17 # any cryptohome-related weaknesses e.g. everyone using the same salt. 18 /home/.shadow 19 ) 20