mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
* Patches by Thomas Viehweger, 16 Mar 2004:
- show PCI clock frequency on MPC8260 systems - add FCC_PSMR_RMII flag for HiP7 processors - in do_jffs2_fsload(), take load address from load_addr if not set explicit, update load_addr otherwise - replaced printf by putc/puts when no formatting is needed (smaller code size, faster execution)
This commit is contained in:
parent
109c0e3ad3
commit
4b9206ed51
35 changed files with 365 additions and 345 deletions
11
net/nfs.c
11
net/nfs.c
|
@ -746,19 +746,14 @@ NfsStart (void)
|
|||
print_IPaddr (NetOurGatewayIP) ;
|
||||
}
|
||||
}
|
||||
putc ('\n');
|
||||
|
||||
printf ("Filename '%s/%s'.", nfs_path, nfs_filename);
|
||||
printf ("\nFilename '%s/%s'.", nfs_path, nfs_filename);
|
||||
|
||||
if (NetBootFileSize) {
|
||||
printf (" Size is 0x%x Bytes = ", NetBootFileSize<<9);
|
||||
print_size (NetBootFileSize<<9, "");
|
||||
}
|
||||
putc ('\n');
|
||||
|
||||
printf ("Load address: 0x%lx\n", load_addr);
|
||||
|
||||
printf ("Loading: *\b");
|
||||
printf ("\nLoad address: 0x%lx\n"
|
||||
"Loading: *\b", load_addr);
|
||||
|
||||
NetSetTimeout (NFS_TIMEOUT * CFG_HZ, NfsTimeout);
|
||||
NetSetHandler (NfsHandler);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue