diff options
| author | Wolfgang Denk <wd@denx.de> | 2012-04-30 16:45:59 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2012-04-30 16:45:59 +0200 | 
| commit | 05f132d74d173854df79bc5541699c3db144e42a (patch) | |
| tree | 7068aef1bd8453964440df9d9e20a0789ba9a7f4 /common/cmd_nvedit.c | |
| parent | 3f8550c5e93c65433d51c711e5d8d58fa5dfde7d (diff) | |
| parent | 5f6db68b42024b51a9a1fddd7d4371d2af82c090 (diff) | |
| download | olio-uboot-2014.01-05f132d74d173854df79bc5541699c3db144e42a.tar.xz olio-uboot-2014.01-05f132d74d173854df79bc5541699c3db144e42a.zip | |
Merge branch 'master' of /home/wd/git/u-boot/custodians
* 'master' of /home/wd/git/u-boot/custodians:
  powerpc/85xx: don't touch MAS7 on e500v1 when relocating CCSR
  powerpc/85xx: don't display address map size (32-bit vs. 36-bit) during boot
  cmd_bdinfo: display the address map size (32-bit vs. 36-bit)
  PowerPC: correct the SATA for p1/p2 rdb-pc platform
  powerpc/corenet_ds: Slave core in holdoff when boot from SRIO
  powerpc/corenet_ds: Slave reads ENV from master when boot from SRIO
  powerpc/corenet_ds: Slave uploads ucode when boot from SRIO
  powerpc/corenet_ds: Slave module for boot from SRIO
  powerpc/corenet_ds: Master module for boot from SRIO
  powerpc/corenet_ds: Document for the boot from SRIO
  powerpc/corenet_ds: Correct the compilation errors about ENV
  powerpc/srio: Rewrite the struct ccsr_rio
  powerpc/85xx:Fix lds for nand boot debug info
  powerpc/p2041rdb: add env in NAND support
  powerpc/p2041rdb: add NAND and NAND boot support
  powerpc/mpc8xxx: Fix CONFIG_DDR_RAW_TIMING for two boards
  powerpc/85xx:Avoid vector table compilation for nand_spl
  powerpc/85xx:Fix IVORs addr after vector table relocation
  powerpc/85xx:Avoid hardcoded vector address for IVORs
  powerpc/p1023rds: Disable nor flash node and enable nand flash node
Diffstat (limited to 'common/cmd_nvedit.c')
| -rw-r--r-- | common/cmd_nvedit.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index b1494dcb0..e1ccdd8f7 100644 --- a/common/cmd_nvedit.c +++ b/common/cmd_nvedit.c @@ -66,9 +66,10 @@ DECLARE_GLOBAL_DATA_PTR;  	!defined(CONFIG_ENV_IS_IN_NVRAM)	&& \  	!defined(CONFIG_ENV_IS_IN_ONENAND)	&& \  	!defined(CONFIG_ENV_IS_IN_SPI_FLASH)	&& \ +	!defined(CONFIG_ENV_IS_IN_REMOTE)	&& \  	!defined(CONFIG_ENV_IS_NOWHERE)  # error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\ -SPI_FLASH|MG_DISK|NVRAM|MMC|FAT} or CONFIG_ENV_IS_NOWHERE +SPI_FLASH|MG_DISK|NVRAM|MMC|FAT|REMOTE} or CONFIG_ENV_IS_NOWHERE  #endif  #define XMK_STR(x)	#x |