2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 18:07:57 +00:00
criu/compel/arch/mips/scripts/compel-pack.lds.S
Radostin Stoyanov 22142eedf0 mips: coding style fixes
CRIU follows Linux kernel coding style. This patch updates the
architecture-specific code for MIPS to use tab indentation,
add whitespace between closing parenthesis and open bracket,
and changes the mode of source files from 755 to 644.

Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
2021-09-03 10:31:00 -07:00

34 lines
533 B
ArmAsm

OUTPUT_ARCH(mips)
EXTERN(__export_parasite_head_start)
SECTIONS
{
.text : {
*(.head.text)
ASSERT(DEFINED(__export_parasite_head_start),
"Symbol __export_parasite_head_start is missing");
*(.text*)
*(.compel.exit)
*(.compel.init)
/* .rodata section*/
*(.rodata*)
*(.got*)
/* .data section */
*(.data*)
*(.bss*)
*(.sbss*)
*(.toc*)
}
/DISCARD/ : { /*segments need to discard */
*(.debug*)
*(.pdr)
*(.comment*)
*(.note*)
*(.group*)
*(.eh_frame*)
*(.MIPS.options)
*(.gnu.attributes)
}
}