mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
Merge branch 'master' of git://git.denx.de/u-boot-mips
This commit is contained in:
@ -24,6 +24,7 @@
|
|||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <command.h>
|
#include <command.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
|
#include <serial.h>
|
||||||
#include <stdio_dev.h>
|
#include <stdio_dev.h>
|
||||||
#include <version.h>
|
#include <version.h>
|
||||||
#include <net.h>
|
#include <net.h>
|
||||||
@ -46,7 +47,7 @@ static char *failed = "*** failed ***\n";
|
|||||||
* mips_io_port_base is the begin of the address space to which x86 style
|
* mips_io_port_base is the begin of the address space to which x86 style
|
||||||
* I/O ports are mapped.
|
* I/O ports are mapped.
|
||||||
*/
|
*/
|
||||||
unsigned long mips_io_port_base = -1;
|
const unsigned long mips_io_port_base = -1;
|
||||||
|
|
||||||
int __board_early_init_f(void)
|
int __board_early_init_f(void)
|
||||||
{
|
{
|
||||||
@ -262,6 +263,8 @@ void board_init_r(gd_t *id, ulong dest_addr)
|
|||||||
|
|
||||||
monitor_flash_len = (ulong)&uboot_end_data - dest_addr;
|
monitor_flash_len = (ulong)&uboot_end_data - dest_addr;
|
||||||
|
|
||||||
|
serial_initialize();
|
||||||
|
|
||||||
#if defined(CONFIG_NEEDS_MANUAL_RELOC)
|
#if defined(CONFIG_NEEDS_MANUAL_RELOC)
|
||||||
/*
|
/*
|
||||||
* We have to relocate the command table manually
|
* We have to relocate the command table manually
|
||||||
|
Reference in New Issue
Block a user