mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
x86: Convert board_init_f_r to a processing loop
Create an init function array for board_init_f_r - This finalises the migration to a purely array based initialisation mechanism Also tweak a few comments while we are at it so everything is 'correct' -- Changes for v2: - Renamed to a more apt name - Fix bug in set_reloc_flag_r - Re-instate gd->flags = boot_flags; in board_init_f - Added commit message
This commit is contained in:
parent
d47ab0ecde
commit
a1d57b7aba
5 changed files with 206 additions and 125 deletions
|
@ -27,7 +27,12 @@
|
|||
int display_banner(void);
|
||||
int display_dram_config(void);
|
||||
int init_baudrate_f(void);
|
||||
int calculate_relocation_address(void);
|
||||
|
||||
int copy_gd_to_ram_f_r(void);
|
||||
int init_cache_f_r(void);
|
||||
|
||||
int set_reloc_flag_r(void);
|
||||
int mem_malloc_init_r(void);
|
||||
int init_bd_struct_r(void);
|
||||
int flash_init_r(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue