mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-04 03:33:58 +08:00
16 lines
188 B
Plaintext
16 lines
188 B
Plaintext
|
SECTIONS
|
||
|
{
|
||
|
.text : ALIGN(4096)
|
||
|
{
|
||
|
*(.text .text.* .fixup)
|
||
|
}
|
||
|
.init.text : ALIGN(4096)
|
||
|
{
|
||
|
*(.init.text .init.text.*)
|
||
|
}
|
||
|
.exit.text : ALIGN(4096)
|
||
|
{
|
||
|
*(.exit.text .exit.text.*)
|
||
|
}
|
||
|
}
|