diff options
| -rw-r--r-- | common/cmd_ide.c | 4 | ||||
| -rw-r--r-- | cpu/ppc4xx/405gp_pci.c | 2 | ||||
| -rw-r--r-- | include/configs/sc3.h | 5 | ||||
| -rw-r--r-- | lib_ppc/board.c | 6 | 
4 files changed, 9 insertions, 8 deletions
| diff --git a/common/cmd_ide.c b/common/cmd_ide.c index ce99a41ab..e308474af 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@ -514,11 +514,11 @@ void ide_init (void)  	unsigned char c;  	int i, bus;  #if defined(CONFIG_AMIGAONEG3SE) || defined(CONFIG_SC3) -	unsigned int ata_reset_time; +	unsigned int ata_reset_time = ATA_RESET_TIME; +	char *s;  #endif  #ifdef CONFIG_AMIGAONEG3SE  	unsigned int max_bus_scan; -	char *s;  #endif  #ifdef CONFIG_IDE_8xx_PCCARD  	extern int pcmcia_on (void); diff --git a/cpu/ppc4xx/405gp_pci.c b/cpu/ppc4xx/405gp_pci.c index 713435563..8bf03e1b2 100644 --- a/cpu/ppc4xx/405gp_pci.c +++ b/cpu/ppc4xx/405gp_pci.c @@ -380,7 +380,7 @@ void pci_405gp_setup_vga(struct pci_controller *hose, pci_dev_t dev,  	pci_hose_write_config_dword(hose, dev, PCI_COMMAND, cmdstat);  } -#if !(defined(CONFIG_PIP405) || defined (CONFIG_MIP405)) && !(defined (CONFIG_SOLIDCARD3)) +#if !(defined(CONFIG_PIP405) || defined (CONFIG_MIP405)) && !(defined (CONFIG_SC3))  /*   *As is these functs get called out of flash Not a horrible diff --git a/include/configs/sc3.h b/include/configs/sc3.h index 6b6acfa87..e4357b088 100644 --- a/include/configs/sc3.h +++ b/include/configs/sc3.h @@ -58,7 +58,7 @@   * 0xFFE00000 .... 0xFFFFFFFF -> BOOT-ROM (2 MiB)   */ -#define CONFIG_SOLIDCARD3	1 +#define CONFIG_SC3	1  #define CONFIG_4xx	1  #define CONFIG_405GP	1 @@ -134,7 +134,8 @@  #if 1	/* feel free to disable for development */  #define CONFIG_AUTOBOOT_KEYED		/* Enable password protection	*/  #define CONFIG_AUTOBOOT_PROMPT		"\nSC3 - booting... stop with ENTER\n" -#define CONFIG_AUTOBOOT_DELAY_STR	"\n"	/* 1st "password"	*/ +#define CONFIG_AUTOBOOT_DELAY_STR	"\r"	/* 1st "password"	*/ +#define CONFIG_AUTOBOOT_DELAY_STR2	"\n"	/* 1st "password"	*/  #endif  /* diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 9e85cdddc..c4fc5805a 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -76,7 +76,7 @@  extern int update_flash_size (int flash_size);  #endif -#if defined(CONFIG_SOLIDCARD3) +#if defined(CONFIG_SC3)  extern void sc3_read_eeprom(void);  #endif @@ -820,7 +820,7 @@ void board_init_r (gd_t *id, ulong dest_addr)  #endif	/* CONFIG_405GP, CONFIG_405EP */  #endif	/* CFG_EXTBDINFO */ -#if defined(CONFIG_SOLIDCARD3) +#if defined(CONFIG_SC3)  	sc3_read_eeprom();  #endif  	s = getenv ("ethaddr"); @@ -929,7 +929,7 @@ void board_init_r (gd_t *id, ulong dest_addr)      defined(CONFIG_KUP4X)	|| \      defined(CONFIG_LWMON)	|| \      defined(CONFIG_PCU_E)	|| \ -    defined(CONFIG_SOLIDCARD3)	|| \ +    defined(CONFIG_SC3)		|| \      defined(CONFIG_W7O)		|| \      defined(CONFIG_MISC_INIT_R)  	/* miscellaneous platform dependent initialisations */ |