blob: 0c3740745b7424bc4fac4f6e2885aeb837900f8a [file] [log] [blame]
Stefan Roese82ceba22016-03-16 08:48:21 +01001/*
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#define CONFIG_SYS_MONITOR_LEN (1 << 20)
Stefan Roese82ceba22016-03-16 08:48:21 +010017
Stefan Roese82ceba22016-03-16 08:48:21 +010018#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial\0" \
19 "stdout=serial\0" \
20 "stderr=serial\0"
21
Stefan Roese82ceba22016-03-16 08:48:21 +010022#define VIDEO_IO_OFFSET 0
23#define CONFIG_X86EMU_RAW_IO
Stefan Roese82ceba22016-03-16 08:48:21 +010024
25#define CONFIG_ENV_SECT_SIZE 0x1000
Stefan Roese303dfc22016-06-28 15:45:13 +020026#define CONFIG_ENV_OFFSET 0x006ef000
Stefan Roese82ceba22016-03-16 08:48:21 +010027
28#undef CONFIG_BOOTARGS
29#undef CONFIG_BOOTCOMMAND
30
31#define CONFIG_BOOTARGS \
Stefan Roese303dfc22016-06-28 15:45:13 +020032 "root=/dev/sda2 ro quiet"
Stefan Roese82ceba22016-03-16 08:48:21 +010033#define CONFIG_BOOTCOMMAND \
Stefan Roese303dfc22016-06-28 15:45:13 +020034 "load scsi 0:2 03000000 /boot/vmlinuz-${kernel-ver}-generic;" \
35 "load scsi 0:2 04000000 /boot/initrd.img-${kernel-ver}-generic;" \
Stefan Roese82ceba22016-03-16 08:48:21 +010036 "run boot"
37
38#undef CONFIG_EXTRA_ENV_SETTINGS
39#define CONFIG_EXTRA_ENV_SETTINGS \
Stefan Roese303dfc22016-06-28 15:45:13 +020040 "kernel-ver=4.4.0-22\0" \
Stefan Roese82ceba22016-03-16 08:48:21 +010041 "boot=zboot 03000000 0 04000000 ${filesize}\0" \
42 "upd_uboot=tftp 100000 conga/u-boot.rom;" \
Stefan Roese303dfc22016-06-28 15:45:13 +020043 "sf probe;sf update 100000 0 800000;saveenv\0"
Stefan Roese82ceba22016-03-16 08:48:21 +010044
45#define CONFIG_PREBOOT
46
47#endif /* __CONFIG_H */