summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Correct messages for VIA Apollo Pro133A.kuriyama2000-08-251-1/+5
|
* Add a missing comma.sheldonh2000-08-251-1/+1
|
* Replace the thumb-suck phrase "system call vector translation" withsheldonh2000-08-251-1/+1
| | | | something that people who like tomato juice prefer.
* Fix typo in license.marcel2000-08-257-7/+7
|
* Another file needed for ACPI,I forgot to commit.takawata2000-08-251-0/+309
| | | | Noticed by:iwasaki
* Allow finger.conf to contain aliases for files that will be displayedbrian2000-08-256-21/+50
| | | | | | when fingered. Submitted by: Mark Knight <markk@knigma.org>
* Add a new compile-time tweak to BTX. If you set the make(1) variablejhb2000-08-243-2/+10
| | | | | | | | BOOT_BTX_NOHANG, then BTX will be compiled with the appropriate flags so that it reboots after a fault instead of hanging forever. Requested by: ps Approved by: rnordier
* Quick Fix: swap.c doesn't appear to actually need <sys/conf.h>, so removepeter2000-08-241-1/+0
| | | | | it to try and get world building again. (sys/conf.h now depends on sys/types.h)
* Quick fix. <sys/conf.h> now depends on <sys/time.h>, which is not presentpeter2000-08-241-0/+2
| | | | when libcam is building this in userland.
* Make the temporary file _evp.h instead of evp.h to not conflict withgreen2000-08-242-5/+7
| | | | | | the real evp.h. Reported by: markm
* Comment out the static wiring of hints for GENERIC - the release processpeter2000-08-245-5/+10
| | | | now installs the hints file into /boot.
* I should know better than to touch this without testing a 'make release'peter2000-08-241-1/+1
| | | | | but ${MACHINE_ARCH} should be ${MACHINE} here. pc98 has its own GENERIC.hints file and should not be used with the i386 version.
* - When adjusting the end of a partition to lie on a cylinder boundary, don'tjhb2000-08-242-92/+188
| | | | | | | | | | | adjust the size, but the actual end. - Break out some of the sanity checks on partitions into a sanitize_partition function. - When adjusting partitions, always adjust the start "up", and the end "down" so that we stay within the boundaries of the original request. - Various small nits found by bde. Reported by: bde, imp, rgrimes
* Still have to support libscrypt for now :( Add #defines to take DESgreen2000-08-241-0/+2
| | | | out for it.
* Dang, a _clone routine escaped #ifdef DEVFS containment.phk2000-08-241-0/+2
|
* Fix panic when removing open device (found by bp@)phk2000-08-2411-140/+299
| | | | | | | | | | | | Implement subdirs. Build the full "devicename" for cloning functions. Fix panic when deleted device goes away. Collaps devfs_dir and devfs_dirent structures. Add proper cloning to the /dev/fd* "device-"driver. Fix a bug in make_dev_alias() handling which made aliases appear multiple times. Use devfs_clone to implement getdiskbyname() Make specfs maintain the stat(2) timestamps per dev_t
* Fix newbus resource allocationsroger2000-08-242-10/+16
| | | | | PR: kern/18744 Submitted by: Alexander Langer <alex@cichlids.com>
* Whitepace-only: normalize line-breaking.sheldonh2000-08-241-4/+4
|
* Add orthogonal part of ACPI support code.takawata2000-08-2443-0/+13410
| | | | | | | This does not come effect until non-orthogonal part is commited. Approved by: jkh Obtained from: ACPI for FreeBSD CVS repository.
* Add spltty()/splx() in the watchdog timer routine.yokota2000-08-242-0/+6
|
* Fixed freeing wrong address.kato2000-08-241-1/+1
| | | | Submitted by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp>
* List loader.conf and friends in the FILES section.sheldonh2000-08-241-0/+6
| | | | Requested by: obrien
* Import the new linux(4) manual page, which will be useful when thesheldonh2000-08-242-1/+126
| | | | linux(8) utility and manual page go away.
* Sync to pccarddevs 1.5imp2000-08-242-107/+286
|
* o Fix unterminated commentimp2000-08-241-28/+53
| | | | | | | | | | | | | | | | | | | | o Sync to NetBSD (rev NetBSD-user edited-log): 1.97 onoe add Samsung MagicLAN SWL-2000N 1.96 gmcgarry Add entries for all Xircom ethernet models. 1.95 onoe Add Farallon SkyLINE 11mb card as Intersil Prism2 [...] 1.94 joda add 3Com 3CRWE737A (AirConnect) 1.93 soren Include vendor name for IBM products. 1.92 onoe Add Farallon SkyLINE Wireless LAN Card for awi(4) [...] 1.91 soren Add Olicom GoCard. 1.90 gmcgarry Clean up XIRCOM entries - Add entry for Xircom CreditCard Ethernet + Modem 28 - Add entry for Intel EtherExpress PRO/100 - Add entry for Compaq Netelligent 10/100 Ethernet 1.89 is RATOC REX-R280 (another if_mbe_pcmcia card) support by [...] 1.88 joda Panasonic KXLC003 1.87 scw [...] SOHOware PCMCIA Ethernet card, model ND5100-E [...] 1.86 itojun add CIS for Corega Wireless LAN PCC-11 [...] o Minor diffs between the two files corrected to aid future sync.
* Revert the suser -> suser_xxx change made previously. It was rightgreen2000-08-241-1/+1
| | | | before.
* the code assumes that getgroups() always returns NGROUPS groups, howeveralfred2000-08-231-2/+4
| | | | | | | that is not true. Instead of looping NGROUPS times, get the return value from getgroups() and loop over the return that many times. Noticed by: David A. Holland <dholland@eecs.harvard.edu>
* Add a sysctl which hides all process except those that belong tops2000-08-231-0/+9
| | | | | | the user asking for the process list. Reviewed by: peter
* Add entry for the Farallon Skyline 11Mbps wireless NIC (WaveLAN/IEEEwpaul2000-08-231-0/+6
| | | | compatible)
* Various cleanups all around. Document serial/graphics consolewilko2000-08-231-51/+68
| | | | selection for AS1000[A]/800
* Add missing quotes around xauth pathache2000-08-231-1/+1
|
* Update my email address in various places in pkg_version.bmah2000-08-232-2/+2
|
* Make the following additional entries to RELNOTES.TXT files:bmah2000-08-232-0/+55
| | | | | | | | | | | | | | | | alpha: tap driver, accept_filters, ata support for ATA100, routed update to 2.22, truncate(1), syslogd(8) -n option, kenv(1), periodic(8) controlled by periodic.conf, logger(1) support for remote syslogs. i386: tap driver, accept_filters, ata support for ATA100, routed update to 2.22, truncate(1), syslogd(8) -n option, kenv(1), periodic(8) controlled by periodic.conf, boot98cfg(8), logger(1) support for remote syslogs. PR: 20628 Submitted by: bmah@cisco.com (Bruce A. Mah) Reviewed by: nik
* Add weak symbol pragma for crypt_set_format().asmodai2000-08-231-0/+6
| | | | Approved by: green
* Generate a new evp.h at build-time instead of install-time to properlygreen2000-08-232-6/+7
| | | | support NFS(ro) installworlds.
* Only print information about reads and writes when the -v flag (forsheldonh2000-08-232-12/+16
| | | | | | | | verbose mode) is specified. This should really have been the case when this extra cruft was first introduced in rev 1.23. PR: 20710 Reported by: Mike Meyer <mwm@mired.org>
* Increase the default value of LoginGraceTime from 60 seconds to 120kris2000-08-233-3/+3
| | | | | | | seconds. PR: 20488 Submitted by: rwatson
* Respect X11BASE to derive the location of xauth(1)kris2000-08-232-0/+6
| | | | | PR: 17818 Submitted by: Bjoern Fischer <bfischer@Techfak.Uni-Bielefeld.DE>
* Fix the matcd driver for the new world order. This basically justsheldonh2000-08-231-9/+9
| | | | | | | | | | | | renames matcdc to matcd. This change is reported to work by two independent PR originators. In the absence of further feedback on the freebsd-bugs list, we may as well get this working for its two users. PR: 20296 Submitted by: George Russell <george.russell@clara.net>, Remi Guyomarch <rguyom@mail.dotcom.fr>
* This commit was generated by cvs2svn to compensate for changes in r65016,kris2000-08-231-2/+12
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Fix for buffer overflow in command-line arguments to dnsquery(1) whichkris2000-08-231-2/+12
| | | | | | | | | | | | will be appearing in 8.2.3 Approved by: Paul A Vixie <vixie@mibh.net>
* | Miscellaneous fixes:sheldonh2000-08-231-2/+8
| | | | | | | | | | amr -> Nm Cross-reference the AUTHORS section properly.
* | Normalize the diagnostics list.sheldonh2000-08-231-25/+4
| |
* | Miscellaneous fixes:sheldonh2000-08-231-8/+7
| | | | | | | | | | | | | | | | * Clear extraneous argument to the Os macro. * Place the name description on the Nd line. * Mark sub-sections up with Ss, not Sh. * Don't double-quote "Login" when "login prompt" is perfectly good English.
* | Whitespace-only change: normalize line-breaking.sheldonh2000-08-231-11/+16
| |
* | Misc: mlx -> Nmsheldonh2000-08-231-1/+3
| |
* | Whitespace-only changes: split over-long lines.sheldonh2000-08-231-4/+6
| |
* | Normalize diagnostics list.sheldonh2000-08-231-60/+6
| |
* | Whitespace-only change: apply normal line breaking style.sheldonh2000-08-231-6/+6
| |
* | Miscellaneous fixes: mly -> Nm and eg. -> e.g. .sheldonh2000-08-231-2/+4
| |
OpenPOWER on IntegriCloud