mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-23 09:08:15 +01:00
Use the new symbol to refer to any 'SPL' build, including TPL and VPL Signed-off-by: Simon Glass <sjg@chromium.org>
24 lines
369 B
C
24 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_XPL_BUILD
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
.word 0x0badc0d3;
|
|
#endif
|
|
|
|
#endif /* __BOOT0_H */
|