Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Stefan Roese | b1ad6c6 | 2016-08-15 13:50:49 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016 Stefan Roese <sr@denx.de> |
Stefan Roese | b1ad6c6 | 2016-08-15 13:50:49 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | /* |
| 7 | * board/config.h - configuration options, board specific |
| 8 | */ |
| 9 | |
| 10 | #ifndef __CONFIG_H |
| 11 | #define __CONFIG_H |
| 12 | |
| 13 | #include <configs/x86-common.h> |
| 14 | |
Stefan Roese | b1ad6c6 | 2016-08-15 13:50:49 +0200 | [diff] [blame] | 15 | #ifndef CONFIG_INTERNAL_UART |
| 16 | /* Use BayTrail internal HS UART which is memory-mapped */ |
Stefan Roese | b1ad6c6 | 2016-08-15 13:50:49 +0200 | [diff] [blame] | 17 | #endif |
| 18 | |
Tom Rini | e02e5e5 | 2022-12-04 10:13:56 -0500 | [diff] [blame] | 19 | #define CFG_STD_DEVICES_SETTINGS "stdin=serial\0" \ |
Stefan Roese | b1ad6c6 | 2016-08-15 13:50:49 +0200 | [diff] [blame] | 20 | "stdout=serial\0" \ |
| 21 | "stderr=serial\0" |
| 22 | |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 23 | #undef CFG_EXTRA_ENV_SETTINGS |
| 24 | #define CFG_EXTRA_ENV_SETTINGS \ |
Stefan Roese | b1ad6c6 | 2016-08-15 13:50:49 +0200 | [diff] [blame] | 25 | "kernel-ver=4.4.0-24\0" \ |
| 26 | "boot=zboot 03000000 0 04000000 ${filesize}\0" \ |
| 27 | "upd_uboot=usb reset;tftp 100000 dfi/u-boot.rom;" \ |
| 28 | "sf probe;sf update 100000 0 800000;saveenv\0" |
| 29 | |
Stefan Roese | b1ad6c6 | 2016-08-15 13:50:49 +0200 | [diff] [blame] | 30 | #endif /* __CONFIG_H */ |