summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add LDDESTDIR to ld command.swallace1994-09-182-4/+12
| | | | Add -I${DESTDIR}/usr/include to cpp command.
* Put LDDESTDIR before library listing.swallace1994-09-182-4/+4
|
* Add 'rm -f /etc/localtime' before cp to /etc/localtime,ache1994-09-181-1/+2
| | | | I have a link here and got strange results without 'rm'
* added fdwrite -> usr.sbin/fdwritephk1994-09-181-2/+2
|
* Added a missing ${DESTDIR}. The real problem is that stuff related tophk1994-09-181-1/+1
| | | | | floppy formatting is in /sys/i386/isa/fdreg.h, it should be in /usr/include somewhere ??
* Makefile: add ${LDDESTDIR} to linking of boot code so ${DESTDIR}/usr/libswallace1994-09-184-6/+10
| | | | | | | | | is used instead of /usr/lib io.c: add #include <machine/cpufunc.h> as instructed by David Greenman to avoid inb/outb linking errors. NOTE: I just discovered that if GNUC is not used the inline functions will not be expanded from the include file and real inb/outb functions would be needed.
* This commit was generated by cvs2svn to compensate for changes in r2849,phk1994-09-183-0/+341
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * A small program, which can take a file of any size, format, write and verifyphk1994-09-183-0/+341
| | | | | | | | | | | | | | | | | | it onto a bunch of floppies in a semi-intelligent way. Useful for things like: tar cf - . | gzip -9 | fdwrite -d /dev/rfd0.1720 -v Where it will keep asking for floppies until tar is done.
* | libmd no longer built as shared-lib, only static.phk1994-09-181-2/+3
| | | | | | | | Renamed the beforeinstall to test.
* | Parallel-port TCP/IP interface can now take any MTU.phk1994-09-181-63/+74
| |
* | Declare fuction setpassive in file cmds.c void and update correspondingswallace1994-09-182-1/+2
| | | | | | | | prototype declaration in extern.h.
* | Fix from John Kohl:dg1994-09-181-1/+1
| | | | | | | | | | | | | | /usr/libexec/getty doesn't properly interpret the '%d' escape. It tries to use %P to get AM or PM, but instead all it gets is "P". Submitted by: John Kohl
* | Various fixes:dg1994-09-182-6/+22
| | | | | | | | | | | | | | | | | | modload doesn't honor it's -p argument. It also will destroy the input file when you don't specify an output symbol file with -o. Submitted by: John Kohl
* | Kludge to workaround ftp coredumping when password is specified beforedg1994-09-181-1/+1
| | | | | | | | | | | | login in .netrc. Submitted by: John Kohl
* | New man pages from Wilko Bulte.jkh1994-09-182-0/+138
| | | | | | | | | | Reviewed by: jkh Submitted by: Wilko Bulte
* | Fixed the problem where the floppy has incorrectly failed probingjoerg1994-09-173-51/+102
| | | | | | | | | | | | | | | | | | | | | | when the drive had been left on a cylinder > 67 after kernel boot. The most common case for this is booting a kernel that is located on the inner cylinders of a floppy. Also removed all occurences of spinwait(), replaced by DELAY. Nuked a return line saying nothing, this might make Bruce happy 8^) Submitted by: partially by Bruce Evans
* | Fix include path.dg1994-09-172-2/+2
| |
* | Added fdformat utility from 1.1.5.dg1994-09-171-2/+2
| |
* | Updated driver to the 1.1.5 version:dg1994-09-1713-963/+1745
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | date: 1994/05/22 12:35:38; author: joerg; state: Exp; lines: +6 -6 First round of floppy changes. Try making `fd' more robust. New features: . ioctl command for setting the drive type (density etc.); restricted to the super-user . ioctl for getting/seting `drive options'; currently only option is FDOPT_NORETRY: inhibit the usual retries; used when verifying a newly formatted track Fixes: . function prototypes . made all internal functions `static' . cleaned up & corrected .h files . restructured, to make the chaotic function sequence more rational . compiled with -Wall, and cleared all warnings . introduced a mirror for the (write-only) `digital output register', to avoid the current kludge . device probing completed by seeking/recalibrating, and looking for track 0 being found . holding the controller down in reset state while it is idle (and thus saving allot of headaches) . make requests fail that are not a multiple of the (physical) sector size . removed the fixed physical sector size (512 bytes), allowing for any size the controller could handle (128/256/512/1024 bytes) . replaced some silly messages . fixed the TRACE* macro usage, debugging reports should be complete now again (debugging output is HUGE! though) . removed fd_timeout for SEEK command; seeks are always reported by the controller to succeed, since the `success' only refers to the controller's idea of success - there is no hardware line to tell about the seek end (other than the `track 0' line) . catch SENSEI's that report about a `terminated due to READY changed' status - could happen after a controller reset . converted ``hz / <something>'' divide operations to divisors that are powers of two, so gcc can optimize them into shifts . write/format operations are checked against a write-protected medium now *prior* starting the operation . error reports of `invalid command' and `wrong cylinder' will cause shortcuts in the retrier() now . fixed a bug in the retrier() causing bogus block numbers to be reported . fdformat() does care for errors now Known Bugs: . no attempts have been made (yet) to improve the performance . sometimes, bogus ``seek/recalib failed'' messages are logged; this is still a bug in the driver, but it's not harmful since it's usually caught by the retrier() Reviewed by: Submitted by: Obtained from:
* | Include <i386/include/cpufunc.h> to have outb() defined ...se1994-09-171-1/+2
| |
* | Got rid of compiler warnings.dg1994-09-175-23/+16
| |
* | Changed CDOUTSTANDING back to a value of 2 (from 1), since this is now onlyse1994-09-161-2/+2
| | | | | | | | | | an upper limit, not a fixed value (ignoring the host adapter capabilities) as before.
* | Per discussion on the mailing-lists, move LKMs from /sbin to /lkm, andwollman1994-09-168-9/+43
| | | | | | | | | | | | arrange for that directory to get created by mtree. Also, process secure directory after all the others, because the programs there may overlay ones installed from the main part of the tree.
* | Delete unlikely-to-be-used filesystems from GENERIC kernels.wollman1994-09-162-17/+3
| |
* | Added new entrygclarkii1994-09-161-1/+20
| |
* | Added first system entry (mine)gclarkii1994-09-161-1/+25
| | | | | | | | | | | | Reviewed by: Submitted by: Obtained from:
* | Added version string (All new FAQ stuff should have one)gclarkii1994-09-161-1/+1
| |
* | Started cleaning up FAQ directory for 2.0.gclarkii1994-09-165-440/+1495
| | | | | | | | | | | | | | | | | | | | Move old FAQ to FreeBSD-1.1.FAQ Started new FAQ Move old Systems to Systems-1.1.FAQ Started new Systems moved slip-dialup to Slip.FAQ (Needs to be reworked for 2.0) More work to come...
* | Added code for FreeBSD-1.1.5 backwards compatibility.dfr1994-09-161-3/+62
| |
* | Add support for DEBUG_FLAGS. If you say something like:jkh1994-09-165-6/+20
| | | | | | | | | | | | | | make DEBUG_FLAGS=-g2 You can compile something for debugging at debugging level 2. It will also take care not to strip the resulting executable(s).
* | Removed inclusion of pio.h and cpufunc.h (cpufunc.h is included fromdg1994-09-1627-208/+127
| | | | | | | | | | systm.h). Merged functionality of pio.h into cpufunc.h. Cleaned up some related code.
* | Moved include of cdefs.h outside of ifndef KERNEL so it alwayspaul1994-09-161-2/+3
| | | | | | | | gets included.
* | Deal with outw being defined - the declaration clashes.jkh1994-09-162-2/+6
| |
* | Add SYSV shm stuff back to LINT.jkh1994-09-166-12/+12
| | | | | | | | | | chflags noschg /kernel in Makefile.i386 so if our previous kernel was installed by make install, the second won't fall over.
* | Made the kernel compile even without "ether".phk1994-09-164-4/+16
| |
* | Eliminate use of raw control characters in stty commands, make echo's andrgrimes1994-09-162-5/+5
| | | | | | | | | | | | stty commands self consistent. Submitted by: bde
* | Remove all ADJKERNTZ references, now all this stuff in cpu.hache1994-09-161-13/+2
| |
* | CPU_ADJKERNTZ added for resettodtr()ache1994-09-162-4/+8
| |
* | CPU_ADJKERNTZ added to cpu_sysctlache1994-09-162-2/+10
| |
* | KERN_ADJKERNTZ removed from here to cpu_sysctl MACHDEP sectionache1994-09-161-4/+1
| |
* | KERN_ADJKERNTZ moved to MACHDEP sectionache1994-09-161-4/+13
| |
* | Submitted by: Wolfgang Stanglmeier <wolf@dentaro.GUN.de> + <se>se1994-09-169-537/+551
| | | | | | | | | | | | Improved bus probing, symbolic names for registers.. Chip set parameters get dumped for intel PCI chip sets (82424+82434 only, for now).
* | Submitted by: Wolfgang Stanglmeier <wolf@dentaro.GUN.de>se1994-09-164-1331/+2719
| | | | | | | | | | New version with support for the NCR 53c810 and 53c825. Support for WIDE SCSI devices.
* | Fix library dependencies. The clockstuff directory isn't used but Ibde1994-09-151-3/+3
| | | | | | | | fixed the Makefile before I knew that.
* | Unmap hints file when finished with it, so that it can go awaybde1994-09-152-2/+42
| | | | | | | | | | | | | | completely when ldconfig unlinks it. If init is shared, then the referenced unlinked copy of the hints file created by running ldconfig in /etc/rc caused the file system to be unclean after every reboot.
* | Add some prototypes.bde1994-09-154-8/+25
| |
* | Don't exit early if the device is not character special or if thebde1994-09-152-8/+22
| | | | | | | | | | | | | | | | device driver cannot supply a label (real or faked). This allows you to practice using fdisk on disposable media (e.g., "dd count=1 <dev/zero >/tmp/junk; fdisk /tmp/junk", "dd count=1 </etc/passwd >/tmp/fix-up-the-mess; fdisk /tmp/fix-up-the-mess") and allows me to test DOSpartitioning and labelling on floppies.
* | Install osreldate.h with the correct owner, group and mode. It is stillbde1994-09-151-1/+3
| | | | | | | | | | | | created at install time and not compared with the current version, so it can't be installed using install and the timestamp of the target gets clobbered.
* | Install libregex.h with the correct owner, group and mode.bde1994-09-151-2/+3
| |
* | Supply prototypes for some functions that were implicitly declared andbde1994-09-154-7/+11
| | | | | | | | fix the resulting warnings.
OpenPOWER on IntegriCloud