summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* change nobody master.passwd entry to 65534:65534ache1995-05-152-3/+3
| | | | | change nobody group entry to 65534 Suggested-by: pst
* Fixed the calculation of the reserved space for bad144. Thanks Rod!phk1995-05-152-4/+4
|
* Basic bad-block scanner. Works. Slow. Adds the bad-spots automatically.phk1995-05-151-77/+76
|
* Change xten shell from /dev/null to /nonexistant, adduserache1995-05-151-2/+2
| | | | | | complaints instead. Change nobody user group from non existent in /etc/group (9999) to existent nobody (39).
* Fix draw shadow bug, when shadow reaches end of the screen,ache1995-05-151-20/+34
| | | | bringed by devmenu or tzsetup f.e.
* Fixed typo.dg1995-05-151-1/+1
|
* Use symbolic "IPTOS_LOWDELAY" instead of octal bit value for this socketdg1995-05-151-1/+1
| | | | option. The bit value was wrong.
* Fully initialize (bzero) the stack-allocated "struct sockaddr_in server"dg1995-05-151-1/+2
| | | | | structure. Random junk on the stack would cause the call to bind to fail in some cases (since the address portion wasn't initialized).
* Remove all /dev/'s from device names, they should all be relativergrimes1995-05-152-48/+48
| | | | | | | to /dev. Putting absolute paths in here breaks the make release process, and screws up testing of this script in other directories. Submitted by: bde
* Fixed incompleteness that would allow dirty filesystems to get mounteddg1995-05-156-14/+45
| | | | | | | | | when the single user shell was terminated. These changes disallow mounting or R/W upgrading filesystems that are dirty unless "-f" (force) option is used with mount. /etc/rc has been modified to abort the startup if one or more non-nfs partitions fail to mount. Reviewed by: Poul-Henning Kamp, Rod Grimes
* From Bruce Evans:dg1995-05-151-2/+3
| | | | | | | | | | | | | | | | | | | I ran into another manifestation of the problem reported in PR 211 and fixed it. Try this: as non-root: cd /tmp; mkdir x y x/z as root: chown root /tmp/x/z as non-root: cd /tmp/x; mv z ../y # EACCES as expected as root: cd /tmp/x; mv z ../y # EINVAL NOT as expected This is because ufs_rename() sets IN_RENAME and fails to clear it. Reviewed by: davidg Submitted by: bde
* Clean up the matcd entry so it deletes the *matcdl* entries before tryinggpalmer1995-05-152-4/+4
| | | | | | to create new ones. Reviewed by: davidg, rgrimes
* Create_Chunk_DWIM will not allocate anything in the last cylinder of aphk1995-05-152-6/+36
| | | | | | CHUNK_BAD144 slice. Also mknod the 'c' partition for freebsd slices, so bad144(8) will have something to work on.
* End of listcan be not marked, fix itache1995-05-151-1/+2
| | | | Submitted by: Kai Vorma <vode@snakemail.hut.fi>
* Fix xterm entry by fallback to vt220 entry,ache1995-05-141-32/+31
| | | | also compact VT* is/rs capabilities to prevent overflowing
* Fix false backspace reportingache1995-05-141-3/+1
|
* Parse ^? correctly nowache1995-05-141-0/+3
|
* Parse ^? now, our termcap use it and some termcaps from otherache1995-05-141-1/+5
| | | | systems use it too
* Added apersand constraint to make sure that the source and destinationdg1995-05-142-4/+4
| | | | | | | registers aren't combined. Reviewed by: Bruce Evans and David Greenman Submitted by: John Dyson
* Fix 3 printf's that had the wrong number of arguments.rgrimes1995-05-141-3/+3
| | | | Submitted by: gibbs
* Prototype for madvise() is missing from sys/mman.hnate1995-05-141-1/+2
| | | | Submitted by: Kai Vorma <vode@snakemail.hut.fi>
* Fix error returning address of local arrayache1995-05-141-1/+2
|
* Add dumponache1995-05-141-1/+1
|
* This patch teaches info to read gzipped files (emacs info alreadyrgrimes1995-05-141-0/+1
| | | | | | | works) so one can gzip files in /usr/share/info and save a few megabytes diskspace. Submitted by: Kai Vorma <vode@snakemail.hut.fi>
* Install uuconv/uuchk with right permissionsache1995-05-142-8/+2
|
* tcpdump is in (1) not (l)gpalmer1995-05-141-3/+3
|
* Fix declaration of palette[] so that fade saver doesn't cause panics.bde1995-05-142-2/+2
|
* Added "doc" to the list of subdirs, so that amdref.info* will getasami1995-05-141-1/+1
| | | | | installed in /usr/share/info...closes my own PR, docs/408 (aaah now I need to figure out how to "close" PRs... ;)....
* After carefully reading three reference documents, and analyzingdg1995-05-142-8/+8
| | | | | | | | | | | | | | | the 802.3 frames generated by the DC21040 (which does automatic padding of less-than-minimum frames) and the frames generated by the 'ed' driver, I've found that there is indeed a bug in the size of "ETHER_MIN_LEN" as reported by several people, John Hay being the most recent. The driver was actually setting the length to 6+6+2+50 (64 bytes), which when adding in the CRC (which is automatically appended to the frame and not included in the length), the minimum frame is 4 bytes larger than it is supposed to be. All of this is confirmed by tcpdump showing 50 bytes of data for minimum frames from the 'ed' cards and 46 bytes from 'de' cards. This analysis has also revealed that there is garbage in the un-filled in portion at the end of the minimum frames from the 'ed' driver; I don't plan to fix this.
* printf -> fprintf when you use a fd arg :-), oops!rgrimes1995-05-141-1/+1
|
* Don't add a slash to the end of _PATH_DEV, it already has one.rgrimes1995-05-141-1/+2
| | | | | | | | Print a final newline to stderr after the scan finishes, only do it at the right place in this version, 1.1.5.1 caused an extra newline if you where not running -s, and it went to stdout instead of stderr. Obtained from: FreeBSD 1.1.5.1
* Add bad144 -s option to scan entire slice of disk.rgrimes1995-05-142-4/+106
| | | | Obtained from: FreeBSD 1.1.5.1 (Just the scan function itself was added)
* Reflect the fact that we do not swap on the first <dmmax> blocks of aphk1995-05-141-1/+4
| | | | swapdev, to protect disklabels and other such magic stuff.
* Updated to work with Poul-Henning's recent kernel changes in the swapdg1995-05-141-12/+0
| | | | | | | | device table layout...basically, don't output the cruft anymore - it is now dynamic. Reviewed by: John Dyson and David Greenman Submitted by: Poul-Henning Kamp
* Updated to work with Poul-Henning's recent changes to the swap devicedg1995-05-141-1/+3
| | | | | | | table. Reviewed by: John Dyson and David Greenman Submitted by: Poul-Henning Kamp
* Changed swap partition handling/allocation so that it doesn'tdg1995-05-1418-302/+118
| | | | | | | | | | | | | | | | | | | | | | | | | | | require specific partitions be mentioned in the kernel config file ("swap on foo" is now obsolete). From Poul-Henning: The visible effect is this: As default, unless options "NSWAPDEV=23" is in your config, you will have four swap-devices. You can swapon(2) any block device you feel like, it doesn't have to be in the kernel config. There is a performance/resource win available by getting the NSWAPDEV right (but only if you have just one swap-device ??), but using that as default would be too restrictive. The invisible effect is that: Swap-handling disappears from the $arch part of the kernel. It gets a lot simpler (-145 lines) and cleaner. Reviewed by: John Dyson, David Greenman Submitted by: Poul-Henning Kamp, with minor changes by me.
* mlink bad144.8 to man8/bad144.8 so we can find the manual page.rgrimes1995-05-141-1/+2
| | | | | | Use /${MACHINE} for MANSUBDIR instead of hardcoded /i386 Obtained from: FreeBSD 1.1.5.1
* Take out special error message for EINVAL...we really do want it to bedg1995-05-141-4/+0
| | | | "invalid argument".
* Don't conditionalize fake-pkg on NO_PACKAGE.asami1995-05-131-5/+1
|
* Fix FtpPasv to not return address of local variable, close PR 399ache1995-05-131-1/+1
| | | | Submitted by: John Capo <jc@irbs.com>
* Fix manpage lies about -Pache1995-05-131-1/+1
|
* Remove XXX comment that I had moved to netstart and forgot to remove fromrgrimes1995-05-131-2/+1
| | | | here.
* Very minor rework to eliminate useage of - operator by checking forrgrimes1995-05-131-3/+6
| | | | | | | | | existance of ${CHROOTDIR}. Remove -k option from make install for building chroot tree, makes it error out early if you forgot to populate the pre-chroot obj tree. Reviewed by: phk
* remove swapinfo.phk1995-05-131-2/+2
|
* Make pstat act like swapinfo if so invoked.phk1995-05-133-32/+55
|
* Change ln -sf to rm -f and ln -s, first one work incorrectlyache1995-05-131-2/+3
| | | | for directories when called second time
* Update other Makefiles to reflect uuconv/uuchk install place changeache1995-05-133-6/+6
|
* Install uuconv/uuchk to /usr/sbinache1995-05-133-5/+6
|
* Add "include".asami1995-05-131-1/+3
|
* Add FORCE_PACKAGE, if this is defined, NO_PACKAGE will be turned off.asami1995-05-131-1/+7
| | | | | | | Ports for which we can't build packages should define NO_PACKAGE but still prepare pkg/* files. The user who really wants a package and clear of the legal problems can say FORCE_PACKAGE from the command line to build a package anyway.
OpenPOWER on IntegriCloud