summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Obey MK_INET6_SUPPORT.yar2006-07-273-5/+23
|
* Respect MK_INET6_SUPPORT.yar2006-07-271-1/+5
| | | | | | | Move INET6 out of the RELEASE_CRUNCH conditional block because it saves as little as 2% of the binary size and IPv6 is rather popular today. (Some other binaries, e.g., telnetd, include INET6 for RELEASE_CRUNCH already.)
* rpcinfo(1) doesn't depend on INET6 explicitly.yar2006-07-271-1/+1
|
* Obey MK_INET6_SUPPORT.yar2006-07-273-9/+28
| | | | This is also a good chance to apply style.Makefile(5) in some cases.
* style.Makefile(5) is good for our eyes.yar2006-07-271-4/+8
|
* Respect MK_INET6_SUPPORT.yar2006-07-271-0/+2
|
* Respect MK_INET6_SUPPORT.yar2006-07-271-4/+8
| | | | Apply style.Makefile(5).
* Cook CFLAGS by the modern recipe:yar2006-07-271-1/+7
| | | | | - use WARNS; - respect MK_INET6_SUPPORT.
* Fix what looks like a typo: MODULE_DEPEND() takes module names,yar2006-07-271-1/+1
| | | | | | | not KLD file names; and GELI module's name is g_eli, not geom_eli. Approved by: pjd (silence) MFC after: 5 days
* Define BYTE_MSF if we're compiling a big endian kernel, so that DDB cancognet2006-07-271-0/+3
| | | | correctly disassemble instructions on big endian.
* Fixing compilation bustage: net/if_bridgevar.h depends on net/bridgestp.h.avatar2006-07-271-0/+1
|
* Add device ID for second generation D-Link DGE-530T.yongari2006-07-272-3/+10
| | | | PR: kern/99903
* Respect MK_INET6_SUPPORT.yar2006-07-272-2/+10
|
* Fix cpp logic in arena_malloc() to adjust size when assertions are enabled,jasone2006-07-271-23/+19
| | | | | | | | even if stats gathering is disabled. [1] Remove 'size' parameter from several functions that do not use it. Reported by: [1] ache
* Fixing compilation bustage: net/if_bridgevar.h depends on net/bridgestp.h.avatar2006-07-272-0/+2
|
* Prepending an mbuf after loading a DMA map results in unexpectedyongari2006-07-271-31/+28
| | | | result. So, modify mbuf chains before loading a DMA map.
* Nuke invalid use of BUS_DMA_ALLOCNOW.yongari2006-07-271-1/+1
|
* Make sure to use the same DMA map in DMA map load/unload operationsyongari2006-07-271-5/+8
| | | | | | | | | | by remembering a map used in bus_dmamap_load_mbuf_sg(9). I have no idea how it could ever worked before. This fixes a warning generated by a diagnostic check in sun4v iommu driver. Reported by: jb Tested by: jb(sun4v)
* Properly propagate overrun conditions to the TTY layer.marcel2006-07-271-0/+2
| | | | MFC after: 3 days
* bridgestp is now a seperate module.thompsa2006-07-262-1/+2
|
* Hook bridgestp up to the build.thompsa2006-07-261-0/+1
|
* Add bridgestp as a seperate module.thompsa2006-07-261-0/+8
|
* Remove stp variables that are already initialised in bstp_attach().thompsa2006-07-261-5/+0
|
* Add Memory Corp 512MB CF Flash.simon2006-07-261-0/+15
| | | | MFC after: 3 days
* Remove zs(4). It has been replaced by scc(4) & uart(4).marcel2006-07-261-2/+0
|
* Replace sio_iobus.c with uart_iobus.c.marcel2006-07-261-1/+1
|
* Turn this into an uart(4) bus attachment.marcel2006-07-261-40/+19
|
* Repocopy from: src/sys/powerpc/psim/sio_iobus.cmarcel2006-07-261-108/+0
| | | | | | to: src/sys/powerpc/psim/uart_iobus.c Meister: simon@
* Remove call to soisdisconnected() in uipc_detach(), since it will alreadyrwatson2006-07-261-1/+0
| | | | | | | | | have been invoked by uipc_close() or uipc_abort(), and the socket is in a state of being torn down by the time we get to this point, so kqueue state frobbed by soisdisconnected() is not available, so frobbing it will result in a panic. Reported by: Munehiro Matsuda <haro at h4 dot dion dot ne dot jp>
* o Remove device zsmarcel2006-07-261-5/+1
| | | | | o Remove nodevice uart o Reorder
* o Enable -Werrormarcel2006-07-261-3/+2
| | | | | | | o Remove commented-out sio(4) o Remove zs(4) o Add scc(4) o Add uart(4)
* On PowerPC the clock for the BRG comes from RTxC, not PCLK. Add amarcel2006-07-261-3/+10
| | | | | quick hack to deal with this. We may need to formalize this better and have this information come from the bus attachments.
* Implement UART_IOCTL_BAUD for the Z8530. This allows a serial consolemarcel2006-07-261-1/+7
| | | | | on PowerPC use the current setting of the hardware and not second guess what the OFW does on various machines.
* Implement uart_cpu_eqres() and uart_cpu_getdev(). This allowsmarcel2006-07-261-3/+56
| | | | FreeBSD to use a serial console, as per the OFW settings.
* o Move the prototype of mem_valid() from ofw_machdep.h to md_var.h.marcel2006-07-265-2/+38
| | | | | | | | | This avoids that mem.c has to include ofw_machdep.h, including all OFW related headers. o Provide a stub for OF_decode_addr(), which is used by low-level console drivers to obtain a tag and handle given a OFW phandle. This is different from sparc64, where a fake bus tag needs to be created explicitly.
* Include needed clock.h.marcel2006-07-262-0/+2
|
* Forward declare struct trapframe.marcel2006-07-261-0/+2
|
* Remove stale comment about armimp2006-07-261-2/+0
|
* Add an entry for enigma(1)/crypt(1) change on 64-bit architectures.jkim2006-07-261-0/+7
|
* Add snd_emu10kx_loadache2006-07-261-0/+1
|
* Forced commit due to missing log on the last revision.thompsa2006-07-260-0/+0
| | | | | | | | | | Split the spanning tree state into its own structures and provide a simple API to perform functions such as adding and deleting ports. This is just a mechanical change and the STP operation remains the same. The bridgestp code now has no knowledge of if_bridge. This makes the code easier to read and can now also support other bridges such as ng_bridge.
* /tmp/cvsuusTrcthompsa2006-07-264-723/+953
|
* Remove variables that are overridden by ether_ifattach(). This clears up anythompsa2006-07-261-3/+0
| | | | confusion especially as *if_output was pointed to a different function.
* Make sure that the sc pointer gets initialized. No functional changedelphij2006-07-262-2/+2
| | | | should happen with this change.
* Respect MK_INET6_SUPPORT.yar2006-07-261-1/+5
|
* Fix build w/o INET6.yar2006-07-261-0/+2
| | | | Submitted by: Andre Albsmeier <Andre.Albsmeier siemens com>
* Back out rev. 1.63. It was a poor idea becauseyar2006-07-261-9/+15
| | | | | | | test(1) is built in sh(1) and it always evaluates both sides of -a or -o, unlike && or || in sh(1). Requested by: dougb
* Increase the number of CPUs to 32 to suit sun4v.jb2006-07-261-1/+1
| | | | Reviewed by: rwatson@
* Make it easier to find that we have test(1) built-in in sh(1).yar2006-07-261-4/+9
| | | | MFC after: 3 days
* add missing \n'ssam2006-07-261-2/+2
| | | | | Submitted by: avatar@ MFC after: 1 week
OpenPOWER on IntegriCloud