mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 10:24:49 +00:00

Rename arch-rmobile to arch-renesas and mach-rmobile to mach-renesas because all the chips are made by Renesas, while only a subset of them is from the R-Mobile line. Use the following command to perform the rename, with manual move of the directories using git mv and manual fix up to arch/arm/Makefile: " $ git grep -l '\<\(arch\|mach\)-rmobile\>' | \ xargs -I {} sed -i 's@\<\(arch\|mach\)-rmobile\>@\1-renesas@g' {} $ sed -i 's@rmobile@renesas@' board/*/*/Kconfig " Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Paul Barker <paul.barker.ct@bp.renesas.com>
23 lines
369 B
C
23 lines
369 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Specialty padding for the RCar Gen2 SPL JTAG loading
|
|
*/
|
|
|
|
#ifndef __BOOT0_H
|
|
#define __BOOT0_H
|
|
|
|
_start:
|
|
ARM_VECTORS
|
|
|
|
#ifdef CONFIG_SPL_BUILD
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
#endif
|
|
|
|
#endif /* __BOOT0_H */
|