mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-11 21:14:07 +08:00
10 lines
197 B
Plaintext
10 lines
197 B
Plaintext
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
OUTPUT_FORMAT(binary)
|
||
|
SECTIONS
|
||
|
{
|
||
|
.start : { *(.start) }
|
||
|
.text : { *(.text*) }
|
||
|
.rodata : { *(.rodata) }
|
||
|
.data : { *(.data) }
|
||
|
}
|