summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add quirk for Minolta 2330 Zoom digital camera.kbyanc2001-11-071-0/+7
| | | | Submitted by: Jan Stocker <Jan.Stocker@t-online.de>
* Don't call setvar() with the VTEXTFIXED flag. A copy is created bytegge2001-11-071-4/+4
| | | | | | | | setvar() and passed to setvareq(). When the VTEXTFIXED flag is set, that copy is never freed, causing a memory leak. PR: 31533 Submitted by: maxim@macomnet.ru
* Fix vendor ID's.obrien2001-11-0712-36/+60
|
* Add quirk for Nikon Coolpix 995.kbyanc2001-11-071-1/+8
| | | | Submitted by: Jos Vissers <jos@tunix.nl>
* Catch up on old release notes: fxp(4) dynamic standby mode workaround,bmah2001-11-072-2/+22
| | | | | | keyinfo(1) in C. MFC noted: fxp(4) interrupt coalescing/packet bundling.
* rcsid[]->__FBSDIDobrien2001-11-0758-268/+106
|
* o When "-n" is used with watch, it disables the use of <control-X> torwatson2001-11-072-6/+8
| | | | | | change terminals being watched. This change makes watch pass the <control-X> through to the terminal if it's not being intercepted-- previously, the keypress would simply be dropped.
* Initialize first to -1; this will create a (nearly) empty file on failure,fenner2001-11-071-1/+1
| | | | | | | | instead of looping until the disk is full. This kind of failure can especially happen when a version of awk that doesn't support POSIX character classes is used. Submitted by: David Wolfskill <david@catwhisker.org>
* NMBCLUSTERS, not NMBCLUSTER.dd2001-11-071-1/+1
| | | | Submitted by: markus ryynnen <markus.ryynanen@kolumbus_nospam.fi>
* Fix printf format bugs introduced in rev 1.34 for printing times.peter2001-11-071-4/+4
| | | | | | | | | quad_t cannot be printed with %lld on 64 bit systems. Dont waste cpu to round user and system times up to long long, it is highly improbable that a process will have accumulated 68 years of user or system cpu time (not wall clock time) before a reboot or process restart.
* Remove a few more debugging bits and turn on twiddle output while readingjhb2001-11-071-15/+3
| | | | from the CD. This turns off the dual console output to COM1.
* Update the nsswitch.conf -> host.conf generator to handle criteria,fenner2001-11-077-70/+112
| | | | | | | | continuation lines, extra whitespace, and to use the last matching line in the file. This syncs the host.conf generation with how the nsswitch.conf is parsed. Only print " host.conf" instead of a multi-line message, since this happens on every boot.
* Don't ignore unknown characters. The previous code treated a line like:fenner2001-11-072-3/+5
| | | | | | | | | | | | hosts:!!!!!!!!@@@@@$%^&*()()*$(files{}{}|||++!)(dns exactly the same as: hosts: files dns Recover from parse errors by looking for the end of a line; this allows entries without errors to still be parsed even if there is an erroneous entry earlier in the file.
* Fix bug in scsi_read_write() where it might use 6-byte commands whenkbyanc2001-11-061-5/+4
| | | | | | | 10/12-byte-specific flags where specified. Reviewed by: ken MFC after: 1 day
* Add AMD766 OHCI USB controller. Remove unused VENDORID lists.peter2001-11-062-18/+16
|
* Fixed the behavior when there is no inbound policy for the ipsecume2001-11-062-22/+8
| | | | | | | | | | | | | tunneled packet. When there is no suitable inbound policy for the packet of the ipsec tunnel mode, the kernel never decapsulate the tunneled packet as the ipsec tunnel mode even when the system wide policy is "none". Then the kernel leaves the generic tunnel module to process this packet. If there is no rule of the generic tunnel, the packet is rejected and the statistics will be counted up. Obtained from: KAME MFC after: 1 week
* - Change the f_isdir field of struct file to be a flags field and twojhb2001-11-061-13/+54
| | | | | | | | | new flags: F_ROOTDIR and F_RR (Rock Ridge present). - Cache the SUSP LEN_SKP parameter in struct file as well. - If we open() '/', then force a read of the directory's contents so we can examine the directory record of '.' to see if Rock Ridge is present. - If Rock Ridge extensions are present, lookup Rock Ridge names in readdir().
* Fixes:olgeni2001-11-062-4/+4
| | | | | * least -> list * recommendations -> recommended
* Fixes:olgeni2001-11-061-8/+8
| | | | | | | | | | * acceptible -> acceptable * partiton -> partition * bootdisk -> boot disk * harddisk -> hard disk * it's -> its * bandwith -> bandwidth * website -> web site
* Typo: compatability -> compatibilityolgeni2001-11-061-2/+2
|
* Fixes:olgeni2001-11-061-3/+3
| | | | | | * compatability -> compatibility * El Torrito -> El Torito * repectively -> respectively
* website -> web siteolgeni2001-11-061-1/+1
|
* Fix typo:olgeni2001-11-061-1/+1
| | | | * compatability -> compatibility
* Fix typos:olgeni2001-11-062-8/+8
| | | | | | | * initialise -> initialize * maintenence -> maintenance * manufacured -> manufactured * accomodate -> accommodate
* Fix typos:olgeni2001-11-061-2/+2
| | | | | * intially -> initially * accomodate -> accommodate
* Add emul.c and in_cksum.c, make the OpenFirmware console driver optional,tmm2001-11-061-3/+4
| | | | reorder a bit.
* Add a special OpenFirmware entry point for terminating the kernel (intmm2001-11-065-3/+120
| | | | | | | this case, the firmware trap table needs to be restored). Make use of it in cpu_halt() and cpu_reset(), and make cpu_reset() reboot the kernel that was used previously insead of behaving like cpu_halt(). Add a shutdown_final event handler that turns the power off if requested.
* Add code to emulate unimplemented (non-fp) instructions and to fixuptmm2001-11-065-246/+1095
| | | | | | unaligned accesses, and instr.h, which contrains definitions for the sparc64 instruction set (partly from NetBSD). Make use of some definitions from instr.h in db_disasm.c.
* o Cache the process's struct prison so as to create a more visuallyrwatson2001-11-061-7/+8
| | | | | | appealing code structure. In particular, s/req->p->p_ucred->cr_prison/pr/ Requested by: imp, jhb, jake, other hangers on
* Add optimized implementations of in_cksum_skip() and related functionstmm2001-11-062-0/+426
| | | | for sparc64.
* Fix the intial setup of the stray interrupt handler (it takes a structtmm2001-11-061-2/+3
| | | | *intr_vec as argument now, not the vector number).
* - Add a simple SUSP parser.jhb2001-11-061-8/+154
| | | | | - Use the SUSP parser to detect Rock Ridge (RRIP) extensions and to look up alternate names when opening files.
* o Remove a tab missed in the previous whitespace commit.rwatson2001-11-061-1/+1
|
* o Remove double-indentation of sysctl_kern_securelvl. This change isrwatson2001-11-061-31/+30
| | | | | | consistent with the one other function in the file, and prevents long lines in up-coming changes. This nominally pulls kern_mib.c a little further down the long path to style(9) compliance.
* Fix typo: s/dirver/driver/bmah2001-11-062-2/+2
|
* Add missing include for <ctype.h>green2001-11-061-27/+47
| | | | | | | Make sockaddr printing code unbad. Always copy in sizeof(sockaddr_un) bytes for an AF_UNIX sockaddr, despite what the length may be.
* Switch to using ANSI function declarations and add missing functionjhb2001-11-061-31/+15
| | | | | prototypes. I'm tired of getting stupid bugs from changing function parameters and not getting warnings from the compiler when I goof it up.
* Correctly unlock the target process if /proc/$foo/mem is open()ed bygreen2001-11-061-1/+1
| | | | | | | another process which cannot p_candebug() it. The bug was introduced in rev. 1.100. Approved by: des
* Fix tab damage in rev 1.326.obrien2001-11-062-2/+2
|
* Add S4BIOS sleep (BIOS hibernation) and DSDT overriding support.iwasaki2001-11-0610-3/+234
| | | | | | | | | | | | | | - Add S4BIOS sleep implementation. This will works well if MIB hw.acpi.s4bios is set (and of course BIOS supports it and hibernation is enabled correctly). - Add DSDT overriding support which is submitted by takawata originally. If loader tunable acpi_dsdt_load="YES" and DSDT file is set to acpi_dsdt_name (default DSDT file name is /boot/acpi_dsdt.aml), ACPI CA core loads DSDT from given file rather than BIOS memory block. DSDT file can be generated by iasl in ports/devel/acpicatools/. - Add new files so that we can add our proposed additional code to Intel ACPI CA into these files temporary. They will be removed when similar code is added into ACPI CA officially.
* Remove /usr/src/sbin/pc98 from srcdirs entry. It is not exist.nyan2001-11-061-1/+3
| | | | Add special entry for the fdisk command.
* MFi386: sys/boot/i386/loader/main.c revision 1.25nyan2001-11-061-14/+16
|
* MFi386: sys/boot/i386/libi386/Makefile revision 1.21nyan2001-11-061-2/+2
|
* This file was part of something grander, which doesn't seem to bephk2001-11-061-1512/+0
| | | | around anymore.
* This file is a 2.2 vintage pre-CAM file of no current value.phk2001-11-061-861/+0
|
* use cp instead of mv to get the right name of the yacc-generatedassar2001-11-062-7/+8
| | | | | | files, mv fails badly with parallel makes Submitted by: Vincent Poy <vince@oahu.WURLDLINK.NET>
* More drive-by stylification, and some clarificationsdes2001-11-061-10/+16
|
* More drive-by stylificationdes2001-11-061-4/+4
|
* Drive-by stylification + reintroduce set_border().des2001-11-063-212/+219
|
* syscons' set_border() is now named sc_set_border(), so there is no longerdes2001-11-061-2/+0
| | | | a naming conflict.
OpenPOWER on IntegriCloud