mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
basic u-boot is working, boots into the command shell.
This commit is contained in:
parent
9d803d8c0b
commit
b3c36e6b94
2 changed files with 4 additions and 1 deletions
|
@ -62,6 +62,7 @@ void inline spin_wheel (void);
|
|||
|
||||
unsigned long flash_init (void)
|
||||
{
|
||||
#if 0
|
||||
int i;
|
||||
ulong size = 0;
|
||||
|
||||
|
@ -94,6 +95,8 @@ unsigned long flash_init (void)
|
|||
CFG_ENV_ADDR + CFG_ENV_SIZE - 1, &flash_info[0] );
|
||||
|
||||
return size;
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*-----------------------------------------------------------------------
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
/*
|
||||
* select serial console configuration
|
||||
*/
|
||||
#define CONFIG_FFUART 1 /* we use FFUART on LUBBOCK */
|
||||
#define CONFIG_FFUART 1
|
||||
|
||||
/* allow to overwrite serial and ethaddr */
|
||||
#define CONFIG_ENV_OVERWRITE
|
||||
|
|
Loading…
Reference in a new issue