1 /* SPDX-License-Identifier: GPL-2.0+ */
4 * Graeme Russ, <graeme.russ@gmail.com>
13 * copy_uboot_to_ram() - Copy U-Boot to its new relocated position
15 * @return 0 if OK, -ve on error
17 int copy_uboot_to_ram(void);
20 * clear_bss() - Clear the BSS (Blocked Start by Symbol) segment
22 * This clears the memory used by global variables
24 * @return 0 if OK, -ve on error
29 * do_elf_reloc_fixups() - Fix up ELF relocations in the relocated code
31 * This processes the relocation tables to ensure that the code can run in its
34 * @return 0 if OK, -ve on error
36 int do_elf_reloc_fixups(void);
38 #endif /* _RELOCATE_H_ */