summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Revert part that should not be in my previous commit.delphij2009-09-211-29/+0
| | | | Pointy hat to: delphij
* Automatically depend on x86emu when vesa or dpms is being built intodelphij2009-09-215-10/+39
| | | | | | | kernel. With this change the user no longer need to remember building this option. Submitted by: swell.k at gmail.com
* Enable s3pci on amd64 which works on top of VESA, and allowdelphij2009-09-216-1/+9
| | | | | | static building it into kernel on i386 and amd64. Submitted by: swell.k at gmail.com
* Disable a check on a disk size because it's too strict. This change isnyan2009-09-211-0/+2
| | | | | | | | | to avoid using incorrect geometry. It seems that this is the same problem in g_part_bsd_read()@g_part_bsd.c. Reviewed by: rink MFC after: 3 days
* (semiforced commit to add comment missed in last delta)mjacob2009-09-213-2/+1
| | | | | | | | | | Add a maximum response length for FCP RSPNS IUs. Clarify some of the FC option words for setting parameters and try and disable automatic PRLI when in target mode- this should correct some cases of N-port topologies with 23XX cards where we put out an illegal PRLI (in target mode only we're not supposed to put out a PRLI).
* Remove file unused in freebsd.mjacob2009-09-214-457/+66
|
* Mention that NUL characters are not allowed in sh(1) input.jilles2009-09-201-0/+4
| | | | | | | | I do not consider this a bug because POSIX permits it and argument strings and environment variables cannot contain '\0' anyway. PR: bin/25542 MFC after: 2 weeks
* - Update the list of known-working machines based on feedback for 7.2.marius2009-09-201-1/+10
| | | | | | | | - Update the V440 entry regarding added support for the on-board NICs in 8.0. Approved by: blackend MFC after: 3 days
* A wrong variable is used when setting up the interfaceqingli2009-09-201-2/+2
| | | | | | | | | address route, which broke source address selection in some code paths. Submitted by: noted by bz Reviewed by: hrs MFC after: immediately
* Update find(1) man page for -L/-delete interaction.jilles2009-09-201-1/+2
| | | | | | | | | It is a bit unfortunate that the example to delete broken symlinks now uses rm(1), but allowing this with -delete would require fixing fts(3) to not imply FTS_NOCHDIR if FTS_LOGICAL is given (or hacks in the -delete option). PR: bin/90687 MFC after: 2 weeks
* IEEE Std 1003.1, 2004 Edition states:dds2009-09-204-2/+7
| | | | | | | | | | | | | "The escape sequence '\n' shall match a <newline> embedded in the pattern space." It is unclear whether this also applies to a \n embedded in a character class. Disable the existing handling of \n in a character class following Mac OS X, GNU sed version 4.1.5 with --posix, and SunOS 5.10 /usr/bin/sed. Pointed by: Marius Strobl Obtained from: Mac OS X
* Follow POSIX (IEEE Std 1003.1, 2004 Edition) in the implementationdds2009-09-203-9/+17
| | | | | | | | | | | of the y (translate) command. "If a backslash character is immediately followed by a backslash character in string1 or string2, the two backslash characters shall be counted as a single literal backslash character" Pointed by: Marius Strobl Obtained from: Mac OS X
* Add correct test results.dds2009-09-203-0/+42
|
* Describe how other systems treat this case.dds2009-09-201-1/+5
|
* Allow [ to be used as a delimiter.dds2009-09-202-1/+10
| | | | | Pointed by: Marius Strobl Obtained from: Apple
* The transition to Subversion allows us to rename files withoutdds2009-09-20124-9/+7
| | | | | | repo-copy hacks. Remove the test-number prefix from the name of the output files, so that new test cases can be easily added.
* Purge namecache in the same place OpenSolaris does.pjd2009-09-202-6/+3
|
* Re-remove the IBM0057 ID used for PS/2 mouse controllers. The asl for thejhb2009-09-201-1/+1
| | | | | | | | 61p includes the hotkey device as IBM0068 and the mouse as IBM0057 similar to other systems. Submitted by: marius MFC after: 3 days
* Old (a.out) rtld attempts to mmap zero-length region, e.g. when bsskib2009-09-201-1/+3
| | | | | | | | | | | of the linked object is zero-length. More old code assumes that mmap of zero length returns success. For a.out and pre-8 ELF binaries, allow the mmap of zero length. Reported by: tegge Reviewed by: tegge, alc, jhb MFC after: 3 days
* Fix handling of sctp_drain().tuexen2009-09-201-5/+8
| | | | | Approved by: rrs (mentor) MFC after: 2 month
* Fix errnos.tuexen2009-09-201-6/+12
| | | | | Approved by: rrs(mentor) MFC after: 3 days.
* Extract version information from git repositories. Try to find amlaier2009-09-191-9/+28
| | | | | | | | | corresponding svn version if this is a git-svn clone'ed repo. This prefers svn version information over git in case a working directory has both .svn and .git directories. MFC after: 3 days X-MFC: not stable/8 before 8.0
* Tell about the full name we opened, not the unit.mjacob2009-09-191-1/+1
| | | | | Obtained from: Sean Bruno MFC after: 1 month
* Remember to unlock the peripheral prior to notifying the user. Make somemjacob2009-09-191-15/+70
| | | | | | | | | | allocations M_NOWAIT so that we don't try and sleep with a nested non-sleepable lock. This makes the userland scsi_target begin to function again. Obtained from: Sean Bruno MFC after: 1 month
* Add getpagesizes(3). This functions either the number of supported pagealc2009-09-195-3/+184
| | | | | | | sizes or some number of the sizes themselves. It is functionally compatible with a function by the same name under Solaris. Reviewed by: jhb
* Make the keyboard layer Unicode aware.ed2009-09-194-15/+28
| | | | | | | | | | | | Just take keyent_t to use an u_int to store the Unicode codepoints. Unfortunately the keymap is now too big to be loaded using an ioctl argument, so change the ioctl to pick a pointer. This change breaks kbdcontrol ABI. It doesn't break X11, because X11 doesn't do anything with syscons keymaps. It just switches the device out of K_XLATE. Obtained from: //depot/user/ed/newcons/...
* Use appropriate locking when using interface list.tuexen2009-09-191-8/+0
| | | | | Approved by: rrs (mentor) MFC after: 1 month.
* Fix the disabling of sctp_drain().tuexen2009-09-191-5/+4
| | | | | Approved by: rrs (mentor) MFC after: 1 month.
* Get SCTP working in combination with VIMAGE.tuexen2009-09-198-46/+93
| | | | | | Contains code from bz. Approved by: rrs (mentor) MFC after: 1 month.
* intpm/sb700: force polling mode if configured interrupt is SMIavg2009-09-191-0/+6
| | | | instead of failing to attach
* Change cache attribute for VESA frame buffer from UC to write-combining.jkim2009-09-191-1/+2
| | | | This improves scrolling speed for high resolution graphics mode console.
* Correct BIOS header sanitizing on pc98.nyan2009-09-191-3/+6
| | | | MFC after: 3 days
* When superpages are enabled, add the 2 or 4MB page size to the array ofalc2009-09-182-0/+10
| | | | | | | supported page sizes. Reviewed by: jhb MFC after: 3 weeks
* Add a new sysctl for reporting all of the supported page sizes.alc2009-09-1810-0/+44
| | | | | Reviewed by: jhb MFC after: 3 weeks
* Just use ttydisc_rint_simple() instead of doing it ourselves.ed2009-09-181-8/+2
| | | | | | | This code seems to do exactly the same as ttydisc_rint_simple() does nowadays. Just remove it. Obtained from: //depot/user/ed/newcons/sys/dev/syscons/syscons.c
* Return ENOBUFS consistently if user attempts to exceedbms2009-09-181-2/+4
| | | | | | | in_mcast_maxsocksrc resource limit. Submitted by: syrinx MFC after: 3 days
* Have sparc64 join the separate livefs crowd. Including the docs packageskensmith2009-09-181-0/+1
| | | | | | on disc1 (needed now by sysinstall) overflows the target CDROM iso size. MFC after: 3 days
* Fix setfib(1) section number.brueffer2009-09-182-3/+3
| | | | | | PR: 133765 Submitted by: Konstantin Zolotukhin <erebus@gorodok.net> MFC after: 3 days
* Fix mdoc, typos, contractions.brueffer2009-09-181-17/+13
| | | | | | | | This includes: PR: 135520 Submitted by: Nobuyuki Koganemaru Patch by: gavin MFC after: 3 days
* Don't allocate new unnecessary pages when devstat_alloc() looses theattilio2009-09-181-16/+27
| | | | | | | | run for re-acuiring the lock, but recheck if new pages are allocatable from the pool and free the previously allocated ones. Tested by: pho, Giovanni Trematerra <giovanni dot trematerra at gmail dot com>
* Spell Israel correctly.ed2009-09-181-1/+1
| | | | | Submitted by: Alexey Savartsov <asavartsov gmail com> PR: bin/138580
* Call mwl_rxdma_cleanup() if there was an error setting up the RX DMA.rpaulo2009-09-181-1/+3
|
* Style fix - break too long a line in two.zec2009-09-181-1/+2
| | | | | Spotted by: bz 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
* Fixed markup.ru2009-09-172-7/+9
|
* Change the default transport protocol for use by the Mount protocolrmacklem2009-09-171-1/+1
| | | | | | | | | | | from UDP to TCP, so that it is consistent with TCP for NFS, which became the default at r176198. Without this change, doing an NFS mount against a server that only supports UDP would result in an unusable mount point if a transport protocol option wasn't specified for the mount. Approved by: kib (mentor) MFC after: 3 days
* Add a knob to show 'Starting foo:' messages when faststart is used,dougb2009-09-173-2/+16
| | | | such as at boot time.
* Fix the style of the previous commit.rdivacky2009-09-172-2/+4
| | | | Approved by: ed (mentor, implicit)
* Make these argument/variable unsigned as the defines for them don't fitrdivacky2009-09-172-4/+4
| | | | | | | into signed 32bit integer. Approved by: ed (mentor, implicit) Approved by: sson
OpenPOWER on IntegriCloud