OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
arch
/
cris
/
boot
/
compressed
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:19 AM
rwxr-xr-x
📄
Makefile
1.03 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
decompress_v10.lds
381 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
decompress_v32.lds
376 bytes
01/28/2018 09:20:33 PM
rw-r--r--
Editing: decompress_v32.lds
Close
/* SPDX-License-Identifier: GPL-2.0 */ /*#OUTPUT_FORMAT(elf32-us-cris) */ OUTPUT_ARCH (crisv32) MEMORY { dram : ORIGIN = 0x40700000, LENGTH = 0x00100000 } SECTIONS { .text : { _stext = . ; *(.text) *(.rodata) *(.rodata.*) _etext = . ; } > dram .data : { *(.data) _edata = . ; } > dram .bss : { *(.bss) _end = ALIGN( 0x10 ) ; } > dram }