rk27xx: rename 'start' to '__start'

Change-Id: I3c5bbbc952222e840e82171431ba996a6a5d298b
This commit is contained in:
Solomon Peachy 2020-07-15 14:18:09 -04:00
parent df14f12675
commit 650eaa39c4
3 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
#include "config.h"
ENTRY(start)
ENTRY(__start)
#ifdef ROCKBOX_LITTLE_ENDIAN
OUTPUT_FORMAT(elf32-littlearm)
#else

View file

@ -1,6 +1,6 @@
#include "config.h"
ENTRY(start)
ENTRY(__start)
#ifdef ROCKBOX_LITTLE_ENDIAN
OUTPUT_FORMAT(elf32-littlearm)
#else

View file

@ -23,12 +23,12 @@
#include "config.h"
#include "cpu.h"
.global start
.global __start
.global entry_point
/* Exception vectors */
.section .intvect,"ax",%progbits
ldr pc, =start
ldr pc, =__start
ldr pc, =undef_instr_handler
ldr pc, =software_int_handler
ldr pc, =prefetch_abort_handler
@ -39,7 +39,7 @@
.ltorg
.text
start:
__start:
msr cpsr_c, #0xd3 /* enter supervisor mode, disable IRQ/FIQ */
#ifdef BOOTLOADER