3 * Graeme Russ, <graeme.russ@gmail.com>
5 * SPDX-License-Identifier: GPL-2.0+
14 * copy_uboot_to_ram() - Copy U-Boot to its new relocated position
16 * @return 0 if OK, -ve on error
18 int copy_uboot_to_ram(void);
21 * clear_bss() - Clear the BSS (Blocked Start by Symbol) segment
23 * This clears the memory used by global variables
25 * @return 0 if OK, -ve on error
30 * do_elf_reloc_fixups() - Fix up ELF relocations in the relocated code
32 * This processes the relocation tables to ensure that the code can run in its
35 * @return 0 if OK, -ve on error
37 int do_elf_reloc_fixups(void);
39 #endif /* _RELOCATE_H_ */