blob: 823d37fc38ca046775604708b6a753967515b88c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Roese2a0b94c2016-03-16 08:48:21 +01002/*
3 * Copyright (C) 2016 Stefan Roese <sr@denx.de>
Stefan Roese2a0b94c2016-03-16 08:48:21 +01004 */
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 Roese2a0b94c2016-03-16 08:48:21 +010015#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial\0" \
16 "stdout=serial\0" \
17 "stderr=serial\0"
18
Stefan Roese2a0b94c2016-03-16 08:48:21 +010019#define VIDEO_IO_OFFSET 0
20#define CONFIG_X86EMU_RAW_IO
Stefan Roese2a0b94c2016-03-16 08:48:21 +010021
Stefan Roese2a0b94c2016-03-16 08:48:21 +010022#undef CONFIG_EXTRA_ENV_SETTINGS
23#define CONFIG_EXTRA_ENV_SETTINGS \
Stefan Roese9a111ce2016-06-28 15:45:13 +020024 "kernel-ver=4.4.0-22\0" \
Stefan Roese2a0b94c2016-03-16 08:48:21 +010025 "boot=zboot 03000000 0 04000000 ${filesize}\0" \
26 "upd_uboot=tftp 100000 conga/u-boot.rom;" \
Stefan Roese9a111ce2016-06-28 15:45:13 +020027 "sf probe;sf update 100000 0 800000;saveenv\0"
Stefan Roese2a0b94c2016-03-16 08:48:21 +010028
Stefan Roese2a0b94c2016-03-16 08:48:21 +010029#endif /* __CONFIG_H */