/* $NetBSD: kern.ldscript,v 1.5 2006/08/27 04:48:44 tsutsui Exp $ */ /* ldscript for NetBSD/mips kernels and LKMs */ OUTPUT_ARCH(mips) ENTRY(_start) SEARCH_DIR(/lib); /* Do we need any of these? __DYNAMIC = 0; */ _DYNAMIC_LINK = 0; SECTIONS { /* Read-only sections, merged into text segment. Assumes the kernel Makefile sets the start address via -Ttext. */ .text : { _ftext = . ; *(.text) *(.gnu.warning) } =0 _etext = .; PROVIDE (etext = .); .rodata : { *(.rodata) *(.rodata.*) } .reginfo : { *(.reginfo) } /* . = . + 0x1000; */ .data : { _fdata = . ; *(.data) CONSTRUCTORS } _gp = ALIGN(16) + 0x7ff0; .lit8 : { *(.lit8) } .lit4 : { *(.lit4) } .sdata : { *(.sdata) } _edata = .; PROVIDE (edata = .); __bss_start = .; _fbss = .; .sbss : { *(.sbss) *(.scommon) } .bss : { *(.bss) *(COMMON) } _end = . ; PROVIDE (end = .); /* These are needed for ELF backends which have not yet been converted to the new style linker. */ .stab 0 : { *(.stab) } .stabstr 0 : { *(.stabstr) } /* DWARF debug sections. Symbols in the .debug DWARF section are relative to the beginning of the section so we begin .debug at 0. It's not clear yet what needs to happen for the others. */ .debug 0 : { *(.debug) } .debug_srcinfo 0 : { *(.debug_srcinfo) } .debug_aranges 0 : { *(.debug_aranges) } .debug_pubnames 0 : { *(.debug_pubnames) } .debug_sfnames 0 : { *(.debug_sfnames) } .line 0 : { *(.line) } /* These must appear regardless of . */ .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) } .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) } } 68'>diff
path: root/sys/dev/microcode/isp/asm_2400.h
AgeCommit message (Expand)Author
2011-02-28Update firmware sets for the (rare) 2322, 2400 and 2500. In particular themjacob
2009-06-25Update 2400 firmware to latest (to match 2500 firmware)mjacob
2009-05-07update firmwaremjacob
2008-05-11Update 2400 f/w to something more akin to what is current.mjacob
2008-03-11Checkpoint of some fairly major isp(4) rototilling.mjacob
2007-05-24Major update to isp(4) driver to bring it in line with external sources.mjacob