mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
env: Do not make CONFIG_EXTRA_ENV_TEXT and CONFIG_EXTRA_ENV_SETTINGS conflict
Largely, the use of CONFIG_EXTRA_ENV_SETTINGS can be migrated directly to come from CONFIG_EXTRA_ENV_TEXT. The biggest case that cannot easily be migrated is distro_bootcmd support. Rather than block migration on this, remove the #error here so that we can being moving forward. Cc: Joe Hershberger <joe.hershberger@ni.com> Cc: Wolfgang Denk <wd@denx.de> Cc: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
5dbf320bef
commit
5cf6a06ae8
1 changed files with 0 additions and 3 deletions
|
@ -109,9 +109,6 @@ const char default_environment[] = {
|
|||
"bootlimit=" __stringify(CONFIG_BOOTCOUNT_BOOTLIMIT)"\0"
|
||||
#endif
|
||||
#ifdef CONFIG_EXTRA_ENV_TEXT
|
||||
# ifdef CONFIG_EXTRA_ENV_SETTINGS
|
||||
# error "Your board uses a text-file environment, so must not define CONFIG_EXTRA_ENV_SETTINGS"
|
||||
# endif
|
||||
/* This is created in the Makefile */
|
||||
CONFIG_EXTRA_ENV_TEXT
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue