OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
arch
/
h8300
/
boot
/
compressed
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
Makefile
1.29 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
vmlinux.lds
547 bytes
01/28/2018 09:20:33 PM
rw-r--r--
Editing: vmlinux.lds
Close
/* SPDX-License-Identifier: GPL-2.0 */ SECTIONS { .text : { __stext = . ; __text = .; *(.text..startup) *(.text) __etext = . ; } .rodata : { *(.rodata) } . = ALIGN(0x4) ; .data : { . = ALIGN(0x4) ; __sdata = . ; ___data_start = . ; *(.data.*) } . = ALIGN(0x4) ; .bss : { __sbss = . ; *(.bss*) . = ALIGN(0x4) ; __ebss = . ; } _end = . ; }