summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Document the arch flag. It has always worked in 2.0.bde1994-12-272-2/+6
| | | | | | Document aliases for the flags. The formatting of the section describing the flags is poor.
* Use the same current time throughout ffs_update().bde1994-12-271-11/+27
| | | | | | Update some macro names in comments. Don't use MNT_WAIT for something not related to mounting.
* Use the same current time throughout ITIMES(). I want all currentbde1994-12-273-21/+45
| | | | | | | | timestamps for an atomic operation such as rename() on a local file system to be identical. Uniformize yet another idempotency ifdef. The comment nesting was bogus.
* fixunsdfsi.S:bde1994-12-271-37/+22
| | | | | | Embalm. Rewrite to do things much the same as gcc-2: use fistpq for speed and elegance, and mishandle overflow consistently. __fixunsdfsi() is no longer called by gcc.
* sigsetjmp.S:bde1994-12-272-6/+4
| | | | Remove unnecessary .text statement.
* Remove unnecessary .align statement.bde1994-12-274-4/+0
|
* Fix a spelling error and add a comment about possible improvements.bde1994-12-271-3/+17
|
* Keep track of the devconf state.bde1994-12-273-6/+21
|
* Fix panic for `cp -p' by root to an msdos file system. Improve handlingbde1994-12-276-58/+114
| | | | | | | | | | | | | | | | | | | | | | | | | | | | of attributes so that `cp -p' to an msdos file system can succeed under favourable circumstances (no uid or gid changes and no nonzero flags except SF_ARCHIVED). msdosfs_vnops.c: The in-core inode flags were confused with the on-disk inode flags, so chflags() clobbered the lock flag and caused a panic. denode.h, msdosfs_denode.c, msdosfs_vnops.c: Support the msdosfs archive attibute (ATTR_ARCHIVE) by mapping it to the complement of the SF_ARCHIVED flag and setting the ATTR_ARCHIVE bit when a file's modification time is set (but not when a file's permissions are set; this is the standard wrong DOS behaviour). denode.h, msdosfs_denode.c: Remove the DE_UPDAT() macro. It was only used once, and the corresponding macro in ufs has already been removed. denode.h: Don't change the timestamp for directories in DE_TIMES() (be consistent with deupdat()). msdosfs_vnops.c: Handle chown() better: return EPERM instead of EINVAL if there are insufficient permissions; otherwise, allow null changes.
* Fixed two security holes in the pcmmap() function.dg1994-12-273-9/+9
| | | | Submitted by: Bruce Evans
* My prevoius commit missed some things. The out_line didn't needats1994-12-271-2/+3
| | | | | | | | | | to be padded to 8 chars. Simply make sure that never more than 8 chars are printed ( %-.8s ). The former commit otherwise hosed the width calculation and landed on different positions for the time output. Also the strlen(xx_out_line) hoses the wide calculation, so that it sometimes make it much larger than necessary. Simply use always 8 chars for the out_line calculation now. Looks good this way.
* Install also a gcc.1 manual page as a link from cc.1, as long asats1994-12-261-1/+2
| | | | we have the link cc to gcc.
* Add a patch that someone on the net has used to run on his IBM Thinkpad.ats1994-12-263-3/+24
| | | | | Sorry, lost the name and mail of the original author. The whole patch is ifdefed, so it should not disturb someone else in the moment.
* Add examples for the sony and the panasonic drivers.ats1994-12-263-3/+21
|
* The out_line doesn't need to be zero terminated, so print it not with %sats1994-12-261-1/+1
| | | | | but with a %-8.8s instead. this prevents funny output, if the out_line contains a long hostname that is larger than 8 chars.
* Obtained from: partly from 1.1.5bde1994-12-261-2/+4
| | | | | Convert "" to "." for "cd" and "cd ''". chdir("") is required to fail on POSIX systems.
* Obtained from: partly from 386BSD-0.1.2.4bde1994-12-261-14/+17
| | | | | | | | | | | | | Fix several bugs involving the obsolescent -d and -t options: -d 0 and -t 0 were ignored -t -600 was a usage error -d 'atoi is not suitable for parsing args' and -t duh were not usage errors Change some error messages to say which call to settimeofday failed. Restore casts of NULL in function calls. Finish conversion to using err() instead of perror().
* Use timelocal() instead of mktime() hackache1994-12-261-10/+18
|
* Declare useful functions (timelocal() and timegm())ache1994-12-261-0/+2
|
* Correct the devices.i386 for the major numbers. 8 was already used nowats1994-12-263-4/+7
| | | | | | by the lkm driver, so put scd and pcd to the numbers they have now in i386/conf.c. Add the pcd.c file for the panasonic driver in files.i386.
* Add entries for the sony and panasonic drives and drivers.ats1994-12-251-2/+46
|
* Fix the bug reported by Torbjorn Granlund <tege@cygnus.com>:bde1994-12-251-5/+5
| | | | | | The documentation for mrand48 and lrand48 is mixed up. mrand48 returns a full 32 bit number, while lrand48 only returns 31 bits.
* Add entries for the sony and panasonic drives. The not SCSI and not EIDEats1994-12-252-6/+14
| | | | drives :-).
* Merge several probe diagnostics into one.ache1994-12-244-54/+40
| | | | | Adjust for newer model for all non-LUxxx too. FLAGS status register names cleanup
* Fix comments on dk_wds and dk_wpms to match code. Improve comment onbde1994-12-241-4/+4
| | | | dk_time.
* Add T option back to ar until nm will be fixed. Sorry, nate.ache1994-12-241-4/+4
|
* Fix the "wds" count stat.bde1994-12-241-2/+2
|
* Fix the "wd" count stat. The seek and xfer stats are still very bogusbde1994-12-241-2/+2
| | | | | | | for wd (they both count the number of sectors). The wpms stat is still moderately bogus for all drivers. Even the count stat could be handled better (partial blocks should be counted as full blocks; should errors and retries be counted?).
* Really fix the "byte" count stat. `wd's are actually blocks of 32 16-bitbde1994-12-241-2/+2
| | | | words in dkstat-speak. `ms's are seconds in dkstat-speak...
* Obtained from: 1.1.5bde1994-12-243-12/+30
| | | | | | | Fix single-stepping of emulated FPU instructions. Don't panic if an FPU instruction is attempted but there is no FPU and no FPU emulator is configured.
* Merging.ache1994-12-247-48/+55
| | | | | | | | | | | | | | | v1.9.0 - December 22, 1994. The program won't exit from the interactive shell if it's working from a tty. For example, it won't exit if you do an mget on a pattern that won't match anything. Added padding around jmp_buf's for SunOS. SunOS needs sigjmp_buf's, but plenty of OS's don't support sigjmp_buf's yet. Fixed the tips to reflect the new archive site. v1.8.9 - December 20, 1994. Can now set "passive" user variable, or use passive command to toggle PASV/PORT ftp. Debug mode now prints remote responses. Can now get around buggy FTP servers like boombox.micro.umn.edu, that give back invalid port numbers to PASV. v1.8.8 - December 19, 1994. Now falls back to port FTP if passive FTP fails.
* This commit was generated by cvs2svn to compensate for changes in r5216,ache1994-12-243-7/+20
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Updateache1994-12-249-52/+72
| |
* | Revert last patch - it's wrong.dg1994-12-231-2/+2
| |
* | New file from pk to aid new in developing the shlib code for newnate1994-12-231-0/+192
| | | | | | | | | | | | architectures. Obtained from: NetBSD
* | Subject: ranlib fix for odd length long final file names (PR #82)nate1994-12-231-2/+7
| | | | | | | | Submitted by: Peter Dufault <dufault@hda.com>
* | Strip out unused local symbols from shared objects, and no longernate1994-12-231-4/+14
| | | | | | | | | | truncate archive members to 15 characters since it's no longer necessary.
* | Fixed byte count stat.dg1994-12-231-2/+2
| | | | | | | | Submitted by: John Dyson
* | Added link.5 man page and updated a.out.5 manpage to reflect the newnate1994-12-233-29/+656
| | | | | | | | | | | | code. Obtained from: NetBSD
* | Warning and weak reference macros which are used to generate link-timenate1994-12-231-2/+20
| | | | | | | | | | | | messages. Obtained from: NetBSD
* | Updated version of gas which allows for link-time error reporting ifnate1994-12-2327-2242/+3192
| | | | | | | | | | | | | | used in conjustion with the new shlib 'ld' source. Note, if you use the new features both gas and ld must be updated. Obtained from: NetBSD
* | Document some of the fields used by the new shlib code.nate1994-12-232-2/+12
| | | | | | | | Obtained from: NetBSD
* | Updated to recent version of Paul K.'s shlib code. This code has betternate1994-12-2327-485/+682
| | | | | | | | | | | | | | | | | | | | warning handling and allows for link-time warnings with a modified version of gas. Note: Not all of the newer bits were updated such as some of the non-x86 machine-dependant code is relevant to FreeBSD right now. Obtained from: NetBSD
* | Miscellaneous fixes for the snapshot.jkh1994-12-232-3/+8
| |
* | Do vm_page_rename more conservatively in rcollapse and qcollapse, anddg1994-12-231-4/+9
| | | | | | | | | | | | change list walk so that it doesn't get stuck in an infinite loop. Submitted by: John Dyson
* | Initialize b_vnbuf.le_next before returning a new buffer in getpbuf anddg1994-12-232-4/+8
| | | | | | | | trypbuf. Move a couple of splbio's to be slightly less conservative.
* | Protect vnode buffer chain manipulation with splbio to prevent listdg1994-12-232-2/+16
| | | | | | | | corruption..
* | Whoops! I buggered up the tape dialog. Fixed. These changes allowjkh1994-12-232-5/+7
| | | | | | | | | | you to specify your tape drive device for the cases when the user has more than one.
* | Fix a typo that crept in with the last update.jkh1994-12-231-2/+2
| |
* | Even more bogons eradicated. My, there are a lot of them in here! :-)jkh1994-12-231-6/+5
| |
OpenPOWER on IntegriCloud