mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-22 09:39:13 +00:00
There is no need for specific parasite or restorer head sections, a general "head" one is enough. Also .stack section is dropped since it's never used. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
18 lines
192 B
ArmAsm
18 lines
192 B
ArmAsm
OUTPUT_FORMAT("binary")
|
|
OUTPUT_ARCH(i386:x86-64)
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0;
|
|
.text : {
|
|
*(.head.text)
|
|
*(.text)
|
|
. = ALIGN(8);
|
|
}
|
|
.data : {
|
|
*(.data)
|
|
*(.rodata)
|
|
*(.bss)
|
|
. = ALIGN(8);
|
|
}
|
|
}
|