Home
last modified time | relevance | path

Searched refs:relocated_addr (Results 1 – 3 of 3) sorted by relevance

/external/u-boot/cmd/
Dbooti.c24 ulong relocated_addr; in booti_start() local
40 ret = booti_setup(ld, &relocated_addr, &image_size, false); in booti_start()
45 if (relocated_addr != ld) { in booti_start()
46 debug("Moving Image from 0x%lx to 0x%lx\n", ld, relocated_addr); in booti_start()
47 memmove((void *)relocated_addr, (void *)ld, image_size); in booti_start()
50 images->ep = relocated_addr; in booti_start()
/external/u-boot/arch/arm/lib/
Dimage.c29 int booti_setup(ulong image, ulong *relocated_addr, ulong *size, in booti_setup() argument
36 *relocated_addr = image; in booti_setup()
72 *relocated_addr = ALIGN(dst, SZ_2M) + text_offset; in booti_setup()
/external/u-boot/include/
Dimage.h888 int booti_setup(ulong image, ulong *relocated_addr, ulong *size,