1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2016 Stefan Roese <sr@denx.de> 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 15 #define CFG_STD_DEVICES_SETTINGS "stdin=serial\0" \ 16 "stdout=serial\0" \ 17 "stderr=serial\0" 18 19 #define VIDEO_IO_OFFSET 0 20 21 #undef CFG_EXTRA_ENV_SETTINGS 22 #define CFG_EXTRA_ENV_SETTINGS \ 23 "kernel-ver=4.4.0-22\0" \ 24 "boot=zboot 03000000 0 04000000 ${filesize}\0" \ 25 "upd_uboot=tftp 100000 conga/u-boot.rom;" \ 26 "sf probe;sf update 100000 0 800000;saveenv\0" 27 28 #endif /* __CONFIG_H */ 29