mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
10 lines
197 B
Text
10 lines
197 B
Text
![]() |
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
OUTPUT_FORMAT(binary)
|
||
|
SECTIONS
|
||
|
{
|
||
|
.start : { *(.start) }
|
||
|
.text : { *(.text*) }
|
||
|
.rodata : { *(.rodata) }
|
||
|
.data : { *(.data) }
|
||
|
}
|