summaryrefslogtreecommitdiffstats
path: root/sys/i386
Commit message (Collapse)AuthorAgeFilesLines
...
* Sample kernel config for syscons.jkh1993-07-261-0/+96
|
* Added necessary files for syscons (may move font include later, but for nowjkh1993-07-263-0/+3619
| | | | it's easier to leave there since I don't feel like breaking anything).
* Added entry for syscons.jkh1993-07-261-0/+1
|
* Fixed logic problem which caused a bogus value to be written to the 3c503dg1993-07-251-8/+21
| | | | | | | | asic register even if the board isn't a 3c503. This caused old 8003E's not to work because they ignore IO address bits >10bits and the 3c503 asic is located at +0x400....the offset was ignored by the 8003E and so the value was written to one of the NIC registers. The bug was discovered by Wolfgang Solfrank.
* Very small patch from Julian Elischer to make the ultra14f.c driver workrgrimes1993-07-221-1/+2
| | | | with the 34f as well.
* Fixed attach printfs for new format (thanks Chris)paul1993-07-211-28/+42
|
* Added statistical counters ipackets,opackets etc.paul1993-07-211-7/+17
|
* Added config file override for memory size and added flags to forcedg1993-07-202-19/+54
| | | | | | | | 8bit or 16bit operation, and a flag to disable transmitter double buffering. See the updated "ed.relnotes" file for information about how to set the flags. This should be considered the first "production" release. It still needs a manual page, though.
* Applied Andrew's patch to fix loop-on-logout problem.jkh1993-07-201-5/+3
|
* Changed comment relating to memsize to be a little less misleading.jkh1993-07-201-1/+6
|
* Fixed to allow iosiz config parameter to override what was (for me,jkh1993-07-201-2/+9
| | | | | incorrectly) probed. This allows you more flexibility in getting weird WD 80x3 clones to work.
* Removed check for interrupting board before interrupts were enabled.jkh1993-07-201-2/+1
| | | | This should result in more AST clones getting seen.
* Fixed sccs id to be From:\n com.c xxxx. The sccs id was changed by thergrimes1993-07-181-2/+3
| | | | patch kit and it should not have been.
* Fixed warning from gcc1 (but not gcc2 for some reason).paul1993-07-181-2/+2
| | | | | 2nd parameter to isread was unsigned char and function declaration was for char. Changed function declaration to unsigned char.
* Added volatile void to cpu_exit() in the hope that it wouldpaul1993-07-181-1/+3
| | | | | | stop warning about returning from gcc. It hasn't but the declaration is still correct.
* Small fix to correct warning --paul1993-07-181-2/+3
| | | | missing cast of u_short to int in isread call.
* New locore from Christoph Rubitschko.dg1993-07-162-453/+727
|
* Updated kernel files to move occurances of "struct args" syscalldg1993-07-162-9/+14
| | | | | | | argument definitions outside of the function parameter list. This is to reduce the copious warning messages that (non-Jolitz) gcc produces. Also fixed some bogus variable declarations and casts to make the compiler happy.
* Changed header from 386BSD BOOT to FreeBSD BOOT.rgrimes1993-07-162-4/+14
|
* Modified attach printf's so that the output is compatible with the "new"dg1993-07-157-45/+30
| | | | | | | way of doing things. There still remain several drivers that need to be updated. Also added a compile-time option to pccons to switch the control and caps-lock keys (REVERSE_CAPS_CTRL) - added for my personal sanity.
* From Bruce Evans:rgrimes1993-07-131-7/+29
| | | | | | | | | | | | | | | | | | | | | lpt doesn't work here if the printer is not turned on at boot time (this has been reported for other systems). lpt has a weird mapping of the flag bits vs printer numbers and MAKEDEV does not understand this (printer 0 uses minor numbers 0-0x3f, printer 1 uses minors 0x40-0x7f, etc). The following (simpler) problems are fixed by the patch. lpt did not check the minor number on open, so if NLPT1 == 1 and you try to open printer 1 then random memory above the lpt_sc array is accessed. I thought I had this problem for minors 1 and 2. However, it does not actually occur until minor 0x40. Does anyone have lpt64? lpt had several unnecessary && broken ANSIisms and other sloppy declarations. Bruce
* New boot blocks, from Bruce Evans, and NetBSD fixes. Allows kernel toroot1993-07-1327-213/+3150
| | | | | be loaded above 1MB. Same boot code for floppies now. Speed improvements. etc etc etc. (I don't have much history on this, but then have been tested)
* Fixed two occarances of ldos which should have been lods.rgrimes1993-07-121-2/+5
| | | | (From Christoph Robitschko)
* For all ed0 driver lines removed iosiz 8192, and fixed the weintr to bergrimes1993-07-121-1/+1
| | | | edintr (error from last time I updated these)
* Put if_we driver well and truly back into the kernel.jkh1993-07-091-0/+1
|
* Added copyright message -- it didn't have one beforepaul1993-07-091-2/+9
|
* Increased default data size (DFLDSIZ) to 16MB. Need to rebuild libutil,root1993-07-031-1/+1
| | | | kernel, ps and w for this to work!
* Added (protection) around negative constants, in case a program wantsnate1993-06-301-4/+4
| | | | | | | | | | to use the negative of that constant. #define NEG_NUM -3 #define SAFE_NEG_NUM (-3) i = -NEG_NUM; /* Error --3 */ j = -SAFE_NEG_NUM /* Okay -(-3) */
* Setting up for updated (usable) FPE atof/vfprintf/vfscanf fixesnate1993-06-291-9/+2
|
* fixed bugs in the probe routine uncovered by the previous fix.dg1993-06-271-7/+11
|
* fixed bug in probe that causes it to complain about 'Invalid irq configuration'dg1993-06-261-0/+8
| | | | if the interface isn't present in the system.
* Second beta release of device driver for SMC/WD 80x3 ethernet boards +dg1993-06-232-14/+105
| | | | some additional comments.
* Second beta release of device driver for WD/SMC 80x3 and 3c503 ethernet boardsdg1993-06-222-29/+104
|
* Added bpf support to if_is.c (Isolan driver)paul1993-06-191-226/+397
|
* Obsolete if_we.c driver, more attach call to where it belongs.rgrimes1993-06-181-9/+3
| | | | Still need to fix all the drivers.
* Changed all we0's to ed0's. Obsoleting if_we.c driver.rgrimes1993-06-182-2/+1
|
* New if_is.c isolan ethernet driver that can handle multiple cards.paul1993-06-181-137/+160
|
* Upgrade to GCC 2.Xpaul1993-06-184-20/+34
|
* Beta release of device driver for SMC/WD80x3 and 3C503 ethernet boards.dg1993-06-142-0/+2441
|
* This commit was generated by cvs2svn to compensate for changes in r4,rgrimes1993-06-1225-0/+7383
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Initial import, 0.1 + pk 0.2.4-B1rgrimes1993-06-1225-0/+7383
|
* Initial import, 0.1 + pk 0.2.4-B1rgrimes1993-06-1293-0/+30043
OpenPOWER on IntegriCloud