mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
bf904ea418
The "autoload" environment variable is always checked with env_get_yesno as it can be set to any form of no. The default behavior of env_get_yesno is to return -1 on variables that are not set, which acts as true in general (we test for non-zero return). To convert CONFIG_SYS_AUTOLOAD to Kconfig, given that it was almost always used to set autoload to no, first rename to CONFIG_SYS_DISABLE_AUTOLOAD for consistency sake. Then, make it so that if enabled we set autoload=0 in the default environment. Migrate all platforms which set CONFIG_SYS_AUTOLOAD to non-true or that set autoload to false in their default environment to using CONFIG_SYS_DISABLE_AUTOLOAD Signed-off-by: Tom Rini <trini@konsulko.com>
69 lines
1.3 KiB
C
69 lines
1.3 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
|
|
*/
|
|
|
|
/*
|
|
* Ethernet Driver configuration
|
|
*/
|
|
#ifdef CONFIG_CMD_NET
|
|
#define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
|
|
#endif
|
|
|
|
/*
|
|
* 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 CONFIG_SYS_I2C_G762_ADDR 0x3e
|
|
#endif
|
|
#endif /* CONFIG_CMD_I2C */
|
|
|
|
/*
|
|
* Partition support
|
|
*/
|
|
|
|
/*
|
|
* File systems support
|
|
*/
|
|
|
|
/*
|
|
* Environment variables configurations
|
|
*/
|
|
|
|
/*
|
|
* Default environment variables
|
|
*/
|
|
|
|
#define CONFIG_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 */
|