configs: Migrate CONFIG_SYS_MAX_FLASH_BANKS to Kconfig
[platform/kernel/u-boot.git] / include / configs / efi-x86_app.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2015 Google, Inc
4  */
5
6 #ifndef __CONFIG_H
7 #define __CONFIG_H
8
9 #include <configs/x86-common.h>
10
11 #undef CONFIG_TPM_TIS_BASE_ADDRESS
12
13 /*
14  * Select the output device: Put an 'x' prefix before one of these to disable it
15  */
16
17 /*
18  * Video output - can normally continue after exit_boot_services has been
19  * called, since output to the display does not require EFI services at that
20  * point. U-Boot sets up the console memory and does its own drawing.
21  */
22 #define CONFIG_STD_DEVICES_SETTINGS     "stdin=serial\0" \
23                                         "stdout=vidconsole\0" \
24                                         "stderr=vidconsole\0"
25
26 /*
27  * Serial output with no console. Run qemu with:
28  *
29  *    -display none -serial mon:stdio
30  *
31  * This will hang or fail to output on the console after exit_boot_services is
32  * called.
33  */
34 #define xCONFIG_STD_DEVICES_SETTINGS    "stdin=serial\0" \
35                                         "stdout=serial\0" \
36                                         "stderr=serial\0"
37
38 #undef CONFIG_BOOTCOMMAND
39
40 #define CONFIG_BOOTCOMMAND "part list efi 0; fatls efi 0:1"
41
42 #endif