1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2009
4  * Net Insight <www.netinsight.net>
5  * Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
6  *
7  * Based on sheevaplug.h:
8  * (C) Copyright 2009
9  * Marvell Semiconductor <www.marvell.com>
10  * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
11  */
12 
13 #ifndef _CONFIG_OPENRD_H
14 #define _CONFIG_OPENRD_H
15 
16 #include "mv-common.h"
17 
18 /*
19  *  Environment variables configurations
20  */
21 /*
22  * max 4k env size is enough, but in case of nand
23  * it has to be rounded to sector size
24  */
25 
26 /*
27  * Default environment variables
28  */
29 
30 #define CFG_EXTRA_ENV_SETTINGS	"x_bootargs=console=ttyS0,115200 " \
31 	CONFIG_MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \
32 	"x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0"	\
33 	"x_bootcmd_usb=usb start\0"					\
34 	"x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0"
35 
36 #endif /* _CONFIG_OPENRD_BASE_H */
37