summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Add pieces of infrastructure required for NFSv4 ACL support in UFS.trasz2009-09-225-3/+136
| | | | Reviewed by: rwatson
* - List newsletters VI-2, VI-3 and VI-4 that were already applied.ru2009-09-211-2/+18
| | | | - Apply newsletters VI-5 (BO's name change) and VI-6 (VE's name change).
* Tell about the full name we opened, not the unit.mjacob2009-09-191-1/+1
| | | | | Obtained from: Sean Bruno MFC after: 1 month
* Fix mdoc, typos, contractions.brueffer2009-09-181-17/+13
| | | | | | | | This includes: PR: 135520 Submitted by: Nobuyuki Koganemaru Patch by: gavin MFC after: 3 days
* o DragonflyBSD 2.4.0 added.maxim2009-09-181-0/+2
|
* Various mdoc, spelling etc fixes.brueffer2009-09-1814-39/+38
| | | | MFC after: 3 days
* Add a knob to show 'Starting foo:' messages when faststart is used,dougb2009-09-171-1/+8
| | | | such as at boot time.
* Correct a sysctl name.brueffer2009-09-171-2/+2
| | | | | | PR: 137689 Submitted by: Thomas Mueller <tmueller@sysgo.com> MFC after: 3 days
* Remove trailing spaces.edwin2009-09-161-41/+41
|
* Last character is a space for the international currency symbol.edwin2009-09-132-2/+2
|
* The following changes are added because ofhrs2009-09-121-29/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | network_ipv6->rc.d/netif integration: - $ipv6_enable is now obsolete. Instead, IPv6 is enabled by default if the kernel supports it, and $ipv6_network_interfaces is "none" by default. If you want to use IPv6, define $ipv6_network_interfaces and $ifconfig_xxx_ipv6. An interface which is in $network_interfaces and not in $ipv6_network_interfaces will be marked as "inet6 -auto_linklocal ifdisabled" (see ifconfig(8)). - $ipv6_ifconfig_xxx is renamed to ifconfig_xxx_ipv6 for consistency with other address families. The old variables still work but can be removed in the future. Note that ipv6_ifconfig_xxx="..." should be replaced with ifconfig_xxx_ipv6="inet6 ...". - Receiving ICMPv6 Router Advertisement is not automatically enabled even if there is no manual configuration of IPv6 in rc.conf. If you want it, define ifconfig_xxx_ipv6="inet6 ... accept_rtadv". - The rc.d/ip6addrctl now chooses address selection policy based on $ipv6_prefer, not $ipv6_enable. The default is ipv6_prefer=NO. - $router* and $ipv6_router* are replaced with $routed_* and $route6d_* for consistency. The old variables still work but can be removed in the future. MFC after: 3 days
* Improve flexibility of receiving Router Advertisement andhrs2009-09-121-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | automatic link-local address configuration: - Convert a sysctl net.inet6.ip6.accept_rtadv to one for the default value of a per-IF flag ND6_IFF_ACCEPT_RTADV, not a global knob. The default value of the sysctl is 0. - Add a new per-IF flag ND6_IFF_AUTO_LINKLOCAL and convert a sysctl net.inet6.ip6.auto_linklocal to one for its default value. The default value of the sysctl is 1. - Make ND6_IFF_IFDISABLED more robust. It can be used to disable IPv6 functionality of an interface now. - Receiving RA is allowed if ip6_forwarding==0 *and* ND6_IFF_ACCEPT_RTADV is set on that interface. The former condition will be revisited later to support a "host + router" box like IPv6 CPE router. The current behavior is compatible with the older releases of FreeBSD. - The ifconfig(8) now supports these ND6 flags as well as "nud", "prefer_source", and "disabled" in ndp(8). The ndp(8) now supports "auto_linklocal". Discussed with: bz and jinmei Reviewed by: bz MFC after: 3 days
* Fix typo in example.des2009-09-121-1/+1
| | | | | Noticed by: rookie@ MFC after: 1 week
* Mention that individual device driver can accept other flags throughdelphij2009-09-121-3/+5
| | | | | | resource_int_value(9). MFC after: 1 month
* Make use of the more flexable device hints by adding a new field,delphij2009-09-121-3/+7
| | | | vesa_mode to specify VESA mode, as suggested by jhb@.
* Extend the usage of sc(4)'s hint variable 'flag'. Bit 0x80 now meansdelphij2009-09-111-7/+7
| | | | | | | | | | "set vesa mode" and higher 16bits of the flag would be the desired mode. One can now set, for instance, hint.sc.0.flags=0x01680180, which means that the system should set VESA mode 0x168 upon boot. Submitted by: paradox <ddkprog yahoo com>, swell k at gmail.com with some minor changes.
* Change one no to not in r197047brooks2009-09-091-1/+1
| | | | Submitted by: John Nielsen <john at jnielsen net>
* Mention that a few ed(4) devices don't emit link state change noticesbrooks2009-09-091-0/+18
| | | | | | | and a workaround for dhclient. Reviewed by: thierry MFC after: 3 days
* Remove dpms.4 missed in r197025.bz2009-09-091-1/+0
|
* - Teach vesa(4) and dpms(4) about x86emu. [1]delphij2009-09-092-0/+2
| | | | | | | | | | - Add vesa kernel options for amd64. - Connect libvgl library and splash kernel modules to amd64 build. - Connect manual page dpms(4) to amd64 build. - Remove old vesa/dpms files. Submitted by: paradox <ddkprog yahoo com> [1], swell k at gmail.com (with some minor tweaks)
* MFV of r196998.edwin2009-09-092-4/+56
| | | | | | | Import of tzdata2008m Samoa will go in DST on 4 October 2009 till 28 March 2010 Palestine will go back from DST on 4 September 2009
* A few enhancements I made while working on the Firewire target (sbp_targ).sbruno2009-09-072-3/+7
| | | | | | | | | | | Update the error handling in a couple of cases to exit gracefully if certain mandatory conditions aren't met. Reduce the maximum number of initiators to 8 for this example code. While 1024 is more correct, this example code would act like it was stalled out even though it was merely allocating the needed structures in init_ccbs() Reviewed by: scottl@freebsd.org
* Some of the controllers sold as ServeRAID (IBM ServeRAID-MR10i,trasz2009-09-071-1/+4
| | | | | | in particular) are actually mfi(4) devices. Provide hints. Submitted by: <pluknet at gmail.com>
* Move ptmx into pty(4).ed2009-09-062-11/+11
| | | | | | | | Now that pty(4) is a loadable kernel module, I'd better move /dev/ptmx in there as well. This means that pty(4) now provides almost all pseudo-terminal compatibility code. This means it's very easy to test whether applications use the proper library interfaces when allocating pseudo-terminals (namely posix_openpt and openpty).
* Add lv_LVache2009-09-043-0/+204
| | | | | PR: 105100 Submitted by: Aldis Berjoza <killasmurf86@gmail.com>
* Add lv_LVache2009-09-043-0/+30
| | | | | PR: 105100 Submitted by: Aldis Berjoza <killasmurf86@gmail.com>
* Add lv_LVache2009-09-042-1/+38
| | | | | PR: 105100 Submitted by: Aldis Berjoza <killasmurf86@gmail.com>
* Add lv_LVache2009-09-031-1/+2
|
* Add lv_LV, move lt_LT to common partache2009-09-032-3/+6
|
* Add lv_LV, move lt_LT to common partache2009-09-032-4/+7
|
* o Document MALLOC_PRODUCTION knob.maxim2009-09-011-1/+7
| | | | | | PR: docs/136029 Submitted by: anonymous MFC after: 2 weeks
* Make it easier to find proper manual page for newer ServeRAID controllers.trasz2009-08-311-0/+5
|
* Manual page for mfiutil(8) is in section 8 now.trasz2009-08-311-2/+2
|
* MFp4:mav2009-08-301-1/+16
| | | | | | | | | | | - Add Command Completion Coalescing support. - Add SNTF support. - Add two more power management modes (4, 5), implemented on driver level. - Fix interface mode setting. - Reduce interface reset time. - Do not report meaningless protocol/transport versions. - Report CAP2 register content. - Some performance optimizations.
* Fix the reference for the IPV6_V6ONLY option. This option is describedmotoyuki2009-08-301-1/+1
| | | | | | | | in RFC 3493, not 3542. PR: docs/134127 Submitted by: Kenji Rikitake <kenji.rikitake@acm.org> MFC after: 2 weeks
* AM/PM date format for ja_JP.eucJP and ja_JP.SJIS wereume2009-08-301-4/+2
| | | | | localized by r193869. However, ja_JP.UTF-8 wasn't. So, reflect it to ja_JP.UTF-8 as well.
* MFV of r196350edwin2009-08-272-3/+38
| | | | | | | Import of tzdata2009l - Egypt will go to Wintertime on 21 August 2009 - Heads up for a possible DST in Samoa
* MFV of r195792:edwin2009-08-274-20/+50
| | | | | | | Import of tzdata2009k to head. - Changes in Mauritius and Bangladesh - No leapsecond at the end of December 2009
* Add a new rc.d script, static_arp, which enables the administrator todelphij2009-08-251-1/+17
| | | | | | | | | | | | | | | | | | | | statically bind IPv4 <-> MAC address at boot time. In order to use this, the administrator needs to configure the following rc.conf(5) variable: - static_arp_pairs: A list of names for static bind pairs, and, - a series of static_arp_(name): the arguments that is being passed to ``arp -S'' operation. Example: static_arp_pairs="gw" static_arp_gw="192.168.1.1 00:01:02:03:04:05" See the rc.conf(5) manual page for more details. Reviewed by: -rc@ MFC after: 2 weeks
* Add a missing .El.delphij2009-08-251-0/+1
| | | | Founded by: make manlint
* Update example for RELENG_8.kensmith2009-08-241-4/+5
|
* Add claraifications to the kproc and kthread manpages and linkjulian2009-08-233-0/+44
| | | | | | | the kthread_create(9) man page to the kproc(9) page as it had migrated and people looking for it may need a hand to find its new name. MFC after: 1 week
* This patch fixes two bugs in sglist(9) and improves robustness of the API viajhb2009-08-211-0/+4
| | | | | | | | | | | | | | | | better semantics if a request to append an address range to an existing list fails. - When cloning an sglist, properly set the length in the new sglist instead of leaving the new list empty. - Properly compute the amount of data added to an sglist via _sglist_append_buf(). This allows sglist_consume_uio() to properly update uio_resid. - When a request to append an address range to a scatter/gather list fails, restore the sglist to the state it had at the start of the function call instead of resetting it to an empty list. Requested by: np (3) Approved by: re (kib)
* Change the 'resid' parameter to sglist_consume_uio() from an int to ajhb2009-08-201-1/+1
| | | | | | | size_t to match the recent type change of the uio_resid member of struct uio. Approved by: re (kib)
* Add support for backing up the old kernel when installing a new kernelsimon2009-08-191-2/+50
| | | | | | | | | | | | | | | | | | using freebsd-update. This applies to using freebsd-update in "upgrade mode" and normal freebsd-update on a security branch. The backup kernel will be written to /boot/kernel.old, if the directory does not exist, or the directory was created by freebsd-update in a previous backup. Otherwise freebsd-update will generate a new directory name for use by the backup. By default symbol files are not backed up to save diskspace and avoid filling up the root partition. This feature is fully configurable in the freebsd-update config file, but defaults to enabled. MFC after: 1 week (stable/7) Reviewed by: cperciva Approved by: re (kib)
* Remove unused taskqueue_find() function.pjd2009-08-181-10/+2
| | | | | Reviewed by: dfr Approved by: re (kib)
* Document MAKE_DVD and xref svn in ports.trhodes2009-08-181-2/+7
| | | | Approved by: re@ (kib)
* Document the newly added SVNCMDARGS, SVNROOT, and SVNBRANCH variables.jhb2009-08-171-0/+29
| | | | Approved by: re (kib)
* Correct typo in the previous commit.pjd2009-08-171-1/+1
| | | | | Noticed by: pluknet <pluknet@gmail.com> Approved by: re (kib, implicit)
* Remove OpenSolaris taskq port (it performs very poorly in our kernel) andpjd2009-08-171-1/+15
| | | | | | | | replace it with wrappers around our taskqueue(9). To make it possible implement taskqueue_member() function which returns 1 if the given thread was created by the given taskqueue. Approved by: re (kib)
OpenPOWER on IntegriCloud