]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
31 years agoImport NetBSD version of dbsym (below is rlog of there version), and add
rgrimes [Sun, 26 Sep 1993 16:40:41 +0000 (16:40 +0000)]
Import NetBSD version of dbsym (below is rlog of there version), and add
$Id$ to Makefile.

----------------------------
revision 1.8
date: 1993/08/02 17:57:02;  author: mycroft;  state: Exp;  lines: +5 -0
Add RCS identifiers, remove some completely useless RCS logs and patchkit
headers, and a few other insignificant changes.
----------------------------
revision 1.7
date: 1993/07/19 16:50:10;  author: mycroft;  state: Exp;  lines: +43 -15
Kitchen sink version of dbsym.

-f      force; don't complain if db_symtab is missing
-g      debugging; include line number and function info
-x      remove local symbols
-T addr specify load address (necessary to determine file positions)
----------------------------
revision 1.6
date: 1993/07/18 10:34:52;  author: mycroft;  state: Exp;  lines: +1 -1
Hmmm.  I suppose text_Adr really should be an int...
----------------------------
revision 1.5
date: 1993/07/18 09:44:12;  author: mycroft;  state: Exp;  lines: +12 -6
Add -T option to specify load address of kernel (like ld); default to KERNBASE
for compatibility.
----------------------------
revision 1.4
date: 1993/07/12 18:01:51;  author: brezak;  state: Exp;  lines: +19 -2
Changes for GCC2 generated symbols.
----------------------------
revision 1.3
date: 1993/07/11 08:43:34;  author: cgd;  state: Exp;  lines: +2 -2
if no symbols present, don't complain, and exit with 0 exit status.
that way we can use dbsym from kernel makefiles and actually pay attention
to its errors...
----------------------------
revision 1.2
date: 1993/06/18 06:52:03;  author: cgd;  state: Exp;  lines: +3 -1
convert magic numbers to network byte order, and attendent changes
----------------------------
revision 1.1
date: 1993/03/21 09:59:19;  author: cgd;  state: Exp;
branches:  1.1.1;
Initial revision
----------------------------
revision 1.1.1.1
date: 1993/03/21 09:59:20;  author: cgd;  state: Exp;  lines: +0 -0
initial import of 386bsd-0.1 sources

31 years agoFixed spelling errors
jkh [Sat, 25 Sep 1993 15:50:43 +0000 (15:50 +0000)]
Fixed spelling errors

31 years ago * Revision 1.30 93/09/24 18:43:31 davidg
dg [Sat, 25 Sep 1993 01:50:15 +0000 (01:50 +0000)]
 * Revision 1.30  93/09/24  18:43:31  davidg
 * fix bug where Compex boards ident themselves as 8003E's and the
 * 16bit override wasn't working

31 years agoEnable SYSVSHM, and set SHMMAXPGS=64.
rgrimes [Fri, 24 Sep 1993 21:01:11 +0000 (21:01 +0000)]
Enable SYSVSHM, and set SHMMAXPGS=64.

31 years ago>From: rich@id.slip.bcm.tmc.edu.cdrom.com (Rich Murphey)
rgrimes [Fri, 24 Sep 1993 21:00:29 +0000 (21:00 +0000)]
>From: rich@id.slip.bcm.tmc.edu.cdrom.com (Rich Murphey)
Date: Sun, 12 Sep 1993 18:19:05 -0500
This will allow you to compile and run a freebsd kernel with shared
memory support.  I haven't tested the shm*() calls yet.

You run out of page table descriptors if you specify 4Mb of sharable
memory (SHMMAXPGS=1024).  I don't know what the limit is, but
SHMMAXPGS=64 works.   Rich

31 years ago>From: "J.T. Conklin" <jtc@sun-lamp.cs.berkeley.edu>
rgrimes [Fri, 24 Sep 1993 17:51:10 +0000 (17:51 +0000)]
>From: "J.T. Conklin" <jtc@sun-lamp.cs.berkeley.edu>
Date: Fri, 24 Sep 1993 10:19:20 -0700

Fixed bug that was reported (with patch) on gnu.utils.bug.
Immediate operands of the pushw instruction were being output as 32
bits, rather than the 16 bits they were supposed to be.

31 years agoAdded libmalloc to top level Makefile
rgrimes [Fri, 24 Sep 1993 17:20:35 +0000 (17:20 +0000)]
Added libmalloc to top level Makefile

31 years agoThis is gnu lib malloc from NetBSD verbatium, here is the version info
rgrimes [Fri, 24 Sep 1993 13:03:39 +0000 (13:03 +0000)]
This is gnu lib malloc from NetBSD verbatium, here is the version info
that Chris created:
this version of GNU malloc was obtained from prep.ai.mit.edu on
9/22/1993.  There was no version noted.

31 years agoEntries so RPC servers are started.
jtc [Thu, 23 Sep 1993 17:41:08 +0000 (17:41 +0000)]
Entries so RPC servers are started.

31 years ago>From: bde@kralizec.zeta.org.au (Bruce Evans)
rgrimes [Thu, 23 Sep 1993 15:22:57 +0000 (15:22 +0000)]
>From: bde@kralizec.zeta.org.au (Bruce Evans)
Date: Thu, 16 Sep 93 01:35:10 +1000
Julian writes:

>In fact DEVIDLE and FINDWORK ended up being basically equivalent.
>the bit I wonder about, is the returning of 0.. What (other than
>another request from somewhere else in the kernel) is going to start
>work on the next item on the queue?

I think removing FINDWORK would make things clearer.

Nothing much is going to start work on the next item.  However, it is
pointless to continue processing the queue for the same unready drive.
Aborting all reads and trying harder to perform all writes would be
better.
Julian writes.

> no, actually it should be:
> fdt = fd_data[FDUNIT(minor(dev))].ft;

Fixed.
From: bde@kralizec.zeta.org.au (Bruce Evans)
Date: Thu, 16 Sep 93 22:56:01 +1000
The fd driver reported the wrong cylinder/head/sector numbers after an
error (ST3 is only valid after a sense-drive command), and didn't report
fs block numbers (diskerr was not used).

There was an old problem with writes to block fd devices.   Try this:

1. write protect floppy in fd0.
2. tar cf /dev/fd0a /dev/null.  Repeat a few times.  Later writes tend to
   terminate earlier.
   3. un-write protect floppy.
   4. repeat step 2.  The writes tend to return 0, 2048, 4096, ... and then
      succeed.

This was caused by a bug in vfs__bios.c.  (The bug is fixed in NetBSD's
vfs_bio.c.)  fd.c sets bp->b_resid to nonzero after an error.  vfs__bios.c
was not initializing bp->b_resid.  This causes some writes to terminate
early (e.g., writes to block devices; see spec_write()).

Related funnies:

1. Nothing tries to write the residual bytes.
2. The wd driver sets bp->b_resid to 0 after an error, so there's no
   way anything else could write the residual bytes.
3. I use the block fd device for tar because the raw device seemed to
   have more bugs long ago, and because it ought to be able to handle
   buffering more transparently (I don't want to have to know the
   device size).  But spec_write() always uses the size BLKDEV_IOSIZE
   == 2048 which is too small.  For disks it should use the size of
   one track (rounded down to meet the next track boundary or the i/o
   size).  Here it would help if the DIOCGPART ioctl worked.  But
   DIOCGPART is not implemented for floppies, and the disk size is
   ignored except for partitions of type FS_BSDFFS.

Bruce

31 years agorewrote interrupt code to be cleaner, fixed up some other parts
dg [Wed, 22 Sep 1993 17:47:43 +0000 (17:47 +0000)]
rewrote interrupt code to be cleaner, fixed up some other parts
to make it easier to add future board types.

31 years agoIncreaed the fixed static buffer sizes and maximum hunk size that
rich [Wed, 22 Sep 1993 16:51:03 +0000 (16:51 +0000)]
Increaed the fixed static buffer sizes and maximum hunk size that
otherwise causes the XFree86 1.3 patch set to fail.

31 years agoadded to install_notes instructions for loading distribtuion
alm [Wed, 22 Sep 1993 07:38:18 +0000 (07:38 +0000)]
added to install_notes instructions for loading distribtuion
files from a MS-DOS partition.
Minor cleanup:
fixed spelling error in inst1.install
capitalized sentences in kc.profile
reworded initial load_fd options

31 years agoBring README into sync with Julians latest README (1 line deleted which was
rgrimes [Tue, 21 Sep 1993 20:26:02 +0000 (20:26 +0000)]
Bring README into sync with Julians latest README (1 line deleted which was
a reference to README.AHA1742)

31 years agoExtended load_fd() to support reading from the first Primary DOS
alm [Tue, 21 Sep 1993 10:24:42 +0000 (10:24 +0000)]
Extended load_fd() to support reading from the first Primary DOS
partition of the boot disk.  So we have yet another medium via
which to load the FreeBSD distribution files.  load_fd() has
options for listing and (if reading from the C:  drive) changing
directories.

load_fd's notation assumes that the first Primary partition on
disk is the DOS drive C: (since this and only this one is mounted
by install).  Otherwise, the notation may be a bit confusing.
We'll know the assumption is bad if people complain about
not finding files on their "C:" drive...

Added a device file existence check to kc.profile.

31 years agoAdded BSD.local.dist to MTREE files so that it gets installed in /etc/mtree
rgrimes [Tue, 21 Sep 1993 08:14:32 +0000 (08:14 +0000)]
Added BSD.local.dist to MTREE files so that it gets installed in /etc/mtree

31 years agoIncreased pseudo-device bpfilter from 1 unit to 4 units
rgrimes [Tue, 21 Sep 1993 06:16:07 +0000 (06:16 +0000)]
Increased pseudo-device bpfilter from 1 unit to 4 units

31 years agoIncrease the number of ptys to 12, puts the kernel sizes very close to
rgrimes [Tue, 21 Sep 1993 06:12:20 +0000 (06:12 +0000)]
Increase the number of ptys to 12, puts the kernel sizes very close to
the limit.

31 years ago>From julian@jules.DIALix.oz.au Fri Sep 10 22:58:30 1993
rgrimes [Tue, 21 Sep 1993 05:30:35 +0000 (05:30 +0000)]
>From julian@jules.DIALix.oz.au Fri Sep 10 22:58:30 1993
>Date: Sat, 11 Sep 93 12:59:39 +0800

1/ fix bug where cd0a was unusable because it was compared against
the number of 2k blocks not the number of 512byte blocks.. gave
an error for all reads past 1/4 way through the disk (cd0d was ok).

2/ fix open code so that it now notices if a disk has been changed
and updates the disklabel.

3/ use the new error handling code from st.c

4/ start adding stuff to get ready for using cd_scsi_cmd from
cd_start (like is done in st and sd)

5/ more general cleanups including making dmesg report
sector size of disk.. (believe it or not SUN drives use 512 byte)

31 years agoNow works with/without obj directories
nate [Mon, 20 Sep 1993 23:47:51 +0000 (23:47 +0000)]
Now works with/without obj directories

31 years agoIncrease the timeout from 2000 counts to 6000 counts, reported by someone
rgrimes [Mon, 20 Sep 1993 06:28:13 +0000 (06:28 +0000)]
Increase the timeout from 2000 counts to 6000 counts, reported by someone
on the net (I lost the mail).  This should fix some units not showing up
during probes.

31 years agoThe dynamically allocated struct's where not getting properly initialized
rgrimes [Mon, 20 Sep 1993 06:27:06 +0000 (06:27 +0000)]
The dynamically allocated struct's where not getting properly initialized
as malloc memory is NOT zerod.  Added bzero's after the malloc calls
to make sure that things are initialized.

>From Julian Elischer

31 years ago1) Install now creates a DOS partition for the first (and only the
alm [Sun, 19 Sep 1993 20:45:10 +0000 (20:45 +0000)]
1) Install now creates a DOS partition for the first (and only the
first) Primary (un-Extended) DOS partition, providing /dev/xx0h
is available.  It is mounted on /dos by default.  The /etc/fstab
entry omits the dump and fsck fields, i.e.:
/dev/xx0h /dos pcfs rw

The Secondary DOS partition is not used (System ID 0xF2), because I don't
know what that is.

2) Fixed default sizes so that if someone attempts to install BSD on a 24 Mb
partition by accepting defaults, they don't end up with a 1 Mb /usr
partition (up to USRMIN Mb's).  In this case, all space is split between
swap and root.

TODO:
1) Extend load_fd() to support loading distribution files directly from
the DOS partition of the hard disk.

2) Provide translated parameters to the install program (maybe
add an option to fdisk).  Currently, the true geometry is used as
default, which is inappropriate for coexistence with DOS.

3) Support installing on multiple or secondary disks.

31 years agoFinally stuck a version number on this thing! :)
jkh [Sun, 19 Sep 1993 01:52:33 +0000 (01:52 +0000)]
Finally stuck a version number on this thing! :)

31 years agoAdded /var/run to CPIO_DIRS
alm [Sun, 19 Sep 1993 01:21:15 +0000 (01:21 +0000)]
Added /var/run to CPIO_DIRS

31 years agoAdded /etc/remote to CPIO files.
alm [Sat, 18 Sep 1993 08:23:19 +0000 (08:23 +0000)]
Added /etc/remote to CPIO files.

31 years agoAdded /usr/distbin to PATH
alm [Sat, 18 Sep 1993 08:20:32 +0000 (08:20 +0000)]
Added /usr/distbin to PATH

31 years agoAdded code for doing % sequence expansion, added new @unexec command.
jkh [Sat, 18 Sep 1993 03:39:50 +0000 (03:39 +0000)]
Added code for doing % sequence expansion, added new @unexec command.

31 years agoDoc new % sequence expansion for command execution.
jkh [Sat, 18 Sep 1993 03:39:21 +0000 (03:39 +0000)]
Doc new % sequence expansion for command execution.
Fixed bad verbose message.

31 years agoMake sure permissions on registry location are readable by pkg_info.
jkh [Sat, 18 Sep 1993 03:38:48 +0000 (03:38 +0000)]
Make sure permissions on registry location are readable by pkg_info.
Add new % sequence expansion for command execution.

31 years ago>From: Drew Hess <dhess@CS.Stanford.EDU>
rgrimes [Sat, 18 Sep 1993 00:00:16 +0000 (00:00 +0000)]
>From: Drew Hess <dhess@CS.Stanford.EDU>
>Date: Thu, 16 Sep 1993 23:35:48 -0700 (PDT)
There is a typo in disktab in the NetBSD-0.9 distribution.  This may be
already fixed in NetBSD-current, but it's not in any of the source that I've
sup'ed.
line 9 reads:
#       sc      #sectors/cylinder, nc*nt default
should read:
#       sc      #sectors/cylinder, ns*nt default

31 years agoAdded the following to the opening statement of install:
alm [Fri, 17 Sep 1993 09:05:52 +0000 (09:05 +0000)]
Added the following to the  opening statement of install:

Before starting, it is important to know your hard disk's geometry
(i.e., number of cylinders, heads and sectors/track).  If installing
FreeBSD on the same disk as another operating system, then the
two systems should use the same geometry.  In particular, FreeBSD's
default geometry is inappropriate for MS-DOS.  So in this case, the
DOS geometry should be used instead.

[This seems to be true for SCSI disks.   What about IDE?  With the new
boot blocks, can we ignore the disks true geometry??]

31 years agoadded /var/spool and /var/spool/lock to CPIO_DIRS. These are needed by
alm [Fri, 17 Sep 1993 06:41:45 +0000 (06:41 +0000)]
added /var/spool and /var/spool/lock to CPIO_DIRS.  These are needed by
both tip and kermit.

31 years agoThe load_fd() now initializes the `interactive' variable to -i instead
alm [Thu, 16 Sep 1993 00:45:34 +0000 (00:45 +0000)]
The load_fd() now initializes the `interactive' variable to -i instead
of -v (my fault).
The extract() command now rm's /tmp/cat, not /bin/cat (my fault).

31 years agoEnabled floppy drive ioctl's so that disklabel on a floppy is now
rgrimes [Wed, 15 Sep 1993 23:29:11 +0000 (23:29 +0000)]
Enabled floppy drive ioctl's so that disklabel on a floppy is now
quite and works correctly.  This is derived from notes in Bruce Evans
lattest patches to fd.c:

>From: bde@kralizec.zeta.org.au (Bruce Evans)
>Subject: fixes for fd driver

6. I picked up some code posted the other day to implement label ioctls.
   Now `disklabel fd0' works.  See a comment for how to modify conf.c.

31 years agoRemoved $Log$ section and patch kit headers. And here is the full
rgrimes [Wed, 15 Sep 1993 23:27:45 +0000 (23:27 +0000)]
Removed $Log$ section and patch kit headers. And here is the full
message for Bruces changes:

>From: bde@kralizec.zeta.org.au (Bruce Evans)
>Subject: fixes for fd driver

I think I've fixed some bugs in the 0.2.4 fd driver.

1. The main cause of hangs was that there was no timeout for seeks.  So
   attempting i/o with no floppy in the drive hung iff a seek was required.

2. Opens of unattached drives were allowed.  The kernel usually paniced
   soon after due to a bad pointer.

3. Some timeout functions ran at splclock() instead of splbio().  This
   may not have mattered.

4. The state machine was left in a funny state after a timeout.

5. Some function headers were new-style.

6. I picked up some code posted the other day to implement label ioctls.
   Now `disklabel fd0' works.  See a comment for how to modify conf.c.

31 years ago>From: paul@u.tvt.se (Paul Pries)
rgrimes [Wed, 15 Sep 1993 23:03:21 +0000 (23:03 +0000)]
>From: paul@u.tvt.se (Paul Pries)
>Subject: Bad bug in kbdtables.h [FreeBSD]

I found a bug in /sys/i386/isa/kbdtables.h which contain the
different keyboard layouts for syscons.  This regards all tables exept
the Danish and US.  When compiling the kernel with any other keymapping
than Danish or none at all (US), you get an error that 'key_map' is undefined.
This is because there is a typo in the name of the struct containing
the tables, keymap intead of key_map.

31 years agoInclude <rpc/rpc.h> instead of various individual <rpc/*.h> header files
jtc [Wed, 15 Sep 1993 20:27:25 +0000 (20:27 +0000)]
Include <rpc/rpc.h> instead of various individual <rpc/*.h> header files
to compile with the newly prototyped rpc headers.

31 years agoFix grammar to eliminate support for unary minus expressions -- they
jtc [Tue, 14 Sep 1993 22:49:52 +0000 (22:49 +0000)]
Fix grammar to eliminate support for unary minus expressions -- they
weren't supported, they aren't standard, and they caused expr to dump
core.

31 years ago>From: kuku@acds.physik.rwth-aachen.de (Christoph Kukulies)
rgrimes [Tue, 14 Sep 1993 21:42:14 +0000 (21:42 +0000)]
>From: kuku@acds.physik.rwth-aachen.de (Christoph Kukulies)
Comment was wrong about what entries get made for vtyNN, it
is 0-b, not 00-12.

31 years agoAdded option to overwrite an existing partition during install.
alm [Tue, 14 Sep 1993 21:26:32 +0000 (21:26 +0000)]
Added option to overwrite an existing partition during install.
Added notes about ob-bs to install_notes.

31 years agoFixed broken -t flag; thanks Rich!
jkh [Tue, 14 Sep 1993 19:53:01 +0000 (19:53 +0000)]
Fixed broken -t flag; thanks Rich!

31 years agoBruce's multifarious patches for the floppy driver (not well tested, but
jkh [Tue, 14 Sep 1993 19:34:32 +0000 (19:34 +0000)]
Bruce's multifarious  patches for the floppy driver (not well tested, but
since what we have is crap as it is, it can't do much worse!).

31 years agoMake MOUNT be MOUNT? so I can easily override it for building 2 floppies
rgrimes [Tue, 14 Sep 1993 04:14:30 +0000 (04:14 +0000)]
Make MOUNT be MOUNT? so I can easily override it for building 2 floppies
concurrently now that the floppy driver works good enought to do this!

31 years agoThe install disks now print the partition table data with
alm [Tue, 14 Sep 1993 02:36:09 +0000 (02:36 +0000)]
The install disks now print the partition table data with
offsets and sizes in units of cylinders.  This will help
those who want to install FreeBSD between two existing
partitions.

Faked notes on installing via Kermit

31 years agoRemoved DOS floppy build stuff, as this was just a poor idea that needs
rgrimes [Tue, 14 Sep 1993 00:59:49 +0000 (00:59 +0000)]
Removed DOS floppy build stuff, as this was just a poor idea that needs
a much better solution.

31 years agoFixed missing newline at end of file.
rgrimes [Tue, 14 Sep 1993 00:54:19 +0000 (00:54 +0000)]
Fixed missing newline at end of file.

31 years agoBrought install_notes up to date.
alm [Mon, 13 Sep 1993 13:37:21 +0000 (13:37 +0000)]
Brought install_notes up to date.

31 years agoFixed missing device name arguments to fdisk commands, this was the
rgrimes [Mon, 13 Sep 1993 12:23:38 +0000 (12:23 +0000)]
Fixed missing device name arguments to fdisk commands, this was the
cause of silient failure on scsi disk installs with the new floppies.

31 years agoRenumber the section starting at the duplicate 5. section. Changed
rgrimes [Mon, 13 Sep 1993 07:53:28 +0000 (07:53 +0000)]
Renumber the section starting at the duplicate 5. section.  Changed
reference to RELNOTES.FreeBSD to not have an absolute path on it since
these appear in several places!

31 years agoExplain purpose and original of "dos" floppy.
alm [Mon, 13 Sep 1993 07:26:39 +0000 (07:26 +0000)]
Explain purpose and original of "dos" floppy.

31 years agoChanged ultrastore 14F/34F driver to irq 14.
rgrimes [Mon, 13 Sep 1993 03:43:53 +0000 (03:43 +0000)]
Changed ultrastore 14F/34F driver to irq 14.

31 years agoPut the uha0 controller at its proper default IRQ of 14! Thanks Warner!
rgrimes [Mon, 13 Sep 1993 03:15:26 +0000 (03:15 +0000)]
Put the uha0 controller at its proper default IRQ of 14!  Thanks Warner!

31 years agoFixed the extract() command which I had broken attempting to implement
alm [Mon, 13 Sep 1993 02:23:55 +0000 (02:23 +0000)]
Fixed the extract() command which I had broken attempting to implement
it without cat.  It now requires cat again (no way around it unless
gunzip can accept arbitrary filename suffixes).

31 years agoMore file shuffling between floppies, needed to get rm on filesystem
rgrimes [Mon, 13 Sep 1993 00:00:16 +0000 (00:00 +0000)]
More file shuffling between floppies, needed to get rm on filesystem
floppy.  Removed duplicates from DOS floppy.

31 years agoSince reboot is now installed, use it if the fsck fails
rgrimes [Sun, 12 Sep 1993 23:55:35 +0000 (23:55 +0000)]
Since reboot is now installed, use it if the fsck fails

31 years agoChange the "Insert secound installation floppy" to
rgrimes [Sun, 12 Sep 1993 22:44:37 +0000 (22:44 +0000)]
Change the "Insert secound installation floppy" to
"Insert the cpio installation floppy" to reduce confusion as to what floppy
is wanted.

31 years ago>From: rich@id.slip.bcm.tmc.edu.cdrom.com (Rich Murphey)
rgrimes [Sun, 12 Sep 1993 21:56:50 +0000 (21:56 +0000)]
>From: rich@id.slip.bcm.tmc.edu.cdrom.com (Rich Murphey)

I'd like to be able to say:

options         "SYMTAB_SPACE=78000"    # Kernel debugger symbol table size

If this seems a reasonable interim solution for freebsd, here's the
patch.. Rich

31 years agoRemoved /usr/contrib/bin from PATH
rgrimes [Sun, 12 Sep 1993 21:40:19 +0000 (21:40 +0000)]
Removed /usr/contrib/bin from PATH

31 years agoWhoops - got the exclude flag wrong, try again.
jkh [Sun, 12 Sep 1993 20:56:40 +0000 (20:56 +0000)]
Whoops - got the exclude flag wrong, try again.

31 years agoFixed an embarassing bug with @owner, @mode & @group
jkh [Sun, 12 Sep 1993 20:45:53 +0000 (20:45 +0000)]
Fixed an embarassing bug with @owner, @mode & @group

31 years agoAdded and doc'd -X flag to pkg_create that allows you to specify an exclude
jkh [Sun, 12 Sep 1993 20:45:31 +0000 (20:45 +0000)]
Added and doc'd -X flag to pkg_create that allows you to specify an exclude
list for the final package.

31 years agoOnly put var and var/tmp in the cpio archive floppy, do not really need
rgrimes [Sun, 12 Sep 1993 20:37:05 +0000 (20:37 +0000)]
Only put var and var/tmp in the cpio archive floppy, do not really need
the whole /var tree at this time.

31 years agoadded a couple echo's
alm [Sat, 11 Sep 1993 08:55:41 +0000 (08:55 +0000)]
added a couple echo's

31 years agoForgot to export PATH
alm [Sat, 11 Sep 1993 08:41:03 +0000 (08:41 +0000)]
Forgot to export PATH

31 years agoMentioned using fdisk to change active partition on multi-os systems
alm [Sat, 11 Sep 1993 08:32:50 +0000 (08:32 +0000)]
Mentioned using fdisk to change active partition on multi-os systems
if os-bs is not installed.

31 years agoSilence cp diagnostics for dos floppy install in case
alm [Sat, 11 Sep 1993 08:17:00 +0000 (08:17 +0000)]
Silence cp diagnostics for dos floppy install in case
directories exist (e.g., after running os-bs).

31 years agoremove \'s from where they shouldn't be.
alm [Sat, 11 Sep 1993 08:12:28 +0000 (08:12 +0000)]
remove \'s from where they shouldn't be.

31 years agoQuick checkin between network hangs...
alm [Sat, 11 Sep 1993 08:08:11 +0000 (08:08 +0000)]
Quick checkin between network hangs...
Restored trap calls in profile, and reset trap 2 at end of fsck.
Make installation of fourth floppy an option.

31 years agoConverted many occurances of multiple spaces to tabs to save bytes
rgrimes [Sat, 11 Sep 1993 06:03:37 +0000 (06:03 +0000)]
Converted many occurances of multiple spaces to tabs to save bytes
any way I can.  Converted all echo "" to be just echo

Removed sync call that seems to hang due to fd/wd driver interaction..
Now rm /.profile before the cpio floppy is copied in, this should fix
a bugger I was having with an open shell script that gets over written.

31 years agotar ball names converted from the form x.tar.gz.xx to x_tgz.xx so the
rgrimes [Sat, 11 Sep 1993 00:10:57 +0000 (00:10 +0000)]
tar ball names converted from the form x.tar.gz.xx to x_tgz.xx so the
DOS folks are happy.

31 years agoPut bin/df back on the filesystem floppy since there is room for it
rgrimes [Fri, 10 Sep 1993 23:57:00 +0000 (23:57 +0000)]
Put bin/df back on the filesystem floppy since there is room for it
after all.  Removed it from DOS floppy.
Added COPYRIGHT to DOS floppy since it does have *BSD binaries on it!
Fixed missing ; \ when creating dev entries on filesystem floppy
Fixed rm in wrong directory, please don't rm in the DESTDIR area!!

31 years agoRemoved volatile functions which were causing grief in the system, since
nate [Fri, 10 Sep 1993 22:14:37 +0000 (22:14 +0000)]
Removed volatile functions which were causing grief in the system, since
volatile functions are undefined, and there is no reason to have them
in our kernel.

31 years agoThis is just to shut the compiler up
rgrimes [Fri, 10 Sep 1993 20:39:13 +0000 (20:39 +0000)]
This is just to shut the compiler up
===================================================================
RCS file: /a/cvs/386BSD/src/sys/i386/i386/vm_machdep.c,v
retrieving revision 1.3
diff -c -r1.3 vm_machdep.c
*** 1.3 1993/07/27 10:52:21
--- vm_machdep.c 1993/09/10 20:12:53
***************
*** 179,184 ****
--- 179,186 ----
  #endif
   splclock();
   swtch();
+  /*NOTREACHED*/
+  for(;;);
  }

  cpu_wait(p) struct proc *p; {

31 years agoFixed a small typo in an error printf.
ats [Fri, 10 Sep 1993 18:03:21 +0000 (18:03 +0000)]
Fixed a small typo in an error printf.

31 years agoFrom guido@gvr.win.tue.nl Wed Sep 8 13:34:16 1993
rgrimes [Fri, 10 Sep 1993 16:59:16 +0000 (16:59 +0000)]
From guido@gvr.win.tue.nl Wed Sep  8 13:34:16 1993
That is because TIOCMGET was broken. Yes...this is known for some time
and no, we (Bruce and me) never posted it. Why? Simply because we choose
to post fixes when we fixed most of the bugs.

Anyway..now that the slip problems are coming, here is a fix for
correct TIOCMGET behaviour.

-Guido
Note: this should be tested first (Rich?).  Tested by rgrimes

31 years agoMoved db_end_line after db_printf to eliminate forward reference and
rgrimes [Thu, 9 Sep 1993 23:03:24 +0000 (23:03 +0000)]
Moved db_end_line after db_printf to eliminate forward reference and
shut up the compiler about prototype mismatch.

31 years agoCombined some conditional statements now that `test' works correctly.
alm [Thu, 9 Sep 1993 14:04:20 +0000 (14:04 +0000)]
Combined some conditional statements now that `test' works correctly.

31 years agoMostly cosmetic changes.
alm [Thu, 9 Sep 1993 13:52:36 +0000 (13:52 +0000)]
Mostly cosmetic changes.
Added notes installing os-bs.

31 years agoThe scsi cd.c driver is now fully dynamic. You can change the lines
rgrimes [Thu, 9 Sep 1993 07:18:52 +0000 (07:18 +0000)]
The scsi cd.c driver is now fully dynamic.  You can change the lines
in your config file from:
device          cd0
device          cd1
...
device          cdn
to either
device          cd0
or
psuedo-device   cd0

The driver now dynamically allocates all per unit dependent structs, so it
will never run out of units (okay, so now we need 32 bit device major/minor
numbers!).  It will allocate unit numbers as it needs them.

31 years agoAs of this revision, all known bugs have been fixed. Some of the fixes include:
dg [Thu, 9 Sep 1993 07:01:23 +0000 (07:01 +0000)]
As of this revision, all known bugs have been fixed. Some of the fixes include:

1) fixed 3c503 lock-up if the thinwire cable was disconnected at boot time
2) 8013EBT boards now work (quite well!) in 16bit/16k mode
3) ED_NO_DOUBLE_BUFFERING flag now works
4) slightly higer performance (about 3%) with 16bit WD/SMC boards
5) support for WD8013WC (10BaseT) boards

   Additionally, the probe code has been reorganized to be much cleaner. This
revision of the driver is 1.25. The release notes have been updated as well.

31 years agoChanged the delay from 100 seconds to 20 seconds if you don't have scsi
rgrimes [Thu, 9 Sep 1993 01:30:46 +0000 (01:30 +0000)]
Changed the delay from 100 seconds to 20 seconds if you don't have scsi
dump code.

31 years agoChanged the pg("ptdi> %x") to a printf and then a panic, since we are
rgrimes [Thu, 9 Sep 1993 01:11:41 +0000 (01:11 +0000)]
Changed the pg("ptdi> %x") to a printf and then a panic, since we are
going to panic shortly after this anyway.  Destroys less state, and
keeps the machine from waiting for someone to smash the return key
a few times before it panics!

31 years agoFrom: baukno@login.dkuug.dk (S|ren Schmidt)
rgrimes [Thu, 9 Sep 1993 00:32:25 +0000 (00:32 +0000)]
From: baukno@login.dkuug.dk (S|ren Schmidt)
Subject: Patches to syscons/wd

Man pages for keyboard & screen (using syscons)

31 years agoRudementary README
jkh [Wed, 8 Sep 1993 23:46:04 +0000 (23:46 +0000)]
Rudementary README

31 years agoFixed some language + error where 3 floppies are called for in beginning
jkh [Wed, 8 Sep 1993 22:51:49 +0000 (22:51 +0000)]
Fixed some language + error where 3 floppies are called for in beginning
and 4 later.

31 years agoFrom: ccml@hippo.ru.ac.za (Mike Lawrie)
rgrimes [Wed, 8 Sep 1993 22:27:59 +0000 (22:27 +0000)]
From: ccml@hippo.ru.ac.za (Mike Lawrie)
Subject: Install.notes for FreeBSD-1.0-G
Here is the hacked install notes file for FreeBSD-1.0-GAMMA.

Please get someone to check the few points marked <<please check>>.
From: rgrimes

Checked the <<please check>>, and cleaned up some details.

31 years agoSoren's latest syscons changes.
jkh [Wed, 8 Sep 1993 22:11:48 +0000 (22:11 +0000)]
Soren's latest syscons changes.

31 years agoMade copy of sys/i386/floppy relative instead of abosolute path
rgrimes [Wed, 8 Sep 1993 21:19:03 +0000 (21:19 +0000)]
Made copy of sys/i386/floppy relative instead of abosolute path

31 years agoFirst pass fixes to start using malloc structures for all per unit
rgrimes [Wed, 8 Sep 1993 21:04:32 +0000 (21:04 +0000)]
First pass fixes to start using malloc structures for all per unit
data.  cd_data is now malloced on a per unit basis.

Protected all if ({scsi,cd}_debug).... with #ifdef CDDEBUG to reduce the
the size of the kernel when not debugging.

31 years agoAdding missing sync after reading fourth install floppy.
alm [Wed, 8 Sep 1993 20:49:13 +0000 (20:49 +0000)]
Adding missing sync after reading fourth install floppy.
Added /usr/distbin to path

31 years ago>From Theo Derradt
rgrimes [Wed, 8 Sep 1993 19:29:54 +0000 (19:29 +0000)]
>From Theo Derradt
This is a machine specific include, it belongs in the machine specific
directory.

31 years agoFrom michaele@vice.ico.tek.com Wed Sep 8 09:50:45 1993
rgrimes [Wed, 8 Sep 1993 17:38:05 +0000 (17:38 +0000)]
From michaele@vice.ico.tek.com Wed Sep  8 09:50:45 1993
Subject: Re: Some small errors in GAMMA
4.      Move printf("\n"); at line 491 in "/sys/i386/isa/sio.c" to after
        COM_MULTIPORT block at line 512.
From rgrimes:
The above would cause the word (multiport) with out a new line to
appear after the uart type message if you had COM_MULTIPORT enabled.

31 years agoAdded bsd.prog.mk so that make maninstall would work
rgrimes [Wed, 8 Sep 1993 14:23:28 +0000 (14:23 +0000)]
Added bsd.prog.mk so that make maninstall would work

31 years agoAdded a fourth DOS-format floppy to the install disks containing os-bs
alm [Wed, 8 Sep 1993 11:25:17 +0000 (11:25 +0000)]
Added a fourth DOS-format floppy to the install disks containing os-bs
and miscellaneous programs which get installed into /usr/distbin.
Install now recognizes existing DOS partitions and attempts to install
after them.  Theoretically, it also remaps badblocks.

N.B.:  The fourth install floppy must have a clean DOS FAT.
Building the new distribution floppies is untested

TODO: Build a disktab entry for existing DOS partitions (except extended
partitions).  This would allow loading and/or extracting the distribution
files directly from the DOS hard disk partition.

31 years agoAdded two new options, one of which is fairly far reaching:
jkh [Wed, 8 Sep 1993 01:46:59 +0000 (01:46 +0000)]
Added two new options, one of which is fairly far reaching:

-q turns on "quiet" mode, where informational headers and such are not
dumped, just the information.

-L Shows full pathnames of files comprising a package.  With -q,
this can be useful for doing fileset operations, such as
"du -s `pkg_info -q -L foo_bin`" to see how much space package
"foo_bin" is taking up.

31 years agoFixed missing slash after a ${DESTDIR} with no other path after it.
rgrimes [Tue, 7 Sep 1993 19:35:38 +0000 (19:35 +0000)]
Fixed missing slash after a ${DESTDIR} with no other path after it.

31 years agoSeveral fixes to the st driver, for density detection and selection. No
rgrimes [Tue, 7 Sep 1993 15:58:00 +0000 (15:58 +0000)]
Several fixes to the st driver, for density detection and selection.  No
longer have to do the st -f /dev/rst0 blocksize 0 on dat drives!

31 years agoAdded DOS partition support and maybe badblock remappping.
alm [Tue, 7 Sep 1993 12:02:11 +0000 (12:02 +0000)]
Added DOS partition support and maybe badblock remappping.

The following additional changes are needed for the new install disks:
1) Remove from filesystem disk's /filelist: bin/cat, dev/MAKEDEV.local.
2) Remove from the filesystem disk: /bin/cat, /COPYRIGHT and /dev/MAKEDEV.local.
3) Add to the filesystem disk:  /sbin/fdisk, /dev/fd1a and /dev/rfd1a.
4) Build a fourth DOS disk containing at least: os-bs, rz/sz

Outstanding problems:
1) If there are >1024 cylinders, then FreeBSD cannot boot unless installed
at cylinder 0 (and since neither can DOS evidently, the two can't share
a disk in this case).
2) If FreeBSD is installed at cylinder 0, subsequent installs tend to fail.
3) If a DOS partition exists, disklabel doesn't seem to update the disk
geometry in the FreeBSD disklabel correctly (so reinstalling FreeBSD with
a new geometry requires installing it at cylinder 0).  Rod suggested
invoking disklabel on the raw c-partition.  This makes sense, but it
doesn't seem to work (newfs, for instance, can't find the new label).

31 years agoRemoved some hard-coded paths in gzexe so it works with the current
nate [Tue, 7 Sep 1993 05:13:47 +0000 (05:13 +0000)]
Removed some hard-coded paths in gzexe so it works with the current
FreeBSD setup