summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* A nice little security fix. Things must be rough in moscow...phk1994-10-221-0/+5
| | | | Submitted by: dima@demos.su (Dima Ruban)
* remove cvsinit from subdir listpst1994-10-221-1/+1
|
* Found one of the show-stoppers in netboot...phk1994-10-221-2/+2
|
* Add xten.jkh1994-10-221-1/+1
|
* Add xtend.jkh1994-10-221-1/+1
|
* Change to use the correct lock file directory.dfr1994-10-221-2/+2
|
* Make the diagnostics a little more useful.phk1994-10-221-2/+3
| | | | | | | | | | | | | | | | | | | | A word of wisdom, don't do this: | cd /usr/bin | for i in * | do | cp $i /tmp/a | gzip -9 < /tmp/a > $i | done It will compress files with multiple links several times. do it this way: | cd /usr/bin | for i in * | do | gunzip -f < $i > /tmp/a | gzip -9 < /tmp/a > $i | done
* I belive imgact_gzip is finally reentrant. It is also a whole lot morephk1994-10-223-1149/+1012
| | | | | | | readable. inflate is now much more general, and is there if anybody feels like making a uncompressing filesystem or something like that (hint hint !)
*-. This commit was generated by cvs2svn to compensate for changes in r3782,jkh1994-10-224-0/+508
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| | * X-10 stuff from 1.1.5.1.jkh1994-10-223-0/+286
| | |
| * | X-10 stuff from 1.1.5.1.jkh1994-10-221-0/+222
| /
* | Add tw.c for the X10 driver.jkh1994-10-221-0/+990
| |
* | This commit was generated by cvs2svn to compensate for changes in r3779,jkh1994-10-229-0/+1228
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * The X-10 demon. From 1.1.5.1.jkh1994-10-229-0/+1228
| |
* | Invoke install.man if USE_IMAKE is set.jkh1994-10-221-1/+4
| |
* | Figured it out, misapplied a patch, ftpd now works again.pst1994-10-221-1/+1
| |
* | Fix broken command parser (fall back 10 yards and scratch head).pst1994-10-221-1/+1
| |
* | Added cvsinit shell script as a runnable command.nate1994-10-223-1/+242
| | | | | | | | Submitted by: CVS mailing list.
* | Some cosmetics in printfs mostly.phk1994-10-222-8/+19
| |
* | Allow '#' in address in rmail argumentsache1994-10-223-12/+21
| | | | | | | | Obtained from: taylor-uucp list
* | Fixed a comment from the previous commit.dg1994-10-221-4/+4
| |
* | Fatal() fixed:ache1994-10-221-4/+3
| | | | | | | | end_dialog() called too early here.
* | Cosmetique: just fix tabs after patch of diff -cb (previous)ache1994-10-221-3/+3
| |
* | ExitSysinstall() fixed:ache1994-10-221-5/+10
| | | | | | | | | | | | use dialog functions properly. don't clear screen with last message on exit(0), I want to see it still. relay on dialog_active properly.
* | Restrict fs_maxfilesize to 2^40, and check against this in ffs_truncate().dg1994-10-222-5/+8
| | | | | | | | | | | | | | | | | | This is part of a bug fix from Kirk McKusick to work around problems in FFS related to the blkno of a 64bit offset not fitting into an int. Note the proper solution would be to deal with 64bit block numbers, but doing this would require sweeping changes; some other day perhaps. Submitted by: Marshall Kirk McKusick
* | Restrict fs_maxfilesize to 2^40; this is part of a bug fix from Kirkdg1994-10-221-0/+2
| | | | | | | | | | | | | | McKusick to work around problems in FFS related to the blkno of a 64bit offset not fitting into an int. Submitted by: Marshall Kirk McKusick
* | Various changes to allow operation without any swapspace configured. Notedg1994-10-223-13/+75
| | | | | | | | | | | | | | | | that this is intended for use only in floppy situations and is done at the sacrifice of performance in that case (in ther words, this is not the best solution, but works okay for this exceptional situation). Submitted by: John Dyson
* | spkrtest addedache1994-10-221-1/+1
| |
* | Reflect the fact that we only have one GENERIC kernel now.phk1994-10-221-47/+17
| |
* | This commit was generated by cvs2svn to compensate for changes in r3762,ache1994-10-222-0/+47
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Speaker driver test scriptache1994-10-222-0/+47
| / | | | | | | Obtained from: FreeBSD 1.1.5.1
* | The wdprobe was too picky.phk1994-10-221-2/+2
| |
* | makeraw(): forget to clear IMAXBEL, set VMIN/VTIMEache1994-10-221-2/+3
| |
* | From: hosokawa@mt.cs.keio.ac.jp (HOSOKAWA Tatsumi)jkh1994-10-211-0/+21
| | | | | | | | | | | | | | | | | | | | | | One of the alpha testers (ETO, Toshihisa <eto@osl.fujitsu.co.jp>) of my APM driver sent me a very small patch to if_ze.c for using IBM PCMCIA Ethernet card II. There are only a few difference between Ethernet card I and II. So we can use them both with this patch. It also includes a patch for PCIC of ThinkPad 230Cs (As long as I remember, this model is available in Japan only. But it is very popular subnote in Japan). Submitted by: hosokawa
* | Fixed a typo and moved a dialog_clear() line.paul1994-10-211-2/+3
| |
* | Fix all the bugs introduced by the source shuffle.paul1994-10-218-120/+195
| | | | | | | | | | | | | | | | All the mbr code now seems to be working. We can build a basic unix disklabel in any existing DOS partition while retaining the existing mbr bootcode or we can install to the whole disk which puts FreeBSD's boot code into the MBR and creates a clean MBR partition table with FreeBSD in partition 0 taking up the whole disk.
* | Fix dialog_clear() to clear windows.ache1994-10-211-0/+1
| |
* | Checking for timeout at several critical calls to ``out_fdc()'' now,joerg1994-10-213-42/+168
| | | | | | | | | | | | | | so i hope i've finally removed all the occasions where the driver got stuck when there's no floppy in the drive. Also attemmpting to omit the error mesage for ``recalib failed'' for the first time, since people tend to be confused about this.
* | Implement line_edit() function (full line editor) which may calledache1994-10-215-171/+184
| | | | | | | | | | externally. Rewrite inputbox/textbox to use this function.
* | Now stage2 runs all the way..phk1994-10-213-8/+14
| |
* | Sync with termcap.srcache1994-10-211-3/+3
| |
* | Remove "mh" capability for -mono familyache1994-10-211-3/+3
| |
* | Add hardcoded cons25-m entry for mono console, if termcap.smallache1994-10-211-9/+33
| | | | | | | | not fit on installation floppy.
* | Second time bugfix, please be carefully.ache1994-10-211-3/+6
| | | | | | | | | | | | Use dialog functions in Fatal only if dialog_active, else use fprintf(stderr, because it may be called before dialog initialization
* | ATTENTION!phk1994-10-211-9/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | From now on, >all< swapdevices must be activated with "swapon". If you havn't got it, add this line to /etc/fstab: /dev/wd0b none swap sw 0 0 ne sec Reason: We want our GENERIC* kernels to have a large selection of swap-devices, but on the other hand, we don't want to use a wd0b as swap when we boot of a floppy. This way, we will never use a unexpected swapdevice. Nothing else has changed.
* | Bug fixes from John Brezak.wollman1994-10-211-3/+3
| |
* | Latest changes from me. Over to you Paul...phk1994-10-217-154/+164
| |
* | Make my ALLDEVS kernel compile (basically, LINT minus a lot of options).wollman1994-10-2110-29/+30
| | | | | | | | This involves fixing a few things I broke last time.
* | Make my ALLDEVS kernel compile (basically, LINT minus a lot of options).wollman1994-10-213-3/+12
| |
* | LINT: vastly restructured so that it's actually useful for somethingwollman1994-10-216-441/+1098
| | | | | | | | Makefile.i386: make definition of STRIP unconditional.
OpenPOWER on IntegriCloud