]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/bur_cfg_common.h
config: Move CONFIG_BOARD_LATE_INIT to defconfigs
[people/ms/u-boot.git] / include / configs / bur_cfg_common.h
CommitLineData
3b804d94
HS
1/*
2 * bur_cfg_common.h
3 *
4 * common parts used over all B&R boards
5 *
6 * Copyright (C) 2016 Hannes Schmelzer <oe5hpm@oevsv.at> -
7 * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 */
11
12#ifndef __BUR_CFG_COMMON_H__
13#define __BUR_CFG_COMMON_H__
14/* ------------------------------------------------------------------------- */
15#define BUR_COMMON_ENV \
16"usbscript=usb start && fatload usb 0 ${scradr} usbscript.img &&" \
17" source ${scradr}\0" \
18"brdefaultip=if test -r ${ipaddr}; then; else" \
19" setenv ipaddr 192.168.60.1; setenv serverip 192.168.60.254;" \
20" setenv gatewayip 192.168.60.254; setenv netmask 255.255.255.0; fi;\0" \
21"netconsole=echo switching to network console ...; " \
22"if dhcp; then; else run brdefaultip; fi; setenv ncip ${serverip}; " \
23"setcurs 1 9; lcdputs myip; setcurs 10 9; lcdputs ${ipaddr};" \
24"setcurs 1 10;lcdputs serverip; setcurs 10 10; lcdputs ${serverip};" \
25"setenv stdout nc;setenv stdin nc;setenv stderr nc\0"
26
27#define CONFIG_PREBOOT "run cfgscr; run brdefaultip"
28
3b804d94
HS
29/* Network defines */
30#define CONFIG_BOOTP_DNS /* Configurable parts of CMD_DHCP */
31#define CONFIG_BOOTP_SEND_HOSTNAME
32#define CONFIG_BOOTP_GATEWAY
33#define CONFIG_BOOTP_SUBNETMASK
15db77d7 34#define CONFIG_NET_RETRY_COUNT 10
3b804d94
HS
35
36/* Network console */
37#define CONFIG_NETCONSOLE 1
38#define CONFIG_BOOTP_MAY_FAIL /* if we don't have DHCP environment */
39
3b804d94 40#define CONFIG_ENV_OVERWRITE /* Overwrite ethaddr / serial# */
3b804d94
HS
41
42/* As stated above, the following choices are optional. */
43#define CONFIG_SYS_LONGHELP
44#define CONFIG_AUTO_COMPLETE
45#define CONFIG_CMDLINE_EDITING
3b804d94
HS
46
47/* We set the max number of command args high to avoid HUSH bugs. */
48#define CONFIG_SYS_MAXARGS 64
49
50/* Console I/O Buffer Size */
51#define CONFIG_SYS_CBSIZE 512
52/* Print Buffer Size */
53#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE +\
54 sizeof(CONFIG_SYS_PROMPT) + 16)
55/* Boot Argument Buffer Size */
56#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
57
58#endif /* __BUR_CFG_COMMON_H__ */