mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 17:58:23 +00:00
0613c36a7a
Perform a simple rename of CONFIG_EXTRA_ENV_SETTINGS to CFG_EXTRA_ENV_SETTINGS Signed-off-by: Tom Rini <trini@konsulko.com>
62 lines
1.2 KiB
C
62 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2011 Simon Guinot <sguinot@lacie.com>
|
|
*/
|
|
|
|
#ifndef _CONFIG_LACIE_KW_H
|
|
#define _CONFIG_LACIE_KW_H
|
|
|
|
#include "mv-common.h"
|
|
|
|
/* Remove or override few declarations from mv-common.h */
|
|
|
|
/*
|
|
* Enable platform initialisation via misc_init_r() function
|
|
*/
|
|
|
|
/*
|
|
* Enable GPI0 support
|
|
*/
|
|
|
|
/*
|
|
* Enable I2C support
|
|
*/
|
|
#ifdef CONFIG_CMD_I2C
|
|
/* I2C EEPROM HT24LC04 (512B - 32 pages of 16 Bytes) */
|
|
#if defined(CONFIG_NET2BIG_V2)
|
|
#define CFG_SYS_I2C_G762_ADDR 0x3e
|
|
#endif
|
|
#endif /* CONFIG_CMD_I2C */
|
|
|
|
/*
|
|
* Partition support
|
|
*/
|
|
|
|
/*
|
|
* File systems support
|
|
*/
|
|
|
|
/*
|
|
* Environment variables configurations
|
|
*/
|
|
|
|
/*
|
|
* Default environment variables
|
|
*/
|
|
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
|
"stdin=serial\0" \
|
|
"stdout=serial\0" \
|
|
"stderr=serial\0" \
|
|
"bootfile=uImage\0" \
|
|
"loadaddr=0x800000\0" \
|
|
"netconsole=" \
|
|
"set stdin $stdin,nc; " \
|
|
"set stdout $stdout,nc; " \
|
|
"set stderr $stderr,nc;\0" \
|
|
"diskload=sata init && " \
|
|
"ext2load sata 0:1 $loadaddr /boot/$bootfile\0" \
|
|
"usbload=usb start && " \
|
|
"fatload usb 0:1 $loadaddr /boot/$bootfile\0"
|
|
|
|
#endif /* _CONFIG_LACIE_KW_H */
|