2011-12-23 10:14:22 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2011
|
|
|
|
* Graeme Russ, <graeme.russ@gmail.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-12-23 10:14:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _RELOCATE_H_
|
|
|
|
#define _RELOCATE_H_
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
|
|
|
|
int copy_uboot_to_ram(void);
|
2013-02-28 19:26:15 +00:00
|
|
|
int copy_fdt_to_ram(void);
|
2011-12-23 10:14:22 +00:00
|
|
|
int clear_bss(void);
|
|
|
|
int do_elf_reloc_fixups(void);
|
|
|
|
|
|
|
|
#endif /* !_RELOCATE_H_ */
|