aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update to match rev. 1.28 of msdosfs_lookup.c.Dmitrij Tejblum1999-01-113-33/+6
| | | | Notes: svn path=/head/; revision=42534
* Make HP T4000S quirk to FIXED modeMatt Jacob1999-01-111-1/+5
| | | | Notes: svn path=/head/; revision=42533
* Back out 1.146 - usbd is already enabled.Mike Smith1999-01-111-2/+1
| | | | Notes: svn path=/head/; revision=42532
* Add 'static' to the declaration, too.Eivind Eklund1999-01-111-2/+2
| | | | Notes: svn path=/head/; revision=42531
* SLOW_VGA -> VGA_SLOW_IOACCESS here, too.Eivind Eklund1999-01-113-6/+6
| | | | Notes: svn path=/head/; revision=42530
* Update the pointer into the bitmap correctly. The previous codeKazutaka YOKOTA1999-01-112-4/+4
| | | | | | | | had the pointer off by 4 bytes if the width of the bitmap is a multiple of four. Notes: svn path=/head/; revision=42529
* corrected disorder, override of user and group defaults and groupHellmuth Michaelis1999-01-111-3/+3
| | | | | | | permissions for /etc/isdn (suggested by Bruce Evans). Notes: svn path=/head/; revision=42528
* Fix an NFS-related installation problem.John Polstra1999-01-111-1/+1
| | | | | | | Submitted by: asami Notes: svn path=/head/; revision=42527
* Doh... han an occurance of MX that should have been PN (forgot toBill Paul1999-01-112-4/+4
| | | | | | | | | change it when I turn a copy of mx.4 into pn.4). Pointed out by: Jason Wright <jason@thought.net> Notes: svn path=/head/; revision=42526
* Remove the example for setting KERNFORMAT=elf; it is the default already.Peter Wemm1999-01-113-27/+3
| | | | Notes: svn path=/head/; revision=42525
* Correct some formatting errors (one is a groff bug)Brian Somers1999-01-112-54/+108
| | | | | | | | Noted & partially submitted by: Peter Jeremy <peter.jeremy@auss2.alcatel.com.au> PR: 9432 Notes: svn path=/head/; revision=42523
* (1) Add ONLY_FOR_ARCHS and NOT_FOR_ARCHS. They are list of architecture namesSatoshi Asami1999-01-111-19/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (as given by "uname -m") by which you can specify which architectures the port is appropriate for. Idea borrowed from: NetBSD, OpenBSD Reviewed by: simokawa (2) New variable PERL_ARCH (value: ${ARCH}-freebsd) that is also passed to ${PLIST_SUB}. Use it to simplify PLISTs. Submitted by: simokawa (3) Check OSVERSION as well as existence of /usr/bin/perl5 before assuming USE_PERL5 is to be a no-op. Basically to allow building of 2.2-INDEX on a 3.0 machine. (4) Change USE_QT definition to use new shlib version (2) and directory (qt142). (5) Uncomment temporary Motif dependency for parallel package building. We still need to figure out a way to install the pkg database files, but it's a start. (6) Move EXTRACT_SUFX up into the pre.mk area so it can be used in exists() tests. (7) Add MASTER_SITE_COMP_SOURCES. Note that this is defined like "/pub/usenet/comp.sources.%SUBDIR%/" so you can specify something like "SUBDIR=x/volume18" to select the newsgroup as well as subdirectory name. Submitted by: "distfiles" fenner (8) Other misc. master site cleanup. Submitted by: "distfiles" fenner (9) New target "maintainer". I intend to use it to auto-mail failure build failure notices to the maintainer. Notes: svn path=/head/; revision=42521
* Merge recent changes from doc/handbook/porting.sgml and www/en/ports/categories.Satoshi Asami1999-01-112-18/+12
| | | | Notes: svn path=/head/; revision=42520
* Drop boot.help support.Robert Nordier1999-01-112-20/+10
| | | | Notes: svn path=/head/; revision=42519
* optreset is a POSIX extension, make it visible in POSIX_SOURCE scope.Mike Smith1999-01-111-1/+1
| | | | | | | Submitted by: Andrzej Bialecki <abial@nask.pl> Notes: svn path=/head/; revision=42518
* Add a missing bzero which could be the source of instabilityLuigi Rizzo1999-01-111-12/+21
| | | | | | | | | | problems reported recently (the rtentry pointer in the dummynet queue was not initialized in all cases, resulting in spurious rt_refcnt decreases in the lucky cases, and memory trashing in other cases. Notes: svn path=/head/; revision=42516
* Move nologin from /etc to /var/run. This means one less file that hasSatoshi Asami1999-01-115-14/+12
| | | | | | | | | | | | to be written to /etc. The only essential change is in paths.h, so any third-party software written correctly will pick it up in the next rebuild. Reviewed by: the committers list (actually an old version) Notes: svn path=/head/; revision=42515
* Add notes about the new console system and a pointer to the changesWarner Losh1999-01-111-1/+12
| | | | | | | | | required by it. Submitted by: Kazutaka YOKOTA (with minor edits by me) Notes: svn path=/head/; revision=42514
* Add usbd to the buildMike Smith1999-01-111-1/+2
| | | | Notes: svn path=/head/; revision=42513
* No builtin command resets getopt before using it, causingMike Smith1999-01-114-3/+10
| | | | | | | | | | | problems in case a wrong option was given previously, and no option is given to the next command. PR: kern/9371 Submitted by: "Daniel C. Sobral" <dcs@newsguy.com> Notes: svn path=/head/; revision=42512
* POSIX introduced optreset to deal with multiple invocationsMike Smith1999-01-112-2/+3
| | | | | | | | | | | | | of getopt (as in, multiple input lines :). This is documented in the man page and is used in the code, but unistd.h and stand.h do not declare it. Incidentally, it prevents me fixing a bug in loader's code... :-) PR: misc/9373 Submitted by: "Daniel C. Sobral" <dcs@newsguy.com> Notes: svn path=/head/; revision=42511
* Preserve the previous loader as loader.old.Mike Smith1999-01-111-1/+4
| | | | | | | | | | | Note no matching commit for the Alpha, as the alpha boot0 stage does not have the ability to prompt for user input. PR: kern/9406 Submitted by: "Daniel C. Sobral" <dcs@newsguy.com> Notes: svn path=/head/; revision=42510
* Fix linux sendmsg() emulationMike Smith1999-01-112-4/+70
| | | | | | | Submitted by: Brian Feldman <green@unixhelp.org> Notes: svn path=/head/; revision=42509
* Implement the -l commandline option which turns off broadcast ofSteve Price1999-01-112-5/+24
| | | | | | | | | | information, but still allows you to monitor other machines. PR: 9301 Submitted by: Matthew Fuller <fullermd@futuresouth.com> Notes: svn path=/head/; revision=42508
* Don't refer to i386/isa/kbdio.h anymore. Use dev/kbd/atkbdcreg.h instead.Kazutaka YOKOTA1999-01-111-2/+3
| | | | Notes: svn path=/head/; revision=42507
* Add splash screen module. This version has rather limitedKazutaka YOKOTA1999-01-116-2/+1006
| | | | | | | | | | capabilities, but should be a good start... Well, sort of. It can handle W*ndows 256 color BMP file. (Other color depth probably won't work.) The size of the image must be 320x200 or less. *sigh* Notes: svn path=/head/; revision=42506
* The first stage of console driver reorganization: activate newKazutaka YOKOTA1999-01-112-11/+115
| | | | | | | keyboard and video card drivers. Notes: svn path=/head/; revision=42505
* The first stage of console driver reorganization: activate newKazutaka YOKOTA1999-01-1140-2114/+2000
| | | | | | | | | | | | | | | | keyboard and video card drivers. Because of the changes, you are required to update your kernel configuration file now! The files in sys/dev/syscons are still i386-specific (but less so than before), and won't compile for alpha and PC98 yet. syscons still directly accesses the video card registers here and there; this will be rectified in the later stages. Notes: svn path=/head/; revision=42504
* Oops, I committed wrong version of these files in the last commit!Kazutaka YOKOTA1999-01-112-73/+151
| | | | | | | Here are the correct, and up-top-date ones. Notes: svn path=/head/; revision=42503
* Try some new floppy sizes.Jordan K. Hubbard1999-01-111-12/+6
| | | | Notes: svn path=/head/; revision=42502
* Added file handling to ulpt (USB printer) driverNick Hibma1999-01-115-6/+55
| | | | Notes: svn path=/head/; revision=42501
* Fix a minor security problem in libc_r.Warner Losh1999-01-113-12/+75
| | | | | | | | | Submitted by: Alexandre Snarskii <snar@paranoia.ru> Approved by: John Birrell Reminded me that I'd been sitting on this too long: snar@paranoia.ru Notes: svn path=/head/; revision=42500
* Use truncate() instead of otruncate() - step on the way to stoppingEivind Eklund1999-01-102-6/+6
| | | | | | | the linulator from depending on COMPAT_43. Notes: svn path=/head/; revision=42499
* Added starting of usbdNick Hibma1999-01-102-4/+12
| | | | Notes: svn path=/head/; revision=42498
* Remove warningNick Hibma1999-01-101-3/+1
| | | | Notes: svn path=/head/; revision=42497
* Added usbd and usbdevsNick Hibma1999-01-101-1/+3
| | | | Notes: svn path=/head/; revision=42496
* No longer install obsolete boot.help file.Robert Nordier1999-01-101-8/+1
| | | | Notes: svn path=/head/; revision=42495
* No longer install outdated boot.help file.Robert Nordier1999-01-101-2/+1
| | | | Notes: svn path=/head/; revision=42494
* Disable kzipping the loader; it seems to be breaking the aout-to-elf buildMike Smith1999-01-101-3/+3
| | | | Notes: svn path=/head/; revision=42493
* Add vpo.4 to the list of manpages to build and install.Steve Price1999-01-101-1/+1
| | | | | | | | PR: 9427 Submitted by: Jeroen Ruigrok/Asmodai <asmodai@wxs.nl> Notes: svn path=/head/; revision=42492
* Tweak the vr_start() and vr_rxeof() routines a little to improveBill Paul1999-01-104-62/+26
| | | | | | | | | | performance and reliability a little. There was a condition before where transmission would stall during periods of heavy traffic exchange between two hosts. Also set the 'want interrupt' bit in receive descriptor control words. Notes: svn path=/head/; revision=42491
* Sync with NetBSD sources. Almost there. Mostly style fixes.Nick Hibma1999-01-1024-199/+287
| | | | Notes: svn path=/head/; revision=42490
* Remove warningNick Hibma1999-01-101-2/+1
| | | | Notes: svn path=/head/; revision=42489
* Remove redundant line of code.Steve Price1999-01-101-2/+1
| | | | | | | | PR: 9364 Submitted by: Daniel C. Sobral <dcs@newsguy.com> Notes: svn path=/head/; revision=42488
* Forgotten options needed to build last ppbus commit.Nicolas Souchu1999-01-103-4/+12
| | | | | | | Submitted by: "D. Rock" <rock@wurzelausix.CS.Uni-SB.DE> Notes: svn path=/head/; revision=42487
* Remove check from where arp replies are coming from -- when doing bridging,Luigi Rizzo1999-01-101-1/+3
| | | | | | | interfaces are used in clusters so the check does not apply. Notes: svn path=/head/; revision=42486
* Typo: /etc/ppp/ppp.conf.example -> ppp.conf.sampleSADA Kenji1999-01-102-4/+4
| | | | | | | Submitted by: Sugiura Shiro <ssugiura@duo.co.jp> Notes: svn path=/head/; revision=42484
* From the submitter:Doug Rabson1999-01-101-2/+2
| | | | | | | | | | | | | I found the reason why f77 so offen dies on alpha. Here is a fix. "Const" is a union of int and double. If nelt->constblock.Const.ci > 0 then it trys to evaluate it as double and floating point exception occurs. Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp> Obtained from: NetBSD Notes: svn path=/head/; revision=42483
* Fix broken low level ppb_rxxx() return type: char becomes u_char.Nicolas Souchu1999-01-108-65/+63
| | | | | | | | | Submitted by: Bruce Evans <bde@zeta.org.au> Some ppb bootup printfs simplified. Notes: svn path=/head/; revision=42482
* Fix the annoying bug introduced in rev 1.18 that caused each line to bePeter Wemm1999-01-102-13/+15
| | | | | | | | | | | | | | | | | | | one character shorter than the previous in a stairstep fashion when long idle times were involved. A couple of nits: - spelling/typo fix. - some of the easier style(9) fixes where it was bothering me. - Handle 100+ days idle time (ha!). Probably the right thing to do is to do a snprintf into a buffer and strlen the result rather than doing hackery on magic numbers. XXX the wide (and mostly unused) username and tty columns annoy me since it it could be used for more useful information for the command. We should actually count the largest username and tty and adjust like 'ls -l' does. Notes: svn path=/head/; revision=42481