%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-4.4.0-210/arch/cris/boot/rescue/ |
Upload File : |
/*#OUTPUT_FORMAT(elf32-us-cris) */ OUTPUT_ARCH (crisv32) /* Now that NAND support has been stripped, this file could be simplified, * but it doesn't do any harm on the other hand so why bother. */ MEMORY { bootblk : ORIGIN = 0x38000000, LENGTH = 0x00004000 intmem : ORIGIN = 0x38004000, LENGTH = 0x00005000 } SECTIONS { .text : { _stext = . ; *(.text) *(.init.text) *(.rodata) *(.rodata.*) _etext = . ; } > bootblk .data : { *(.data) _edata = . ; } > bootblk .bss : { _bss = . ; *(.bss) _end = ALIGN( 0x10 ) ; } > intmem /* Get rid of stuff from EXPORT_SYMBOL(foo). */ /DISCARD/ : { *(__ksymtab_strings) *(__ksymtab) } }