blob: 85b47a15d710ba582609207e668dba245299fb2e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Jason Cooper2e0c1c72011-10-03 13:49:53 +05302/*
Tony Dinhfb9ed232022-01-30 15:02:30 -08003 * (C) Copyright 2022 Tony Dinh <mibodhi@gmail.com>
4 * (C) Copyright 2011 Jason Cooper <u-boot@lakedaemon.net>
Jason Cooper2e0c1c72011-10-03 13:49:53 +05305 *
6 * Based on work by:
7 * Marvell Semiconductor <www.marvell.com>
8 * Written-by: Siddarth Gore <gores@marvell.com>
Jason Cooper2e0c1c72011-10-03 13:49:53 +05309 */
10
11#ifndef _CONFIG_DREAMPLUG_H
12#define _CONFIG_DREAMPLUG_H
13
Tom Rinif98b3be2021-12-17 18:08:44 -050014#include "mv-common.h"
Jason Cooper2e0c1c72011-10-03 13:49:53 +053015
16/*
Jason Cooper2e0c1c72011-10-03 13:49:53 +053017 * Default environment variables
18 */
Jason Cooper2e0c1c72011-10-03 13:49:53 +053019
Tom Rini0613c362022-12-04 10:03:50 -050020#define CFG_EXTRA_ENV_SETTINGS \
Jason Cooper2e0c1c72011-10-03 13:49:53 +053021 "x_bootcmd_ethernet=ping 192.168.2.1\0" \
22 "x_bootcmd_usb=usb start\0" \
23 "x_bootcmd_kernel=fatload usb 0 0x6400000 uImage\0" \
24 "x_bootargs=console=ttyS0,115200\0" \
25 "x_bootargs_root=root=/dev/sda2 rootdelay=10\0"
26
Jason Cooper2e0c1c72011-10-03 13:49:53 +053027#endif /* _CONFIG_DREAMPLUG_H */