Skip to content

Commit

Permalink
arch: remove tabs in the linker scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
HidenoriMatsubayashi committed Sep 15, 2024
1 parent 60e2737 commit 42f5000
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/arch/arm64/scripts/qemu/linker.ld
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ MEMORY
* U-BOOT loadd address: 0x40280000
* Physical memory size: 4GB
*/
RAM (xrw) : ORIGIN = 0x40280000, LENGTH = 4 * 1024 * 1024 * 1024
RAM (xrw) : ORIGIN = 0x40280000, LENGTH = 4 * 1024 * 1024 * 1024
}

SECTIONS {
Expand Down
2 changes: 1 addition & 1 deletion src/arch/arm64/scripts/rpi4/linker.ld
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ MEMORY
* Physical memory size: 4GB
*/
RESERVED (r) : ORIGIN = 0x00000000, LENGTH = 32K
RAM (xrw) : ORIGIN = 0x00080000, LENGTH = (0x100000000 - 0x00080000)
RAM (xrw) : ORIGIN = 0x00080000, LENGTH = (0x100000000 - 0x00080000)
}

SECTIONS {
Expand Down
2 changes: 1 addition & 1 deletion src/arch/arm64/scripts/rpi5/linker.ld
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ MEMORY
* Physical memory size: 4GB
*/
RESERVED (r) : ORIGIN = 0x00000000, LENGTH = 32K
RAM (xrw) : ORIGIN = 0x00200000, LENGTH = (0x100000000 - 0x00200000)
RAM (xrw) : ORIGIN = 0x00200000, LENGTH = (0x100000000 - 0x00200000)
}

SECTIONS {
Expand Down

0 comments on commit 42f5000

Please sign in to comment.