diff options
Diffstat (limited to 'src/northbridge')
-rw-r--r-- | src/northbridge/via/vx800/romstrap.ld | 2 | ||||
-rw-r--r-- | src/northbridge/via/vx900/romstrap.ld | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/northbridge/via/vx800/romstrap.ld b/src/northbridge/via/vx800/romstrap.ld index cddb48262e..a3d6a77b26 100644 --- a/src/northbridge/via/vx800/romstrap.ld +++ b/src/northbridge/via/vx800/romstrap.ld @@ -21,6 +21,6 @@ SECTIONS { . = (0xffffffff - 0x2c) - (__romstrap_end - __romstrap_start) + 1; .romstrap (.): { - *(.romstrap) + KEEP(*(.romstrap)) } } diff --git a/src/northbridge/via/vx900/romstrap.ld b/src/northbridge/via/vx900/romstrap.ld index fc63c050d9..d27e9df9ba 100644 --- a/src/northbridge/via/vx900/romstrap.ld +++ b/src/northbridge/via/vx900/romstrap.ld @@ -22,6 +22,6 @@ SECTIONS { . = (0x100000000 - 0x2c) - (__romstrap_end - __romstrap_start); .romstrap (.): { - *(.romstrap) + KEEP(*(.romstrap)) } } |