mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
x86: Add an __end symbol to signal the end of the U-Boot binary
With this symbol we can easy append something (e.g. an FDT) to the U-Boot binary and access it from within U-Boot. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
bc2df1afb9
commit
4b491b8dde
3 changed files with 4 additions and 1 deletions
|
@ -31,6 +31,7 @@ extern ulong __rel_dyn_start;
|
|||
extern ulong __rel_dyn_end;
|
||||
extern ulong __bss_start;
|
||||
extern ulong __bss_end;
|
||||
extern ulong _end;
|
||||
|
||||
/* cpu/.../cpu.c */
|
||||
int x86_cpu_init_r(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue