summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix 'make distribute'ache2000-04-217-33/+19
|
* Disable ja NLS until clarifying what needed else to support itache2000-04-211-1/+4
|
* Introduce ".Lb" macro to libc manpages.phantom2000-04-21363-1/+727
| | | | More libraries manpages updates following.
* Introduce new mdoc macro -- Lb. It will be used to define library ownershipphantom2000-04-211-0/+16
| | | | | | | | | | | | | | | | for function. For example: for stat(2) syscall (owned by libc) we will add following code: .Sh LIBRARY .Lb libc and it will be rendered to: LIBRARY Standard C Library (libc, -lc) Suggested by: mpp Idea obtained from: NetBSD
* Fix include paths so that this builds correctly.msmith2000-04-219-9/+9
| | | | Submitted by: Mike Pritchard <mpp@mppsystems.com>
* A local WIP snook in rev 1.31.obrien2000-04-212-12/+4
| | | | Noticed by: bde
* Make the loader a little smarter about when it is and is not allowedps2000-04-211-3/+8
| | | | to call PXE.
* Don't call the PXE cleanup routine if PXE is not enabled. Thisps2000-04-211-2/+8
| | | | should fix the "Invalid partition table" error people were seeing.
* Roll minor version. Increase size (and add defines for) topology storage.mjacob2000-04-211-2/+9
|
* Some minor tweaklets.mjacob2000-04-213-21/+44
|
* Add in the now required malloc.h include. I guess somebodymjacob2000-04-211-0/+1
| | | | was busy hackin' w/o checking kernel compiles.
* Pick up topology more sanely at f/w startup. Change the restrictions ofmjacob2000-04-211-22/+34
| | | | | | | where we can have targets (based on topology). Much more importantly, make sure all mods to isp_sendmarker or |= so we don't lose the marking of a bus that needs to have a marker sent for it.
* Update (finally) 1.15.37 to 1.19.03 for the 2100. This allows us to notmjacob2000-04-211-20026/+23524
| | | | | | | require full logins after a LIP, which always led to loop resets, and various other perturbations. Update 2200 f/w from 2.01.00 release to 2.01.09 release.
* Poul-Henning's changes necessitate s/bp->b_flags/bp->b_io/bio_cmd/.green2000-04-211-1/+1
|
* s/of possible/if possible/green2000-04-211-1/+1
|
* One minor bugfix:msmith2000-04-202-4/+19
| | | | | | | | | | | | - Free resources in all the possible attachment failure cases. One critical bugfix: - Fix a race where it was possible to get out of synch with the log messages from the controller, if the controller hung up for any period of time (eg. while resetting a SCSI bus). This would result in an endless string of console errors, bringing the machine to a halt.
* o Update extattrctl.8 to reflect new initattr -p, -r, and -w options.rwatson2000-04-202-4/+41
| | | | | | | o Update extattrctl.c to default new attributes to readable and writable only by the kernel and root user. Previously the default was to allow the file owner to directory view and manipulate the attributes, which is probably an inappropriate default.
* o Allow the ``-p'' argument to be specified to initattr, which indicatesrwatson2000-04-201-8/+46
| | | | | | | | | | | that space for extended attributes should be preallocated, instead of using a sparse attribute file. NOTE: This can result in a really large file full of zeros. However, it can prevent a low disk condition from causing an attribute write to fail, which is good for security and consistency attributes. o Unlink the attribute file during initattr if an error occurs -- this is alright, as we specify O_CREAT when opening the file.
* Slight grammar and white-space modification.phantom2000-04-201-3/+5
|
* Remove useless .Nm macro argumentphantom2000-04-201-2/+2
|
* IO apics are not necessarily page aligned, they are only required to be alignedluoqi2000-04-202-6/+10
| | | | | | on 1K boundary. Correct a typo that would cause problem to a second IO apic. Pointed out by: Steve Passe <smp.csn.net>
* removed some obsolete information and dead links.hm2000-04-201-41/+6
| | | | Noticed by: Alexander Werner Skwar
* Rename the trace() function (that is build only in the -DDEBUG=2cracauer2000-04-203-4/+5
| | | | | | | | | | | case), so that it doesn't clash with the ncurses function of the same name when linking statically with -ltermcap. The linker only complains when -static is used, and it is not clear whether this is a bug. PR: bin/18104 Submitted by: Anatoly Vorobey <mellon@pobox.com>
* Include <errno.h> when compiling with -DDEBUG=2cracauer2000-04-201-0/+3
| | | | | PR: bin/18104 Submitted by: mellon@pobox.com
* Fix warnings, some of them serious because sh violated namecracauer2000-04-208-17/+8
| | | | | | | | spaces reserved by the header files it includes. mkinit.c still produces C code with redundant declarations, although they are more harmless since they automatically derived from the right places.
* Remove redundat extern declarationcracauer2000-04-201-1/+2
|
* Add /bin/tcshache2000-04-201-0/+2
|
* Activate NLS.ache2000-04-208-31/+38
| | | | | Optimize NLS by not wasting space copying the same .cat but use symbolic links instead.
* Revert this file back to its FSF/Cygnus virgin state.obrien2000-04-201-1/+3
| | | | | | | | | | | | | With jb's rev 1.2 commit to usr.bin/lorder/lorder.sh we don't depend on the 4.4BSD's ``nm -o'' behavior. Previous to 4.3BSD-Reno, ``nm -o'' did not output the .o's filename on a line by itself. The change occurred between CSRG's nm.c rev 4.8 (1987) and rev 5.1 (in 1989), which was "new version from Hans Huebner hans@garp.mit.edu, huebner@db0tui6.BITNET". The Binutils maintainers would rather cater to a loud boisterous user of 4.3BSD VAXen which has its own native toolchain, rather than a modern Unix with multiple orders of magnitude more users and in which Binutils *is* the native toolchain.
* o Preliminary support for mapping the CIS by the driver.imp2000-04-203-13/+83
| | | | | | | | o Modify xe driver to use this. There's still some issues with this code, so xe can't map the cis just yet. I'm thinking about how to resolve the issue. pccard_nbk's pccard_alloc_resource is getting in the way.
* Found more places where 'r' was being prepended to the device name.obrien2000-04-202-8/+16
|
* card_if.m used by oldcard now tooimp2000-04-201-0/+1
|
* Remove bogus commentimp2000-04-201-2/+0
|
* Use the C locale for running date(1).kris2000-04-201-1/+1
| | | | Submitted by: ache
* Activate finnish setache2000-04-202-4/+4
|
* Add NLS files. Finish and Greek are WIPs.obrien2000-04-209-0/+190
| | | | Submitted by: ache
* Mention the support for PXE in the release notes.ps2000-04-201-0/+4
|
* This commit was generated by cvs2svn to compensate for changes in r59419,obrien2000-04-201-17/+28
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * This fix from christos@zoulas.com (Christos Zoulas) based on ache'sobrien2000-04-201-17/+28
| | | | | | | | | | ports/shells/tcsh/patches/patch-ac fixes the problem with 8-bit characters not highlighting properly.
* | This commit was generated by cvs2svn to compensate for changes in r59415,obrien2000-04-2058-450/+1388
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * 6.09.01 vendor update.obrien2000-04-2058-450/+1388
| |
* | Remove the linprocfs bits from their old location, as they've moved now.msmith2000-04-205-1862/+0
| |
* | Point to the new location of the sources under the i386 linux compatibilitymsmith2000-04-201-1/+1
| | | | | | | | code.
* | Move the linprocfs bits under the rest of the i386 linux compatibilitymsmith2000-04-2011-0/+3926
| | | | | | | | code.
* | Change getaddrinfo() resolve ordershin2000-04-202-75/+317
| | | | | | | | | | | | | | | | | | | | | | from all AAAA trial, then all A trial to try AAAA and A for each trial TODO: more fix for the case where IPv4 mapped IPv6 addr is disabled Reviewed by: ume
* | Add TI-1211 chipset from datasheet infoimp2000-04-204-4/+14
| |
* | Add a cleanup function. This is needed for PXE where you shouldps2000-04-204-7/+21
| | | | | | | | shutdown the UNDI and unload the stack.
* | CSU source for IA-64. Current we use the ../Alpha sources.obrien2000-04-191-0/+28
| |
* | Use ${.ALLSRC} in Makefile so that it is a better candidate for copying.obrien2000-04-192-2/+2
| | | | | | | | Also allows the soruce to live somewhere else.
* | CSU source for the Sparc copied over from the FreeBSD/Alpha sources.steve2000-04-194-0/+237
| |
OpenPOWER on IntegriCloud