summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Add a manpage for geom_map(4).adrian2011-05-052-0/+180
| | | | Submitted by: ray@dlink.ua
* Add make_dev_alias_p to MLINKS.ae2011-05-051-0/+1
| | | | | Pointed out by: pjd MFC after: 2 weeks
* Formatting fixes:ae2011-05-051-11/+13
| | | | | | | | | | o Fix date o Break sentences o Remove trailing whitespaces o Sort xrefs by section number Requested by: ru MFC after: 2 weeks
* Remove unneeded tab after .Ed to make manlint happy.gjb2011-05-041-1/+1
| | | | Reported by: manlint
* Document make_dev_alias_p().ae2011-05-031-1/+22
| | | | MFC after: 2 weeks
* Fixed the HISTORY section which was copied without editing from aio(4).ru2011-05-031-6/+2
| | | | Submitted by: Igor Sysoev
* o OpenBSD 4.9 added.maxim2011-05-021-1/+2
|
* Minor cleanup.brueffer2011-05-011-3/+2
|
* Introduce two new options MK_INET and MK_INET_SUPPORT analogicallybz2011-04-302-2/+16
| | | | | | | | | | with INET6 equivalents. Patch reather than re-genenerating src.conf (given the current problem with the script that does the re-gen). Reviewed by: gnn Sponsored by: The FreeBSD Foundation Sponsored by: iXsystems MFC after: 2 weeks
* Add a new bus method, BUS_ADJUST_RESOURCE() that is intended to be ajhb2011-04-294-0/+104
| | | | | | | wrapper around rman_adjust_resource(). Include a generic implementation, bus_generic_adjust_resource() which passes the request up to the parent bus. There is currently no default implementation. A bus_adjust_resource() wrapper is provided for use in drivers.
* Extend the rman(9) API to support altering an existing resource.jhb2011-04-292-5/+127
| | | | | | | | | | | | | | | | | | Specifically, these changes allow a resource to back a relocatable and resizable resource such as the I/O window decoders in PCI-PCI bridges. - rman_adjust_resource() can adjust the start and end address of an existing resource. It only succeeds if the newly requested address space is already free. It also supports shrinking a resource in which case the freed space will be marked unallocated in the rman. - rman_first_free_region() and rman_last_free_region() return the start and end addresses for the first or last unallocated region in an rman, respectively. This can be used to determine by how much the resource backing an rman must be adjusted to accomodate an allocation request that does not fit into the existing rman. While here, document the rm_start and rm_end fields in struct rman, rman_is_region_manager(), the bound argument to rman_reserve_resource_bound(), and rman_init_from_resource().
* Exar driver for X3100 10GbE Server/Storage adaptersgnn2011-04-281-0/+111
| | | | | | | | Features: Jumbo frames (up to 9600), LRO (Large Receive Offload), TSO (TCP segmentation offload), RTH (Receive Traffic Hash). Submitted by: Sriram Rapuru at Exar MFC after: 2 weeks
* Update man pages related to the change in default NFS clientrmacklem2011-04-281-7/+50
| | | | | | applied by r221124. I also deleted references to idmapd, since that daemon no longer exists. This is a content change.
* Add DragonFly 2.10.1 release.pluknet2011-04-271-1/+2
|
* Rename alloc_unr(9) to unr(9) and adjust the links accordingly.des2011-04-272-7/+8
| | | | MFC after: 3 weeks
* Document timeout_task.kib2011-04-261-4/+31
| | | | | | | | While there, fix the type of the func argument of INIT_TASK macro, and use the modern name of the analogous facility from Linux kernel. Sponsored by: The FreeBSD Foundation MFC after: 1 month
* Introduce to rc.subr get_pidfile_from_conf(). It does just what it soundsdougb2011-04-231-8/+1
| | | | | | | | | like, determines the path to a pid file as it is specified in a conf file. Use the new feature for rc.d/named and rc.d/devd, the 2 services in the base that list their pid files in their conf files. Remove the now-obsolete named_pidfile, and warn users if they have it set.
* Add ref to the latest firmware additions.bschmidt2011-04-201-1/+5
|
* Remove support for the Intel C Compiler from the build infrastructure.dim2011-04-194-49/+8
| | | | | | This support has not worked for several years, and is not likely to work again, unless Intel decides to release a native FreeBSD version of their compiler. ;)
* It is already seven years since mbuf allocator uses sameglebius2011-04-181-15/+16
| | | | | | M_WAITOK/M_NOWAIT flags as malloc(9). Update manual page. Submitted by: Vadim Goncharov <vadimnuclight tpu.ru>
* Remove libobjc and other Objective-C related components, as these aredim2011-04-175-32/+1
| | | | | | extremely outdated, and not used by anything in the base system. Silence from: current@
* Add manual page for rctl.conf(5).trasz2011-04-142-0/+75
|
* Remove vestiges of disklabel(5).pluknet2011-04-144-9/+2
| | | | | Reviewed by: uqs MFC after: 5 days
* Update some terminology: floppies are no longer built, and FreeBSD is notnwhitehorn2011-04-121-2/+3
| | | | necessarily distributed by CVS any longer.
* Use the full and proper company name for Swinburne University of Technologylstewart2011-04-1212-56/+59
| | | | | | | | throughout the source tree. Requested by: Grenville Armitage, Director of CAIA at Swinburne University of Technology MFC after: 3 days
* Don't do make release and make install in one step. Setting DESTDIR fornwhitehorn2011-04-111-1/+2
| | | | make release has deleterious consequences.
* Add an install target to release/Makefile instead of grubbing aroundnwhitehorn2011-04-111-12/+14
| | | | | (and requesting that users grub around) in /usr/obj. Also make sure that make clean removes the bootonly media and clean up that target a little.
* Rename 07.lpr to 07.lpd and re-connect to the build. This wasuqs2011-04-1011-3/+1
| | | | | | | forgotten in r216178. Submitted by: antoine Pointyhat: uqs
* - Add kern.cam.ada.X.write_cache tunables/sysctls to control write cachingmav2011-04-081-7/+11
| | | | | | | on per-device basis. - While adding support for per-device sysctls, merge from graid branch support for ADA_TEST_FAILURE kernel option, which opens few more sysctl, allowing to simulate read and write errors for testing purposes.
* Add reference to led(4), supported now.mav2011-04-081-5/+19
| | | | Add some details about supported chips.
* u3g.4:gjb2011-04-072-2/+1
| | | | | | | | | | | - remove self-reference in SEE ALSO section (originally was to s/XR/Xr) cxgbe.4: - remove blank line - add closing .El Reported by: manlint MFC after: 3 days
* Fix spelling.mav2011-04-071-1/+1
|
* Make ada(4) driver to control device write cache, same as ata(4) does.mav2011-04-071-1/+6
| | | | Add kern.cam.ada.write_cache sysctl/tunable to control it alike hw.ata.wc.
* Regenerate after r220401. It turns out makeman is clever about implieduqs2011-04-061-2/+17
| | | | | | | flags, so remove that part from WITHOUT_CXX again. This is only partially regenerated, as the entries for FDT and GPIO seem to have switched their default state, too.
* Complete WITHOUT_CXX support. It implies WITHOUT_GROFF anduqs2011-04-061-0/+5
| | | | | | | | WITHOUT_CLANG. Don't build clang bootstrap/build-tools depending on this flag. We also keep gperf, devd and libstdc++ around to prevent foot-shooting and to make this a two-way street.
* Make clang default on x86 and powerpc, but not on other architectures.imp2011-04-051-31/+50
| | | | | | | | | | | | | | Make fdt default on arm and powerpc. This now includes cross compiled targets, where before we tried to make it host-based. Also, move the lists of default yes and no options to a variable. In general, only build tools should get this treatment in bsd.own.mk. Also, the use of TARGET* in the bsd.*mk files is discouraged, but necessary here due to the ordering of things in buildworld. We make the native case work by testing MACHINE_ARCH after TARGET_ARCH.
* Add a manpage for the nvram2env driver.adrian2011-04-042-0/+123
|
* Added myself as src committer.art2011-04-021-0/+3
| | | | Approved by: avg (mentor)
* Uuencode the sample "binary" firmware image file (instead of explicitlyemaste2011-04-014-24/+21
| | | | | | | adding \0 bytes). This is a technique that would be used in an actual driver and is more suitable as an example. Reviewed by: mlaier
* Minor tweaks to the man page:imp2011-04-011-11/+7
| | | | | | | o Remove bogus ordering info o 3C1 actually works, so remove that o Add warning about making sure BIOS is configured properly for PnP configured 3c509 cards.
* Add a missing .El macro.lstewart2011-04-011-0/+1
|
* Unbreak installworld after r220205.emaste2011-04-011-1/+1
| | | | | Noticed by: np Pointy hat to: emaste
* Avoid having a binary file in our source tree and instead create it atemaste2011-03-312-0/+4
| | | | | build time, to avoid possible grief maintaining FreeBSD source in alternative version control tools.
* Add relation to my mentor (ehaupt)martymac2011-03-311-0/+1
|
* Remove duplicate sentence.ae2011-03-301-4/+0
|
* Add myself to committers-ports.dotmartymac2011-03-281-0/+1
|
* Update ath_hal.4 to include the latest chipset support.adrian2011-03-261-5/+6
| | | | | | | ath_hal needs a lot more work to encompass the list of supported cards, as the AR5416/AR9160/AR9280/AR9285 list is quite long and extensive. In addition, there's a lot of AR5212/AR5213 based cards that aren't on this list.
* Give better URL to the list of available CVSup mirrors.glebius2011-03-227-14/+14
|
* Update release(7) and build(7) to reflect new release infrastructure fornwhitehorn2011-03-222-392/+221
| | | | the new installer.
* - Merge in OFED 1.5.3 from projects/ofed/headjeff2011-03-211-1/+2
|
OpenPOWER on IntegriCloud