summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* cons25: add more parametrized capabilities: cv,ch,ecache1994-10-261-1/+1
|
* Fixed a couple of wrong printfs (too few arguments supplied). Also zappedphk1994-10-265-28/+29
| | | | | a couple of unused vars at the same time. Added a #include <sys/proc.h> to isa.c while here anyway.
* Modified fifth parameter (imask) to register_intr() according tose1994-10-253-15/+6
| | | | new definition of that function.
* BEWARE: Interface change of register_intr() !se1994-10-253-10/+12
| | | | | | Changed the fifth parameter to register_intr() from u_int mask into u_int *maskptr in preparation for new features (shared interrupts and removable devices, eg. for PCMCIA).
* Move dialog_update() to another place, because it is now in dialog_clear()ache1994-10-251-24/+16
|
* BEWARE: Interface change of register_intr() !se1994-10-255-15/+35
| | | | | | Changed the fifth parameter to register_intr() from u_int mask into u_int *maskptr in preparation for new features (shared interrupts and removable devices, eg. for PCMCIA).
* Remove unneeded dialog_update() because now in dialog_clear()ache1994-10-252-2/+0
|
* Patch for proper multicast support on point-to-point links.swallace1994-10-251-3/+5
| | | | Submitted by: apg@demos.su (Paul Antonov) - patch020
* Applied patch009. Also added appropriate #include <string.h> whichswallace1994-10-251-2/+3
| | | | | | | would have detected that memset was not being passed a pointer in the first place. Submitted by: Gene Stark (?) - 1.1.5.1 patch009
* Never strip the kernel.bde1994-10-253-120/+48
| | | | | | | | | | | | | | | | | | | | | | | | | Recommend -Wimplicit in CWARNFLAGS next. There are still a few hundred potential arg mismatches because no function declaration is in scope. Don't duplicate option `-I.'. Remove null editing of the assembler source for all profiled objects. The required magic has been done since prehistoric times by an asm("mcount") declaration. Simplify the clean rule. Don't try to be clever about timestamps involving genassym. genassym's timestamp usually got ahead of assym.s's timestamp, so `make' almost always had to run genassym and compare *assym.s to decide that nothing needed to be done. The cost is reassembling a few files whenever genassym is rebuilt. Assembling is almost as fast as comparing. Always go through genassym.o to build genassym. This would have avoided numerous bugs involving mkdep -p. Now it just stops genassym from depending on the name of the temporary object file. Use ${CFLAGS} for building genassym. Mainly ${CWARNFLAGS} were missing.
* Added decoding of chipset registers for Pentium 90/100 CPUs.se1994-10-252-12/+12
|
* Use the correct macro for deciding whether syscons' variables shouldbde1994-10-253-24/+33
| | | | | | be accessed. Remove some unused declarations and document a bogus one.
* Use += instead of ?= for setting LDDESTDIR. Some Makefiles, such asbde1994-10-251-2/+2
| | | | | | | cc/Makefile.inc use (abuse?) LDDESTDIR for their internal libraries so "?=" hides non-default external libraries. Adding multiple paths to LDDESTDIR works except it makes it even harder than usual to decide which libraries will actually be linked against.
* Some profiled/shared objects were being built despite NOPROFILE/NOPICbde1994-10-251-1/+5
| | | | being set.
* Don't write outside of partp[] if the user gives an invalid partitionbde1994-10-252-2/+4
| | | | | number for the partition to be made active. Do nothing instead. This allows clearing all the active flags by specifying an invalid partition.
* Define DKBAD_MAGIC the same as in 1.1.5 (as 0x4321 instead of 0). 0 isbde1994-10-251-1/+1
| | | | a poor value for a magic number, and we need to be compatible.
* Add perl.bde1994-10-251-2/+2
|
* Added refresh() to dialog_clear so that it actuallypaul1994-10-251-0/+1
| | | | | | | clears the screen. Reviewed by: Submitted by: Obtained from:
* Add strtol() to libkern in support of some other work I'm doing.jkh1994-10-252-3/+131
| | | | | | I just know I'm going to get flamed for adding for the miserable abortion that is libkern, but what am I supposed to do? At least I didn't drag in the ctype stuff! :-)
* Added f77 program. This is a modified version of the c++ program.ljo1994-10-253-2/+554
| | | | All it does is add -lf2c and -lm.
* Improve error detection and handling:bde1994-10-251-11/+13
| | | | | | | | | Reduce _JBLEN for the i386 to what is actually used. Encapsulate jmp_buf and sigjmp_buf in structs. Enlarge jmp_buf to the same size as sigjmp_buf. Declare *longjmp as non-returning. Remove stale comments about sig*jmp not being implemented.
* Reenable sigsetjmp.S. Preserve the FP state. Rearrange offsetsbde1994-10-254-14/+50
| | | | to match setjmp.S.
* Nuke sigsetjmp.c. sigsetjmp() can't be implemented as a C functionbde1994-10-251-2/+2
| | | | | that calls setjmp(), since returning from the function usually clobbers the saved environment.
* Add this from Mark Dapoz. It requires LaTeX to format it, but it'sjkh1994-10-251-0/+326
| | | | | sure a lot better than nothing. Submitted by: md
* Added FORTRAN rule.ljo1994-10-251-0/+29
|
* Changed some variable names in lf_addblock to make the code bothdg1994-10-251-9/+9
| | | | understandable and conform to other conventions used in the file.
* Allow MAXMEM kernel option to indicate more memory than is detected; itdg1994-10-252-8/+6
| | | | previously could only be used to limit the amount of memory.
* Patch to fix QIC-02/QIC-36 by Gene Stark.swallace1994-10-251-5/+17
| | | | | From patch003 in CLEAR-1.1.5.1-PATCHES. Submitted by: Gene Stark
* Restricted maximum bufpages to 1500; this is required for machines >64MBdg1994-10-252-10/+8
| | | | | | | of memory to work without running out of kernel VM (and increasing it to even more than it is now (96MB) is out of the question. Changed bufpages calculation to allocation a little less bufer cache (16% of mem-2MB instead of 20%); this is simply a better figure for most systems.
* Moved swapon -a to before the fsck. It isn't possible to run fsck ondg1994-10-251-3/+3
| | | | moderately sized filesystems on 4MB machines otherwise.
* Moved initialization of tmpstk so that it immediately follows the kerneldg1994-10-256-21/+51
| | | | | | | text. Fixed rounding bug that caused the last page of kernel text to be read/write instead of read-only. This is important now that tmpstk can crash into it. Removed +4 bias of tmpstk because it screws up ddb's ability to traceback correctly.
* Improved I/O error reporting.dg1994-10-251-5/+19
|
* Changed NO_SHARED_LIBCC_INT to SHARED_LIBCC_INT and changed the logicdg1994-10-252-4/+4
| | | | | as appropriate. This makes gcc not built with a shared cc_int the default.
* #if 0'd out the object cache trimming code - there are multiple waysdg1994-10-251-1/+3
| | | | | | that the pageout daemon can deadlock otherwise. Submitted by: John Dyson
* Added lsdev.wollman1994-10-241-1/+1
|
* When -v not given, display longer `state' and no `parent'.wollman1994-10-241-11/+32
|
* Added sea0 - Seagate driver lines to configsos1994-10-245-7/+16
|
* Seagate st01/02 driver.sos1994-10-241-0/+1988
| | | | Obtained from: FreeBSD-1.1.5.1
* Fixed cut&paste error.wollman1994-10-243-6/+6
| | | | Submitted by: davidg
* These patches fix some lesser problems:phk1994-10-247-15/+32
| | | | | | | | | | | | | | | 1) malloc.h doesn't exits in 2.0. 2) Makefile.inc wasn't picked up so one of the build steps (install?) failed. 3) LIBMD wasn't depended on. 4) "ctm foo" dumped core because "foo" doesn't have a '.' in it. Bruce I updated the mkCTM stuff while I was at it anyway. /phk Reviewed by: phk Submitted by: bde
* A nice little PPP.doc file from:phk1994-10-241-0/+368
| | | | Submitted by: Gennady B. Sorokopud ( gena@NetVision.net.il )
* Added share/examples/ibcs2 directorysos1994-10-241-2/+4
|
* added ibcs2 directory.sos1994-10-241-2/+2
|
* Partially back out previous fix (in cases ':' and '!'),ache1994-10-242-4/+14
| | | | | leave case '.' as valid user name, not host reference. Document new behaviour.
* Use configurable dialog attributes instead of hard-coded onesache1994-10-242-5/+4
|
* Make dialog attributes visible from outside (for direct usageache1994-10-242-40/+38
| | | | in pgms)
* label.c: add delwin(window)ache1994-10-242-5/+8
| | | | | mbr.c: use proper dims for newwin, add shadow both: add ' ' and ESC as valid end-keys
* Use proper dims for newwin.ache1994-10-241-4/+5
| | | | | Remove double-clear. Add shadow.
* Clear screen on exit per Paul requestache1994-10-241-6/+6
|
* Remove undocumented talk behaviour, when names likeache1994-10-241-9/+3
| | | | | | | aa.bb aa:bb and aa!bb treated as user+host and not as local user names (especially aa.bb is common case). Only @ is valid user/host separator according to manpage. Pointed-by: doctor@dream.demos.su
OpenPOWER on IntegriCloud