summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Add ECN sysctls and ECN RFC.rpaulo2008-08-161-1/+16
|
* Convert the snp(4) driver to use cdevpriv.ed2008-08-151-2/+2
| | | | | | | | | | | | | Now we have a single /dev/snp device node, which can be opened by watch(8) multiple times. Even though snp(4) will be dead as of next week, it's nice having this in SVN, because: - We may want to MFC it to RELENG_7. - By the time we fix snp(4) again, it's already there, existing watch(8) binaries should already work. Just like bpf(4), I'm adding a symlink from snp0 to snp to remain binary compatible.
* Bump __FreeBSD_version to 800043, because of the bpf(4) change.ed2008-08-131-5/+3
| | | | | | | | | | | | bpf(4) now uses cdevpriv to distinguish multiple file descriptors, where it used to be implemented using device cloning. Ports like libpcap properly detect the change in their configure scripts, but it doesn't hurt to increase __FreeBSD_version. While there, change the bpf(4) manual page to refer to /dev/bpf instead of /dev/bpfN. Requested by: mlaier
* Add et(4) to the list of drivers use the miibus interfacekevlo2008-08-121-1/+4
|
* Correct a few minor markup and grammar issues.brueffer2008-08-111-5/+5
|
* Connect upgt.4 to the build.weongyo2008-08-111-0/+1
|
* Add Conexant/Intersil PrismGT SoftMAC wireless USB driver - upgt(4).weongyo2008-08-111-0/+211
| | | | | | | | This driver supports GW3887 based chipsets and works on x86/powerpc/sparc64. You need upgtfw kernel module before loading upgt(4). Please see the manpage. Obtained from: OpenBSD
* Typo: glxsb(4) was imported to FreeBSD 8.0, not 7.0.philip2008-08-091-1/+1
| | | | Spotted by: kib
* Add the glxsb(4) manual page.philip2008-08-092-0/+98
| | | | | Submitted by: Patrick Lamaizière <patfbsd -at- davenulle.org> MFC after: 1 week
* Only symlink booted kernel directory to /boot/kernel if user has explicitlyobrien2008-08-091-1/+11
| | | | requested it. This is too dangerous to just do behind the admin's back.
* - Add cpuctl(4) pseudo-device driver to provide access to some low-levelstas2008-08-082-0/+148
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | features of CPUs like reading/writing machine-specific registers, retrieving cpuid data, and updating microcode. - Add cpucontrol(8) utility, that provides userland access to the features of cpuctl(4). - Add subsequent manpages. The cpuctl(4) device operates as follows. The pseudo-device node cpuctlX is created for each cpu present in the systems. The pseudo-device minor number corresponds to the cpu number in the system. The cpuctl(4) pseudo- device allows a number of ioctl to be preformed, namely RDMSR/WRMSR/CPUID and UPDATE. The first pair alows the caller to read/write machine-specific registers from the correspondent CPU. cpuid data could be retrieved using the CPUID call, and microcode updates are applied via UPDATE. The permissions are inforced based on the pseudo-device file permissions. RDMSR/CPUID will be allowed when the caller has read access to the device node, while WRMSR/UPDATE will be granted only when the node is opened for writing. There're also a number of priv(9) checks. The cpucontrol(8) utility is intened to provide userland access to the cpuctl(4) device features. The utility also allows one to apply cpu microcode updates. Currently only Intel and AMD cpus are supported and were tested. Approved by: kib Reviewed by: rpaulo, cokane, Peter Jeremy MFC after: 1 month
* Replace description on how to do CVS imports on this module with aedwin2008-08-081-15/+19
| | | | | | description on how to do SVN imports on this module. Approved by: bde (implicit)
* MFV on tzdata2008e:edwin2008-08-084-32/+111
| | | | | | | | - Fix dates in 2008/2009 for Africa/Mauritius. - Leap second notification for the end of 2008. Approved by: bde (mentor, implicit), des MFC after: 1 week
* MFV of tzdata2008dedwin2008-08-087-47/+152
| | | | | | | | | | | - Mauritius will have a DST experiment between 2008-11-01 and 2009-03-31. - Add/Fix historical data for C-Eur, the SovietZone, Germany, Bahamas, San Luis. - Add information about West Para (America/Santarem) - America/Eirunepe and America/Rio_Branco go to UTC-4 Approved by: bde (mentor, implicit), des MFC after: 1 week
* MFV of tzdata2008cedwin2008-08-082-4/+136
| | | | | | | | | | | - Africa/Morocco will have DST in 2008. - Asia/Choibalsan should be GMT+08:00. - Asia/Pakistan will have DST in 2008. Also set all the svn:eol-style properties to native. Approved by: bde (mentor, implicit), des MFC after: 1 week
* Revert the change in leapseconds for 31 december 2008, so I canedwin2008-08-081-17/+6
| | | | | | properly bootstrap the merge history on this module. Approved by: bde (implicit)
* Cleanup (cont)edwin2008-08-081-506/+0
| | | | | | | | Remove Theory, which isn't part of the zoneinfo module but came out of /head/usr.sbin/zic (and isn't installed from there neither). Approved by: bde (implicit) MFC after: 1 week
* Permit Giant to be passed as the explicit interlock either tojhb2008-08-072-0/+24
| | | | | | | | | | | | | | | msleep/mtx_sleep or the various cv_*wait*() routines. Currently, the "unlock" behavior of PDROP and cv_wait_unlock() with Giant is not permitted as it is will be confusing since Giant is fully unrecursed and unlocked during a thread sleep. This is handy for subsystems which wish to allow unlocked drivers to continue to use Giant such as CAM, the new TTY layer, and the new USB stack. CAM currently uses a hack that I told Scott to use because I really didn't want to permit this behavior, and the TTY and USB patches both have various patches to permit this. MFC after: 2 weeks
* Document the new return values for sleepq_abort(), sleepq_broadcast(), andjhb2008-08-071-3/+18
| | | | | | sleepq_signal(). Prodded by: attilio
* Comment out information about Jumbo Frame support, it's notbrueffer2008-08-071-8/+8
| | | | | | implemented yet. While here, fix a whitespace nit. Discussed with: delphij
* Remove a comment about bridging wireless client, the new net80211 vap codethompsa2008-08-041-3/+0
| | | | supports this.
* DDB scripting, textdumps, output capture, etc, all will appear inrwatson2008-08-032-1/+6
| | | | | | | FreeBSD 7.1 before 8.0 ships. Spotted by: Ulrich Spoerlein <uspoerlein at gmail dot com> MFC after: 3 days
* Bumpd dateimp2008-08-021-4/+7
| | | | Minor word smithing on the need for newer firmware.
* Add entry for Prism-3 based Siemens SpeedStream card. It hasimp2008-08-021-0/+1
| | | | | | identical packaging and model numbers, but has had the Prism-II chips replaced by Prism-3. The wi driver was just updated with the new entry.
* Try to fixup last (inadvertent) commit: firmware_drain was never added sosam2008-08-021-15/+1
| | | | | | | | yank it's description; likewise for the FIRMWARE_WAIT flag to firmware_put. For the record, the last commit was to cleanup various mistakes and correct the example of embedding to reflect the npe firmware now being distributed with the system.
* add callout_schedule; besides being useful it also improvessam2008-08-022-13/+46
| | | | | | compatibility with other systems Reviewed by: ed, battlez
* Document new IDSIgnorePaths directive.cperciva2008-08-021-0/+7
|
* According to a proposed Norwegian standard for alphabetization of whichdes2008-07-302-8/+12
| | | | | | | | I've obtained a draft, <u:> is indeed equivalent to u (to my surprise), and <th> sorts immediately after z. The correct ordering is algorithmic (based on the EOR) and can not be accurately represented as a table.
* Add my entry with a pointer to garga (mentor)rnoland2008-07-301-0/+2
| | | | Approved by: garga (mentor)
* In the previous commit, no_NO should have been replaced with nb_NO in thedes2008-07-291-2/+2
| | | | | | | LOCALES list. Since no_NO was still in LOCALES, make tried to build the corresponding .out files, but couldn't since the .src files were gone. I did not notice this because I still had the old .out files in my .OBJDIR. Thanks to kib@ for the heads-up.
* Macbook [Pro] keyboards in AZERTY don't need shift to get to '~'.roberto2008-07-291-1/+1
| | | | MFC after: 3 days
* In some cases (such as LC_COLLATE), nb_NO and nn_NO are identical, and itdes2008-07-283-1/+1
| | | | | | | | | makes sense to have them both link to no_NO. In other cases (such as LC_TIME), they differ, and the correct solution is to have no_NO link to nb_NO, rather than the other way around.o MFC after: 2 weeks
* Add collation sequence for no_NO. The same sequence applies to nb_NOdes2008-07-283-3/+87
| | | | | | | | | | | | | | | and nn_NO, which are symlinked to no_NO. The patch in the PR contained a number of errors apparently based on (sometimes incorrect) pronunciation; for instance, v and w are distinct letters and should be collated in that order, even if they are pronounced the same, while <u:> should be collated with u, even though it is often mispronounced as y. For lack of a solid reference, I have taken sv_SE and simply changed the last three letters of the alphabet. PR: conf/51920 MFC after: 2 weeks
* Add a few clarifications to this man page. Also, add a table thatimp2008-07-261-0/+18
| | | | | | | | | describes the minimum versions of each feature and each chipset type supported by this driver. Basically, unless you have a very modern version of firmware on a Prism card, you won't be able to use these cards for much on modern networks that have any kind of protection enabled, except for the few WEP-only stranglers that appear at some conferences...
* o DragonFly BSD 2.0 added.maxim2008-07-231-1/+2
|
* Turn of SSP for mips for now until support is added to the baseimp2008-07-231-1/+1
| | | | architecture.
* Adding myself as a new ports committerpgollucci2008-07-231-0/+2
| | | | | Reviewed by: gabor (mentor) Approved by: araujo (mentor)
* Retroactively add my entry and link to garga. Forgot to do this when Iwxs2008-07-231-0/+2
| | | | got my commit bit.
* Added me as a commitervanhu2008-07-221-0/+2
| | | | Approved by: gnn (mentor)
* Implement the following macros for completeness:pjd2008-07-212-2/+19
| | | | | | | | | SYSCTL_QUAD() SYSCTL_ADD_QUAD() TUNABLE_QUAD() TUNABLE_QUAD_FETCH() Now we can use 64bit tunables on 32bit systems.
* o Document "show conifhk", wording from r180610 commit log.maxim2008-07-211-1/+6
| | | | Reviewed by: rwatson
* Properly underline force_depend's parameter.lme2008-07-201-1/+1
| | | | Reviewed by: brueffer
* Disable SSP on arm for the time being.cognet2008-07-191-1/+2
| | | | | | The segfaults when using SSP seem to be a gcc bug, a patch is available in the gcc bugzilla, and will be imported once it's committed into the official gcc tree.
* Add a man page for the DNS accept filter.dwmalone2008-07-184-0/+82
|
* Manpage for the et(4) driver.brueffer2008-07-142-0/+182
| | | | Obtained from: DragonFly
* More explicitly mention that we support the 2920C with the ahc driver.remko2008-07-131-2/+2
| | | | | | PR: 125535 Submitted by: Bob Bishop <rb at gid dot co dot uk> MFC after: 3 days
* Back-out my previous change. See the thread atdanger2008-07-101-3/+6
| | | | http://lists.freebsd.org/pipermail/cvs-all/2008-July/263779.html
* the driver don't support AD-HOC mode currently.weongyo2008-07-101-2/+1
|
* - nested functions are a GCC extensions and should not be useddanger2008-07-091-6/+3
| | | | | Submitted by: gahr MFC after: 3 days
* Leapsecond at end of december.phk2008-07-091-6/+17
|
OpenPOWER on IntegriCloud