summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1997-04-01Add DrHW for RasterOps CB264--From Scott Reynolds--and link it in to thebriggs
proper interrupt routine. grfmv_intr_mystery changed to grfmv_intr_cb264.
1997-04-01don't disable the build of gdb for the alpha - it should work nowThomas Graichen
1997-04-01it's called xm-alphaobsd.h and not xm-alpha.hThomas Graichen
1997-04-01Slightly better fix. This one is explicately bounded by UT_HOSTSIZE.Todd C. Miller
1997-04-01This merges in the latest NetBSD sup source.Todd T. Fries
- removed $Log: ...$ tags to not waste space in the repository - now doesn't segfault on the alpha! Note: To compile sup on systems other than *BSD, you'll need a copy of vis.c, vis.h, daemon.c, and sys/cdefs.h. At least the first two (for OSF/1). From NetBSD changelog description (for credit where due): .... 1996/12/23 19:42:05 christos - add missing prototypes. - fix function call inconsistencies - fix int <-> long and pointer conversions It should run now on 64 bit machines... .... 1996/12/31 18:08:00 christos 64 bit patches (mostly long -> time_t) from Matthew Jacob (?) sup now works on the alpha!
1997-04-01Sync with NetBSD (mostly by christos initial substitution/regexp from Der Mouse)Todd C. Miller
- fix the variable substitution code in make [PR/2748] 1. change s/a/b/ so that it substitutes the first occurance of the pattern on each word, not only the first word. 2. add flag '1' to the variable substitution so that the substitutions get performed only once. ***THIS IS AN INCOMPATIBLE CHANGE!*** Unfortunately there was no way to make things consistent without modifying the current behavior. Fortunately none of our Makefiles depended on this. OLD: VAR = aa1 aa2 aa3 aa4 S/a/b/ = ba1 aa2 aa3 aa4 S/a/b/g = bb1 bb2 bb3 bb4 NEW: VAR = aa1 aa2 aa3 aa4 S/a/b/ = ba1 ba2 ba3 ba4 S/a/b/1 = ba1 aa2 aa3 aa4 S/a/b/g = bb1 bb2 bb3 bb4 S/a/b/1g = bb1 aa2 aa3 aa4 - add regexp variable substitution via 'C/foo/bar/' [PR/2752] - add variable quoting via the ${VAR:Q} modifier. This is useful when running recursive invocations of make(1): make VAR=${VAR:Q} will always work... (This may prove useful in the kernel builds...) [PR/2981] - BSD did not traditionally have <sys/cdefs.h>; use BSD4_4 instead and include <sys/param.h> to grab it. - Don't compile the regex code if MAKE_BOOTSTRAP (from gwr) - Use explicit .c.o rule in Makefile.boot so that the bootstrap process works. - Use only integral types in procedure arguments. [buf.c buf.h] - Include <stdlib.h> to get getenv() prototype on SVR4 - if __STDC__ -> ifdef __STDC__ to appease SVR4 - Define const and volatile for non __STDC__ - Implement snprintf() and vsnprintf() for non BSD4_4 systems. - Make $MACHINE_ARCH settable from the environment. - Fix .USE directive problems: (reported by cgd) 1. ${.*} variables did not get expanded in dependencies. 2. expanded ${.*} variables in .USE dependencies can cause tree restructuring; handle it. 3. in compat mode, expand .USE before evaluating the list of targets, instead of doing .USE expansions on demand, because they can cause tree restructuring. - Add a .MADE directive to indicated that the children of a target are up-to-date, even when they are not. This is to simulate our current make install behavior with proper dependencies. - Fix problems in the RE substitution error handling. - Locate all the children of a node marked as MADE. - Do not compile-in ${MACHINE} (as per NetBSD PR#3386) - Disable globbing for targets/dependencies when POSIX is defined. - Fix globbing so that patterns that don't have a matching number of [] or {} don't get expanded. (before the [ case got expanded to nothing!) This is disabled. - Make sure that the children of nodes that are marked .MADE, are marked UPTODATE and their timestamps are consistent. - Don't disable wildcards completely; they are used by other Makefiles.
1997-04-01debugger started.Michael Shalayeff
only one entry for now: chek_regs (use DUMP_REGS macro instead) dumps registers. must be called by lcall or so (to push %cs)
1997-04-01^U hotkey in readlineMichael Shalayeff
sample regs command to show the registers
1997-03-31strlen protoMichael Shalayeff
1997-03-31strlen here too....Michael Shalayeff
1997-03-31missed additions to the last commitMichael Shalayeff
and.... it compiles and runs ok on my machine. *** TEST IT !!! *** some pieces into MI libsa coming in a minute (if line won't drop ;)
1997-03-31commit all my mods to the last imported libsa stuff....Michael Shalayeff
including: - disklabel support; - better boot cmd line - smaller size (using some compilation switches ;) - no more relocations in /boot, it's loaded in the place; - better disk performance (maybe were already in there) - installboot -n does not require write perms for device - more debugs - missing parts in libsa (such as cd9660 and so) - i don't like 2 files for exec_i386 (sorry, toby, let's discuss maybe?) tricks and tails: - joined .text and .data (saves you a page) - prot mode switching still in biosboot (it's freezed for awhile) - biosdisk internals changed - biosdev is not passed propery to the kernel (i'll fix it soon) - sure i missed smth here to note (use the source, Luke!)
1997-03-31shrink; niklasTheo de Raadt
1997-03-31do not let PSL_NT be set in VM86 mode; netbsdTheo de Raadt
1997-03-31changed ipfattach() to ipf_enable()kstailey
changed ipfdetach() to ipf_disable() added stub ipfattach() which is called from main() commented out activation of ipf from iplinit() must explicitly enable with ipf -E removed bogus deactivation of ipf from iplinit()
1997-03-31New job; another PC lands on my desk.kstailey
1997-03-31PR#140, Fix from David Leonard <d@occult.fnarg.net.au>. Prevents endless loopbriggs
for Egret and Cuda ADB.
1997-03-31even better indentTheo de Raadt
1997-03-31indentTheo de Raadt
1997-03-31works again, work by niklas and iTheo de Raadt
1997-03-31disklabel stuff was fixed a while agoTheo de Raadt
1997-03-31Jump to loadaddr instead of entry due to libsa change.Jason Downs
1997-03-31Move closer to boot/. Add some debug stuffTobias Weingartner
1997-03-31Fix for my fix...Tobias Weingartner
1997-03-31Fix symbol handling (stripped kernels)Tobias Weingartner
1997-03-31Initial /boot stuff (from Mickey)Tobias Weingartner
1997-03-31Prepare for /boot stuff...Tobias Weingartner
1997-03-31salt is an int32_tTheo de Raadt
1997-03-31flags param is intTheo de Raadt
1997-03-31sync to nfs.hTheo de Raadt
1997-03-31sync with stat.h; spotted by todd@Theo de Raadt
1997-03-31correct path in comment; thieleke@ix.netcom.comTheo de Raadt
1997-03-31Modernize OpenBSD/mvme68k to match various changes in m68k and hp300 code.Jason Downs
Compiles, but untested for lack of hardware.
1997-03-30Minor cleanup.briggs
1997-03-30no more 2(two) md5 libs in kernel!Michael Shalayeff
tested for rnd(4).... should work for ip too, since it's the copy of ip_md*. use sys/md5k.h for protos.... std iface forever! hurray!
1997-03-30jDTInstall is 0xD9C, not 0x9DC...briggs
1997-03-30An implementation of pieces of the Deferred Task Manager--required bybriggs
some video cards. Provided by Paul Goyette <paul@pgoyette.bdt.com>. This introduces another simulated software interrupt.
1997-03-30Added support for YP V1. Partly from FreeBSD. -mojMats O Jansson
1997-03-30delete the unaligned codeTheo de Raadt
1997-03-30my recent fixesMichael Shalayeff
1997-03-30fix commentMichael Shalayeff
1997-03-30ifdef out some vars used only w/ NFSCLIENT definedMichael Shalayeff
1997-03-30blowfish + passwd.conf support. fixed md5 salt.Niels Provos
1997-03-30better notesTheo de Raadt
1997-03-30We run OpenBSD not NetBSDTodd C. Miller
From NetBSD: Fix includes specified for shmctl(2) Make xrefs consistent
1997-03-30NetBSD PR #3399: Avoid overflowing in ut_host into ut_time (bounds check). ↵Todd C. Miller
Fix from Tatoku Ogaito
1997-03-30Make named.boot and news spool optional.Todd C. Miller
1997-03-30Previous commit was in error, definition of MANDIR was correctTodd C. Miller
but there's no need to redefine MANDIR at all since we are installing man pages in the system man page dir. Therefore, we just pull in MANDIR from bsd.own.mk.
1997-03-30/usr/share/man/cat -> /usr/share/manTodd C. Miller
NetBSD PR #3401
1997-03-30Adjust the input string by the right amount if the pattern wasn't at theTodd C. Miller
beginning. From NetBSD (mycroft).