summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Simply refer to all Xen drivers as para-virtualized, as this appears torwatson2010-12-171-3/+3
| | | | | | | be the preferred Xen parlance. Discussed with: Steve Hand <steven.hand at cl.cam.ac.uk> MFC after: 1 day
* Correct some misundertandings on my part about PV vs HVM kernelrwatson2010-12-171-13/+19
| | | | | | configuration options. MFC after: 1 day
* Fix spelling nits.rwatson2010-12-171-2/+2
| | | | | MFC after: 3 days Submitted by: bcr
* Clarifications of a number of points in xen.4, and some additional devicerwatson2010-12-171-12/+17
| | | | | | driver information from gibbs@. MFC after: 3 days
* Slightly different formatting for options list.rwatson2010-12-141-1/+1
| | | | MFC after: 3 days
* Further refinements to the xen.4 man page: fix typos, add material onrwatson2010-12-141-16/+75
| | | | | | para-virtualized drivers, clarify how to configure XENHVM on amd64. MFC after: 3 days
* Add a rudimentary Xen man page summarising the state of Xen on amd64 andrwatson2010-12-131-0/+115
| | | | | | | | | i386, how to configure the kernel, and some known issues. Further refinement almost certainly required. This is not a Xen installation manual. MFC after: 3 days Sponsored by: DARPA, AFRL
* Add a rudimentary Xen man page summarising the state of Xen on amd64 andrwatson2010-12-131-0/+2
| | | | | | | | | i386, how to configure the kernel, and some known issues. Further refinement almost certainly required. This is not a Xen installation manual. MFC after: 3 days Sponsored by: DARPA, AFRL
* - Add myself to committers-ports.dotwen2010-12-131-0/+3
|
* Document this driver supports the converter I just bought.ru2010-12-101-1/+3
|
* Fix a typo.hrs2010-12-081-1/+1
| | | | Submitted by: Garrett Cooper
* Add myself to calendar.freebsd and committers-ports.dotflo2010-12-071-0/+3
| | | | Approved by: fjoe (mentor)
* Add a manpage for SYSINIT() and SYSUNINIT().jhb2010-12-062-0/+165
| | | | | PR: docs/132884 Submitted by: pluknet, hmp
* Move most of the remaining USD/PSD/SMM papers into share/docuqs2010-12-0498-16/+31849
|
* Document the fact that passing in a count of zero to the bus_space functionsbrucec2010-12-031-0/+3
| | | | | will result in undefined behaviour. Taken from NetBSD's bus_space(9).
* Revert r216134. This checkin broke platforms where bus_space are macros:brucec2010-12-031-3/+0
| | | | | they need to be a single statement, and do { } while (0) doesn't work in this situation so revert until a solution can be devised.
* Explain some of the reasons that fpsetprec() is unlikely to work asdas2010-12-031-1/+5
| | | | | | | one might expect. (These functions have already been deprecated for many years.) PR: 133583
* Disallow passing in a count of zero bytes to the bus_space(9) functions.brucec2010-12-021-0/+3
| | | | | | | | | Passing a count of zero on i386 and amd64 for [I386|AMD64]_BUS_SPACE_MEM causes a crash/hang since the 'loop' instruction decrements the counter before checking if it's zero. PR: kern/80980 Discussed with: jhb
* Document loader tunable hw.re.prefer_iomap.yongari2010-12-021-1/+6
|
* Fix two errors in the man pagen_hibma2010-11-301-2/+1
| | | | | Submitted by: ruslan MFC after: 1 day
* Update the description of green_saver.kodougb2010-11-291-2/+5
| | | | Improvements to my suggested text from: jhb
* Add new device ids.sanpei2010-11-291-0/+1
| | | | | | Buffalo (Melco Inc.) WLI-UC-G PR: 141777
* Make German formal clause to be consistent with the keymap counterpart.delphij2010-11-291-1/+1
| | | | | Submitted by: arundel MFC after: 1 week
* document that most of ioctl requests in cd(4) are implemented by acd(4)..jmg2010-11-281-0/+8
|
* Add a manual shrinked version of swiss-8x16 as swiss-8x14.delphij2010-11-282-1/+85
| | | | MFC after: 2 months
* Remove the description of the dev.fxp.%d.noflow tunable as it was removedmarius2010-11-261-4/+1
| | | | | in r215906 and the flowcontrol media option now should be set as desired via ifconfig(8) instead.
* Update manual page with respect to latest driver.delphij2010-11-251-7/+29
| | | | While I'm there remove ARC-1180 which doesn't seem to exist.
* Add a HARDWARE section.delphij2010-11-251-1/+6
| | | | MFC after: 2 weeks
* Add gptboot_enable rc variable, which allows to turn gptboot reporting off inpjd2010-11-241-1/+12
| | | | | | | | case user wants to implement his own actions and doesn't want the attributes to vanish. Obtained from: Wheel Systems Sp. z o.o. http://www.wheelsystems.com MFC after: 3 days
* Remove the note about possible unlocking during vunref(9). It mightkib2010-11-241-5/+1
| | | | | | | | only happen if VOP_INACTIVATE() drops the vnode lock, which is quite unreasonable behaviour for filesystem, and should not be mentioned in the description of VFS primitives. MFC after: 1 week
* Remove the description of the link0 link option, since r215297 the mastermarius2010-11-236-132/+6
| | | | | | | | | | | media option generally should be used instead. Actually I think the lists of media types should be removed from the manual pages of MAC drivers altogether and users just pointed to the output of `ifconfig -m` instead; even before r215297 there were several outdated descriptions, technically it's wrong most of the time as not the MAC drivers support these media types but actually the PHY drivers do and it generally doesn't make sense to maintain these lists in every manual page of a driver as the media is auto-detected.
* o NetBSD 5.1 added.maxim2010-11-231-14/+15
|
* sh: Add printf builtin.jilles2010-11-191-1/+4
| | | | | | | | | | | | | | | | | This was removed in 2001 but I think it is appropriate to add it back: * I do not want to encourage people to write fragile and non-portable echo commands by making printf much slower than echo. * Recent versions of Autoconf use it a lot. * Almost no software still wants to support systems that do not have printf(1) at all. * In many other shells printf is already a builtin. Side effect: printf is now always the builtin version (which behaves identically to /usr/bin/printf) and cannot be overridden via PATH (except via the undocumented %builtin mechanism). Code size increases about 5K on i386. Embedded folks might want to replace /usr/bin/printf with a hard link to /usr/bin/alias.
* Add VIA VX900 to the list of supported chipsets.mav2010-11-181-1/+1
|
* Re-enable generating links.adrian2010-11-161-11/+8
|
* .. and then notice that the list of mk files is ordered, and update to suit.adrian2010-11-161-2/+2
|
* Add in forgotten install rule.adrian2010-11-161-1/+1
|
* Remove references to MAKEDEV(8)dougb2010-11-157-123/+7
|
* Regenerate src.conf manpage after adding WITHOUT_GPIO build knobgonzo2010-11-141-1/+4
|
* This case is actually powerpc specific, and doesn't apply to powerpc64.imp2010-11-141-1/+1
| | | | Submitted by: nathanw@
* Remove references to the long-gone ramdiskdougb2010-11-131-60/+1
| | | | Submitted by: Garrett Cooper <yanegomi@gmail.com>
* Break out the rules which generate crunchgen'ed binaries into a separateadrian2010-11-131-0/+160
| | | | | | | | | | | | | | | | .mk file so they can be reused. Introduce a new option, CRUNCH_BUILDTOOLS, which lists the binaries that require tools built in the local architecture. sh and csh both require this. It was previously hardcoded in rescue/rescue/Makefile . Introduce a new option, CRUNCH_SHLIBS, which lists the shared libraries to link against. These override the static libraries listed in CRUNCH_LIBS. Some build environments may wish to use a handful of shared libraries (eg libc.so) so other small, dynamic binaries can be run in the environment. Remove the now-shared code from rescue/rescue/Makefile and introduce the CRUNCH_BUILDTOOLS option for the above shells.
* Add an (off by default) check for negative permissions (where thebrooks2010-11-131-0/+8
| | | | | | | | group on a object has less permissions that everyone). These permissions will not work reliably over NFS if you have more than 14 supplemental groups and are usually not what you mean. MFC after: 1 week
* Stop documenting vgonel() after its converting to the static function:pluknet2010-11-123-19/+9
| | | | | | | | | svn r147332 (by jeff): "Don't make vgonel() globally visible". While here, specify the vnode locking scheme for vgone(). Discussed on: freebsd-hackers@ Approved by: kib (mentor) MFC after: 10 days
* The first releases SIFTR will ship in will be 7.4 and 8.2.lstewart2010-11-121-2/+4
| | | | MFC after: 3 days
* Fix typo, and re-wrap paragraph.dim2010-11-111-5/+5
|
* Bump .Dd due to additions in r214279.brucec2010-11-111-1/+1
| | | | MFC after: 3 days
* Add a man page for usb_quirk module, plus references in other man pages,n_hibma2010-11-103-16/+206
| | | | | | | | | | | | and updated comments in the usb_quirk.h header file. The main purpose of this is to expose the quirks for ejecting 3G modules. usb_modeswitch in Linux does a great job of collecting information on these, and with the quirks module people can try out the modeswitch config file entries on FreeBSD, hence the SCSI strings in the man page. MFC after: 2 weeks
* Add myself as a new committer and add zml as my mentor.zack2010-11-101-0/+2
| | | | Approved by: zml (mentor)
* Complete the integration of tbemd branch into head.imp2010-11-102-11/+5
| | | | | | | | | | | | | | | | TARGET_BIG_ENDIAN is now completely dead, except where it was originally supposed to be used (internally in the toolchain building). TARGET_ARCH has changed in three cases: (1) Little endian mips has changed to mipsel. (2) Big endian mips has changed to mipseb. (3) Big endian arm has changed to armeb. Some additional changes are needed to make 'make universe' work on arm and mips after this change, so those are commented out for now. UPDATING information will be forthcoming. Any remaining rough edges will be hammered out in -current.
OpenPOWER on IntegriCloud