mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-07 21:16:57 +02:00
BUG=3283 TEST=Tested by running mod_image_for_test and checking the stateful partiton on the resulting image and verifying that these files exist in the correct locations. Review URL: http://codereview.chromium.org/2107013
13 lines
407 B
Bash
Executable File
13 lines
407 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.
|
|
#
|
|
# Enables chromium mini and core dumps.
|
|
|
|
echo "Enabling chromium [mini,core]dumps."
|
|
mkdir -p "${STATEFUL_DIR}/etc"
|
|
touch "${STATEFUL_DIR}/etc/enable_chromium_minidumps"
|
|
touch "${STATEFUL_DIR}/etc/enable_chromium_coredumps"
|