summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Undo the change in r193688 as suggested in conf/72076.edwin2009-06-152-2/+10
| | | | | People on IRC and the -doc mailinglist (June 2009) showed that this new format wasn't used or known widely enough to justify the change.
* Add an optional callback function that will be invoked when a per-CPUbz2009-06-141-1/+8
| | | | | | | | | | queue was drained. It will never fire for a directly dispatched packet. You will most likely never want to use this for any ordinary netisr usage and you will never blame netisr in case you try to use it and it does not work as expected. Reviewed by: rwatson
* Add myself.nork2009-06-141-0/+2
| | | | Approved by: imp (mentor)
* Improve the description a bit and add a reference to vlan(4).marius2009-06-141-2/+12
|
* Remove a line break leaving a function return type attached to the oldbz2009-06-141-2/+1
| | | | | function declaration bottom rather than the new function declaration start.
* Add missing passthrough printing entries for VT100 and workalikesedwin2009-06-141-1/+1
| | | | | | | | | | | | | in /etc/termcap: VT100 spec indicates that passthrough printing can be enabled by sending ESC[5i and disabled by sending ESC[4i These entries should be listed as po and pf in /etc/termcap, but are absent. See http://www.vt100.net/docs/vt102-ug/chapter5.html#S5.5.2.23 PR: conf/71549 Submitted by: Andrew Webster <andrew@pubnix.net> MFC after: 1 week
* Termcap updates for screen and linux console:edwin2009-06-141-1/+5
| | | | | | | | | screen entry: F11-F20 keys added linux entry: F10-F20 keys added, ACS line graphics added PR: kern/108899 Submitted by: Joseph Terner<jtsn@gmx.de> MFC after: 1 week
* Add missing terminal definition for Wyse 120 in termcapedwin2009-06-141-0/+25
| | | | | | | | | | | | Although the PR contains also the definitions of the Wyse 60, they are not copied into it since there are already definition for them in the termcap file since 1997. Also, the PR didn't use the :tc=xxx: feature, so I've imploded them. PR: conf/81882 Submitted by: Meister des Chaos <meister@netz00.com> MFC after: 1 week
* Add missing termcap entry for rxvt-unicode.edwin2009-06-141-0/+6
| | | | | | | | | | | | | The termcap database does not have an entry for rxvt-unicode. This means that programs that need an entry such as vi fail to work when connecting via ssh using this terminal emulator. The added data is not the same as the PR submitted by Richard, it uses the :tc=xxx: option to inherit everything from rxvt-mono. PR: conf/117323 Submitted by: Richard Bradshaw <richard.bradshaw@blueyonder.co.uk> MFC after: 1 week
* Fix typo in cons25l7 definition in etc/termcap.small and share/termcapedwin2009-06-121-2/+2
| | | | | | | | | | There is a minor typo in the cons25l7 (':' instead of '|') entry in src/etc/termcap.small that causes syscons to complain about bogus characters in /etc/termcap.db. PR: conf/132777 Submitted by: Nikos Ntarmos <ntarmos@cs.uoi.gr> MFC after: 1 week
* Fix printing of some wide-characters by iswprint() on ja_JP.eucJPedwin2009-06-122-2/+2
| | | | | | | | | | | | | and ja_JP.SJIS locale The iswprint() function does not return non-zero if used for some wide-character that it code was 0x824f-0x8258 on ja_JP.SJIS and 0xa3b0-0xa3b9 on ja_JP.eucJP locale. But those are right Japanese wide-character code. PR: conf/124511 Submitted by: Michihiro NAKAJIMA <ggcueroad@gmail.com> MFC after: 1 week
* Add various new keymaps:edwin2009-06-125-2/+427
| | | | | | | | | | | | | | | | | | | | | | | | | | | | addition: danish syscons keymap with accents There are two danish keymap files shipping with FreeBSD: danish.iso.kbd and danish.cp865.kbd. None of these support accents by use of dead keys, which isn't crucial to Danes but often used. This is a new keymap, danish.iso.acc.kbd, that's based on danish.iso.kbd with the accent part taken from german.iso.acc.kbd. pl_PL.dvorak keymap for syscons. Polish dvorak keymap by Robert Sebastian Gerus (17:05 01-07-2006 CEST) <arachnist@gmail.com>. Based on pl_PL.ISO-8859-2 and us.dvorak keymaps. British English Dvorak keymap for syscons. Attached is a Dvorak keymap for British English, with a pound-sterling symbol on on Shift-3 and some other characters in different places to the US Dvorak keymap. I've based the layout on the X.org GB keymap, Dvorak variant. PR: conf/72978, kern/99692, conf/117257 Submitted by: Kim Norgaard <jasen@jasen.dk>, Robert Sebastian Gerus <arachnist@gmail.com>, "Benjamin A'Lee" <bma@subvert.org.uk> MFC after: 1 week
* French translations for keyboards keymaps descriptionsedwin2009-06-121-9/+62
| | | | | | | | | | French translations for keyboards keymaps descriptions with some corrections on existing translations in the /usr/share/syscons/keymaps/INDEX.keymaps PR: conf/71767 Submitted by: Henri Michelon <hmichelon@e-cml.org> MFC after: 1 week
* ko_KR: AM/PM date format should be localized.jkim2009-06-112-8/+4
| | | | Inspired by: r193869
* Add euro symbol to pt_PT locale using other encodingsedwin2009-06-103-2/+76
| | | | | | PR: conf/98815 Submitted by: Rui Lopes <rgl@ruilopes.com> MFC after: 1 week
* Croatian locale support for hr_HR.ISO8859-2edwin2009-06-102-1/+41
| | | | | | | | | | Without this patch /usr/share/locale/hr_HR.ISO8859-2/LC_COLLATE is a link to the ../la_LN.ISO8859-2/LC_COLLATE. It means that there is no support for Croatian locale. PR: conf/120113 Submitted by: Simun Mikecin <numisemis@yahoo.com> MFC after: 1 week
* Invalid (long) date format in pl_PL.ISO8859-2.srcedwin2009-06-102-2/+2
| | | | | | | | | Date format is %a %e %b %X %Y %Z (e.g "sob 19 sty 15:46:50 2008 CET") but should be "%a %e %b %Y %X %Z" (e.g. "sob 19 sty 2008 15:46:50 CET"). PR: conf/119804 Submitted by: Bodek <bodek@blurp.org> MFC after: 1 week
* add ca_AD, ca_FR and ca_IT localesedwin2009-06-106-29/+41
| | | | | | | | | | | | | | Catalan language is not only spoken in Spain (ca_ES), but also in Andorra, France and Italy. In Andorra it is the official language. (see http://en.wikipedia.org/wiki/Catalan_language#Geographic_distribution) Add a bunch of symlinks to between ca_ES and ca_AD, ca_FR and ca_IT. PR: conf/92541 Submitted by: <rmh@io.debian.net> MFC after: 1 week
* Marvell 88W8363 driver and associated firmwaresam2009-06-103-0/+242
|
* iwn does not require a license acksam2009-06-101-22/+1
|
* Add alc(4) man page and hook up ale(4) to the build.yongari2009-06-105-3/+169
| | | | Also add Xr to appropriate man pages.
* These are no longer public, so remove the man page.imp2009-06-092-61/+0
|
* ja_JP: AM/PM date format should be localized.edwin2009-06-092-8/+4
| | | | | | | | ja_JP.eucJP and ja_JP.SJIS fixes. PR: conf/63527 Submitted by: Yukihiro Nakai <nakai@gnome.gr.jp> MFC after: 1 week
* Fix LC_NUMERIC and LC_MONETARY for de_CH localeedwin2009-06-093-8/+21
| | | | | | | | | | | | | | | With the de_CH (swiss german) locale, numbers should look like this: numbers: 1'234.45 monetary values: Fr. 1'234.45 Previously, the thousands separator was missing for numbers, and "." for monetary values, and "," was incorrectly used as decimal point. PR: conf/75502 Submitted by: Benjamin Lutz <benlutz@datacomm.ch> MFC after: 1 week
* Sync struct ng_ipfw_tag description with sources.oleg2009-06-091-2/+3
| | | | Submitted by: Mikolaj Golub
* Add support for multiple passes of the device tree during the boot-timejhb2009-06-094-0/+170
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | probe. The current device order is unchanged. This commit just adds the infrastructure and ABI changes so that it is easier to merge later changes into 8.x. - Driver attachments now have an associated pass level. Attachments are not allowed to probe or attach to drivers until the system-wide pass level is >= the attachment's pass level. By default driver attachments use the "last" pass level (BUS_PASS_DEFAULT). Driver's that wish to probe during an earlier pass use EARLY_DRIVER_MODULE() instead of DRIVER_MODULE() which accepts the pass level as an additional parameter. - A new method BUS_NEW_PASS has been added to the bus interface. This method is invoked when the system-wide pass level is changed to kick off a rescan of the device tree so that drivers that have just been made "eligible" can probe and attach. - The bus_generic_new_pass() function provides a default implementation of BUS_NEW_PASS(). It first allows drivers that were just made eligible for this pass to identify new child devices. Then it propogates the rescan to child devices that already have an attached driver by invoking their BUS_NEW_PASS() method. It also reprobes devices without a driver. - BUS_PROBE_NOMATCH() is only invoked for devices that do not have an attached driver after being scanned during the final pass. - The bus_set_pass() function is used during boot to raise the pass level. Currently it is only called once during root_bus_configure() to raise the pass level to BUS_PASS_DEFAULT. This has the effect of probing all devices in a single pass identical to previous behavior. Reviewed by: imp Approved by: re (kib)
* MFV of tzdata2009i:edwin2009-06-091-2/+45
| | | | | | Bangladesh will go into DST on 20 June. MFC after: 2 days
* Add self, list mentor in committers-src.dotnp2009-06-081-0/+2
| | | | Approved by: gnn (mentor)
* Reflect debug level changes from the recent ACPICA import.jkim2009-06-081-7/+6
|
* Add myself.tuexen2009-06-081-0/+3
| | | | Approved by: rrs (mentor)
* [patch] [locale] German locales use old %d.%m.%y date format instead of ↵edwin2009-06-082-2/+2
| | | | | | | | | | | | | | | | | | | | | | newer ISO date From the submitter: DIN 5008 (German norm for text processing) defines the old date format (%d.%m.%Y) to be obsolete and to be used only, if unambigous. In international communications the new format (%Y-%m-%d) is now required and FreeBSD should respect this. References: - DIN 5008 - EN 28 601 - ISO 8601 Thanks to Oliver Lietz for bringing this to my attention. PR: conf/72076 Submitted by: Peter Wullinger <some-mail-drop@gmx.net> MFC after: 1 week
* Fix and add a workaround on an issue of EtherIP packet with reversedhrs2009-06-072-2/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | version field sent via gif(4)+if_bridge(4). The EtherIP implementation found on FreeBSD 6.1, 6.2, 6.3, 7.0, 7.1, and 7.2 had an interoperability issue because it sent the incorrect EtherIP packets and discarded the correct ones. This change introduces the following two flags to gif(4): accept_rev_ethip_ver: accepts both correct EtherIP packets and ones with reversed version field, if enabled. If disabled, the gif accepts the correct packets only. This flag is enabled by default. send_rev_ethip_ver: sends EtherIP packets with reversed version field intentionally, if enabled. If disabled, the gif sends the correct packets only. This flag is disabled by default. These flags are stored in struct gif_softc and can be set by ifconfig(8) on per-interface basis. Note that this is an incompatible change of EtherIP with the older FreeBSD releases. If you need to interoperate older FreeBSD boxes and new versions after this commit, setting "send_rev_ethip_ver" is needed. Reviewed by: thompsa and rwatson Spotted by: Shunsuke SHINOMIYA PR: kern/125003 MFC after: 2 weeks
* Try again to add beginnings of netisr(8) man page: this time addrwatson2009-06-071-0/+210
| | | | netisr.9.
* Add beginnings of a netisr(9) man page.rwatson2009-06-071-0/+1
|
* I don't know why fstab doesn't document that the fifth field specifiesimp2009-06-071-0/+2
| | | | | | the number of days between backups. All it says is frequency, with no units given. It likely should say "the interval in days between backups" instead, but not today.
* Remove cruft at 0E11-0002. Informed upstream.edwin2009-06-071-1/+1
| | | | | Submitted by: Pawel Worach <pawel.worach@gmail.com> MFC after: 6 days.
* Regen:edwin2009-06-061-3647/+4705
| | | | | | | | | * Hart: rev 671 of pcidevs.txt; 22-01-2008 (D-M-Y). * Boemler: vendors.txt (2008-06-06) Initiated by conf/121219 by Yousif Hassan <yousif@alumni.jmu.edu> MFC after: 1 week
* lack of power save violates 802.11 and is a bug, not a "caveat"sam2009-06-053-9/+9
|
* note lack of power save support in ap modesam2009-06-053-0/+12
| | | | Submitted by: "Paul B. Mahol" <onemda@gmail.com>
* [patch] Portuguese timedefedwin2009-06-052-30/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | In Portuguese, the names of the days of the week are not capitalized. Also there is always a dash before "feira" in the names of the days. For example: "segunda-feira" and not "segunda feira" (which has a completely different meaning). x_fmt is not correct either. The date separator should not be a dot but a slash. Example: 31/12/2005 if far more used in Portugal than 31.12.2005. References: - a Portuguese online dictionary http://priberam.pt/dlpo/dlpo.aspx - http://answers.com/days_of_the_week (there are translations to various languages, including Portuguese, at the bottom of the page) - http://en.wikipedia.org/wiki/Week-day_names (there are translations to various languages, including Portuguese, at the bottom of the page) - a Portuguese style guide http://www.publico.clix.pt/nos/livro_estilo/16d-palavras.html ("datas" section) PR: conf/58595 Submitted by: Chris Stenton <jacs@gnome.co.uk> MFC after: 1 week
* Where if not in examples we should follow style(9)?pjd2009-06-032-34/+30
|
* Add 88E8071, 88E8072 to the supported hardware list. While I'm hereyongari2009-06-021-2/+6
| | | | | correct description of 88E8070. It's Yukon Extreme and have gigabit PHY.
* Commit the updates to this file for the new BIND optionsdougb2009-06-011-2/+16
|
* Add support for the build options that are currently in the port:dougb2009-06-011-0/+4
| | | | | | | WITH_BIND_IDN WITH_BIND_LARGE_FILE WITH_BIND_SIGCHASE WITH_BIND_XML
* Add a simple API to manage scatter/gather lists of phyiscal addresses.jhb2009-06-012-0/+522
| | | | | | | | | | | | | Each list describes a logical memory object that is backed by one or more physical address ranges. To minimize locking, the sglist objects themselves are immutable once they are shared. These objects may be used in the future to facilitate I/O requests using physically-addressed buffers. For the immediate future I plan to use them to implement a new type of VM object and pager. Reviewed by: jeff, scottl MFC after: 1 month
* - Remove obsolete and confusing comment about renaming "sound" to "snd".joel2009-06-011-65/+55
| | | | | | | | We will look at renaming stuff for 9.0, but it's far from certain that we will do it this way. - Sort sysctl's alphabetically. I'll add a bunch of new sysctl's once ariff's next mega-patch goes in, and having everything sorted makes my job easier.
* Document IP_BINDANY IP socket option.pjd2009-06-011-1/+18
| | | | Reviewed by: brueffer
* Use the "flag" word consistently.trasz2009-06-011-2/+2
| | | | Submitted by: Ben Kaduk <minimarmot at gmail.com>
* o) Remove some references to long-unsupported old-style config(8) directives.jmallett2009-06-012-9/+7
| | | | o) Borrow da(4) language about autoconfiguration for ch(4).
* Add myself to the list of ports committersavl2009-05-311-0/+4
| | | | Approved by: tabthorpe (mentor)
OpenPOWER on IntegriCloud