Skip to content

Commit ad3aad8

Browse files
danielRepmiguelafsilva5
authored andcommitted
fix(img_addr): define load and data address in C
Signed-off-by: Daniel Oliveira <[email protected]>
1 parent 6dfdd4e commit ad3aad8

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

src/arch/armv8/aarch32/boot.S

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@
2323
*/
2424
_barrier: .4byte 0
2525

26-
.balign 4
27-
.global img_addr
28-
img_addr: .4byte 0
29-
3026
/**
3127
* The following code MUST be at the base of the image, as this is bao's entry point. Therefore
3228
* .boot section must also be the first in the linker script. DO NOT implement any code before the

src/arch/armv8/aarch64/boot.S

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@
1717
.global _boot_barrier
1818
_boot_barrier: .8byte 0
1919

20-
.balign 8
21-
.global img_addr
22-
img_addr: .8byte 0
23-
2420
/**
2521
* The following code MUST be at the base of the image, as this is bao's entry point. Therefore
2622
* .boot section must also be the first in the linker script. DO NOT implement any code before the

src/arch/riscv/boot.S

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,6 @@ _extra_allocated_phys_mem_sym: .8byte extra_allocated_phys_mem
7171
*/
7272
_barrier: .8byte 0
7373

74-
.balign 4
75-
.global img_addr
76-
img_addr: .8byte 0
77-
7874
/**
7975
* The following code MUST be at the base of the image, as this is bao's entrypoint. Therefore
8076
* .boot section must also be the first in the linker script. DO NOT implement any code before the

0 commit comments

Comments
 (0)