mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-25 21:24:21 +08:00
Fix memory corruption problem on STX GP3 SSA Board.
Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
38ad82da0c
commit
f34024d4a3
@ -381,9 +381,11 @@ static struct pci_config_table pci_stxgp3_config_table[] = {
|
||||
static struct pci_controller hose[] = {
|
||||
#ifndef CONFIG_PCI_PNP
|
||||
{ config_table: pci_stxgp3_config_table,},
|
||||
#ifdef CONFIG_MPC85XX_PCI2
|
||||
#else
|
||||
{},
|
||||
#endif
|
||||
#ifdef CONFIG_MPC85XX_PCI2
|
||||
{},
|
||||
#endif
|
||||
};
|
||||
|
||||
|
@ -145,6 +145,7 @@ SECTIONS
|
||||
. = ALIGN(256);
|
||||
__init_end = .;
|
||||
|
||||
. = .;
|
||||
__bss_start = .;
|
||||
.bss :
|
||||
{
|
||||
|
@ -541,11 +541,11 @@ restart:
|
||||
|
||||
case NETLOOP_SUCCESS:
|
||||
if (NetBootFileXferSize > 0) {
|
||||
char buf[10];
|
||||
char buf[20];
|
||||
printf("Bytes transferred = %ld (%lx hex)\n",
|
||||
NetBootFileXferSize,
|
||||
NetBootFileXferSize);
|
||||
sprintf(buf, "%lx", NetBootFileXferSize);
|
||||
sprintf(buf, "%lX", NetBootFileXferSize);
|
||||
setenv("filesize", buf);
|
||||
|
||||
sprintf(buf, "%lX", (unsigned long)load_addr);
|
||||
|
Loading…
Reference in New Issue
Block a user