Blame view

include/configs/bayleybay.h 547 Bytes
9b911bed7   Bin Meng   x86: Add Intel Ba...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  /*
   * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
   *
   * SPDX-License-Identifier:	GPL-2.0+
   */
  
  /*
   * board/config.h - configuration options, board specific
   */
  
  #ifndef __CONFIG_H
  #define __CONFIG_H
  
  #include <configs/x86-common.h>
  
  #define CONFIG_SYS_MONITOR_LEN		(1 << 20)
fcda8c388   Bin Meng   x86: Convert to u...
17
18
19
  #define CONFIG_STD_DEVICES_SETTINGS	"stdin=serial,usbkbd\0" \
  					"stdout=serial,vidconsole\0" \
  					"stderr=serial,vidconsole\0"
9b911bed7   Bin Meng   x86: Add Intel Ba...
20

9b911bed7   Bin Meng   x86: Add Intel Ba...
21
22
23
24
25
  /* Environment configuration */
  #define CONFIG_ENV_SECT_SIZE		0x1000
  #define CONFIG_ENV_OFFSET		0x006ff000
  
  #endif	/* __CONFIG_H */