003 File Manager
Current Path:
/usr/src/stand/i386
usr
/
src
/
stand
/
i386
/
📁
..
📄
Makefile
(724 B)
📄
Makefile.inc
(944 B)
📄
boot.ldscript
(498 B)
📁
boot0
📁
boot0sio
📁
boot2
📁
btx
📁
cdboot
📁
common
📁
gptboot
📁
gptzfsboot
📁
isoboot
📁
libfirewire
📁
libi386
📁
loader
📁
loader_4th
📁
loader_lua
📁
loader_simp
📁
mbr
📁
pmbr
📁
pxeldr
📁
zfsboot
Editing: boot.ldscript
/* $FreeBSD$ */ /* Simplified linker script for the boot loaders. */ OUTPUT_FORMAT("elf32-i386-freebsd") OUTPUT_ARCH(i386) ENTRY(_start) SECTIONS { . = ORG; .text : { *(.text .text.*) } =0xcccccccc /* Pad with int3, if needed */ .rodata : { *(.rodata .rodata.*) } .got : { *(.got) *(.igot) } .got.plt : { *(.got.plt) *(.igot.plt) } .data : { *(.data .data.*) } _edata = .; PROVIDE (edata = .); .bss : { *(.bss .bss.*) } _end = .; PROVIDE (end = .); /DISCARD/ : { *(.interp) } }
Upload File
Create Folder