blob: ff3531b3217cdec4f7811e939217d8d95ff6c698 [file] [log] [blame]
Andy Yan2d1951f2017-06-01 18:01:31 +08001/*
2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef __CONFIG_H
8#define __CONFIG_H
9
10#include <configs/rv1108_common.h>
11
12/*
13 * Default environment settings
14 */
15#define CONFIG_EXTRA_ENV_SETTINGS \
16 "netdev=eth0\0" \
17 "ipaddr=172.16.12.50\0" \
18 "serverip=172.16.12.69\0" \
19 ""
20#define CONFIG_BOOTCOMMAND \
21 "sf probe;" \
22 "sf read 0x62000000 0x140800 0x500000;" \
23 "dcache off;" \
24 "go 0x62000000"
25
26#endif