diff options
| author | Stefan Roese <sr@denx.de> | 2007-08-24 15:41:42 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2007-08-24 15:41:42 +0200 | 
| commit | 75e1a84d483e36be10e206e539b028c4889e1158 (patch) | |
| tree | a998c377789e177418f9500184b20866451e62bf | |
| parent | d7bfa620037a6d2210159387571bdf93aa32c162 (diff) | |
| download | olio-uboot-2014.01-75e1a84d483e36be10e206e539b028c4889e1158.tar.xz olio-uboot-2014.01-75e1a84d483e36be10e206e539b028c4889e1158.zip | |
ppc4xx: Add RTC POST test to lwmon5 board configuration
Since this RTC POST test is taking quite a while to complete
it's only initiated upon special keypress same as the complete
memory POST.
Signed-off-by: Stefan Roese <sr@denx.de>
| -rw-r--r-- | include/configs/lwmon5.h | 15 | 
1 files changed, 8 insertions, 7 deletions
| diff --git a/include/configs/lwmon5.h b/include/configs/lwmon5.h index ecca577aa..be483245b 100644 --- a/include/configs/lwmon5.h +++ b/include/configs/lwmon5.h @@ -142,15 +142,16 @@  #endif  /* POST support */ -#define CONFIG_POST		(CFG_POST_MEMORY   | \ -				 CFG_POST_ECC_ON   | \ +#define CONFIG_POST		(CFG_POST_CACHE    | \  				 CFG_POST_CPU	   | \ -				 CFG_POST_UART	   | \ -				 CFG_POST_I2C	   | \ -				 CFG_POST_CACHE	   | \ -				 CFG_POST_FPU	   | \ +				 CFG_POST_ECC_ON   | \  				 CFG_POST_ETHER	   | \ -				 CFG_POST_SPR) +				 CFG_POST_FPU	   | \ +				 CFG_POST_I2C	   | \ +				 CFG_POST_MEMORY   | \ +				 CFG_POST_RTC      | \ +				 CFG_POST_SPR      | \ +				 CFG_POST_UART)  #define CFG_POST_CACHE_ADDR	0x10000000	/* free virtual address		*/  #define CONFIG_LOGBUFFER |