Simon Glass | 124602a | 2019-12-08 17:40:20 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright 2019 Google LLC |
| 4 | */ |
| 5 | |
| 6 | /* |
| 7 | * board/config.h - configuration options, board-specific |
| 8 | */ |
| 9 | |
| 10 | #ifndef __CONFIG_H |
| 11 | #define __CONFIG_H |
| 12 | |
Simon Glass | 124602a | 2019-12-08 17:40:20 -0700 | [diff] [blame] | 13 | #include <configs/x86-common.h> |
| 14 | #include <configs/x86-chromebook.h> |
| 15 | |
Tom Rini | 86ec451 | 2022-12-04 10:13:56 -0500 | [diff] [blame] | 16 | #undef CFG_STD_DEVICES_SETTINGS |
| 17 | #define CFG_STD_DEVICES_SETTINGS "stdin=usbkbd,i8042-kbd,serial\0" \ |
Simon Glass | 124602a | 2019-12-08 17:40:20 -0700 | [diff] [blame] | 18 | "stdout=vidconsole,serial\0" \ |
| 19 | "stderr=vidconsole,serial\0" |
| 20 | |
Simon Glass | 124602a | 2019-12-08 17:40:20 -0700 | [diff] [blame] | 21 | #endif /* __CONFIG_H */ |