1 /* 2 * Copyright (C) 2016 Stefan Roese <sr@denx.de> 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 /* 8 * board/config.h - configuration options, board specific 9 */ 10 11 #ifndef __CONFIG_H 12 #define __CONFIG_H 13 14 #include <configs/x86-common.h> 15 16 /* Set the board specific parameters */ 17 #define DEF_ENV_TFTPDIR "theadorable-x86-conga" 18 #define DEF_ENV_ETH_INIT "" 19 #define DEF_ENV_UBUNTU_PART 2 20 #define DEF_ENV_UBUNTU_TTY 0 /* Use ttyS0 */ 21 #define DEF_ENV_YOCTO_PART 3 22 #define DEF_ENV_YOCTO_TTY 0 /* Use ttyS0 */ 23 24 /* 25 * Include the theadorable-x86 common options, macros and default 26 * environment 27 */ 28 #include <configs/theadorable-x86-common.h> 29 30 #endif /* __CONFIG_H */ 31