2 * Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
7 #ifndef __configs_chromeos_h__
8 #define __configs_chromeos_h__
11 * This config file defines platform-independent settings that a verified boot
15 /* Enable verified boot */
16 #define CONFIG_CHROMEOS
18 /* Enable test codes */
20 #define CONFIG_CHROMEOS_TEST
21 #endif /* VBOOT_DEBUG */
23 /* Enable graphics display */
24 #define CONFIG_LCD_BMP_RLE8
26 #define CONFIG_SPLASH_SCREEN
29 * Use the fdt to decide whether to load the environment early in start-up
30 * (even before we decide if we're entering developer mode).
32 #define CONFIG_OF_LOAD_ENVIRONMENT
35 * Enable this feature to embed crossystem data into device tree before booting
39 * TODO If x86 firmware does not embedding crossystem data in a device tree (and
40 * pass the tree to kernel) but uses ACPI or whatever instead, move this to
41 * chromeos_tegra2_twostop.h.
43 #define CONFIG_OF_UPDATE_FDT_BEFORE_BOOT
46 * This is the default kernel command line to a Chrome OS kernel. An ending
47 * space character helps us concatenate more arguments.
49 #define CHROMEOS_BOOTARGS "cros_secure " CONFIG_BOOTARGS " "
51 #endif /* __configs_chromeos_h__ */