diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-30 16:45:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-30 16:45:10 +0000 |
commit | 14a012c1e4f172206411e4224fcb5cad3e9efae0 (patch) | |
tree | a494c64eb03af5213b654e2ee63277016cbc9266 /carl9170fw/minifw/miniboot.lds | |
parent | Releasing progress-linux version 20230625-3~exp2~progress7.99u1. (diff) | |
download | firmware-nonfree-14a012c1e4f172206411e4224fcb5cad3e9efae0.tar.xz firmware-nonfree-14a012c1e4f172206411e4224fcb5cad3e9efae0.zip |
Merging upstream version 20240709.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | carl9170fw/minifw/miniboot.lds | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/carl9170fw/minifw/miniboot.lds b/carl9170fw/minifw/miniboot.lds deleted file mode 100644 index 51e5ac4..0000000 --- a/carl9170fw/minifw/miniboot.lds +++ /dev/null @@ -1,20 +0,0 @@ -ENTRY(_start); - -MEMORY -{ - pram : ORIGIN = 0x200000, LENGTH = 16k -} - -SECTIONS -{ - .padding : { - /* NOP NOP just in case */ - LONG(0x00090009) - } > pram - - .boot : { *(.boot) } > pram - .text : { *(.text*) } > pram - .rodata : { *(.rodata*) } > pram - .bss : { *(.bss) } > pram - .data : { *(.data*) } > pram -} |