Files
kernel_realme_sm7125/scripts/module-lto.lds
Tim Zimmermann a4adbb0043 fixup! bpf: Update logging functions to work with BTF
* Upstream calls bpf_verifier_vlog() directly and calling
  bpf_verifier_log_write() here can sometimes break format args
  and cause kernel panics

Change-Id: I5f7dde9e83b8ef5a2bd1d2739bc08dd2ce69c41d
Signed-off-by: Ruchit <risen@pixelexperience.org>
2025-12-13 18:55:10 +05:30

23 lines
330 B
Plaintext

SECTIONS {
/DISCARD/ : {
*(.eh_frame)
}
.bss : {
*(.bss .bss.[0-9a-zA-Z_]*)
*(.bss..L*)
}
.data : {
*(.data .data.[0-9a-zA-Z_]*)
*(.data..L*)
}
.rodata : {
*(.rodata .rodata.[0-9a-zA-Z_]*)
*(.rodata..L*)
}
.text : ALIGN((1 << 12)) {
*(.text.__cfi_check)
*(.text .text.[0-9a-zA-Z_]* .text..L.cfi*)
}
}