| .. | .. |
|---|
| 3 | 3 | * |
|---|
| 4 | 4 | * Linker script for the i386 setup code |
|---|
| 5 | 5 | */ |
|---|
| 6 | | -OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386") |
|---|
| 6 | +OUTPUT_FORMAT("elf32-i386") |
|---|
| 7 | 7 | OUTPUT_ARCH(i386) |
|---|
| 8 | 8 | ENTRY(_start) |
|---|
| 9 | 9 | |
|---|
| .. | .. |
|---|
| 20 | 20 | .initdata : { *(.initdata) } |
|---|
| 21 | 21 | __end_init = .; |
|---|
| 22 | 22 | |
|---|
| 23 | | - .text : { *(.text) } |
|---|
| 23 | + .text : { *(.text .text.*) } |
|---|
| 24 | 24 | .text32 : { *(.text32) } |
|---|
| 25 | 25 | |
|---|
| 26 | 26 | . = ALIGN(16); |
|---|
| .. | .. |
|---|
| 51 | 51 | . = ALIGN(16); |
|---|
| 52 | 52 | _end = .; |
|---|
| 53 | 53 | |
|---|
| 54 | | - /DISCARD/ : { *(.note*) } |
|---|
| 54 | + /DISCARD/ : { |
|---|
| 55 | + *(.note*) |
|---|
| 56 | + } |
|---|
| 55 | 57 | |
|---|
| 56 | 58 | /* |
|---|
| 57 | 59 | * The ASSERT() sink to . is intentional, for binutils 2.14 compatibility: |
|---|