Age | Commit message (Collapse) | Author | |
---|---|---|---|
1997-04-01 | Add DrHW for RasterOps CB264--From Scott Reynolds--and link it in to the | briggs | |
proper interrupt routine. grfmv_intr_mystery changed to grfmv_intr_cb264. | |||
1997-04-01 | debugger 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 readline | Michael Shalayeff | |
sample regs command to show the registers | |||
1997-03-31 | strlen proto | Michael Shalayeff | |
1997-03-31 | strlen here too.... | Michael Shalayeff | |
1997-03-31 | missed additions to the last commit | Michael 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-31 | commit 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-31 | shrink; niklas | Theo de Raadt | |
1997-03-31 | do not let PSL_NT be set in VM86 mode; netbsd | Theo de Raadt | |
1997-03-31 | changed 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-31 | New job; another PC lands on my desk. | kstailey | |
1997-03-31 | PR#140, Fix from David Leonard <d@occult.fnarg.net.au>. Prevents endless loop | briggs | |
for Egret and Cuda ADB. | |||
1997-03-31 | even better indent | Theo de Raadt | |
1997-03-31 | indent | Theo de Raadt | |
1997-03-31 | Jump to loadaddr instead of entry due to libsa change. | Jason Downs | |
1997-03-31 | Move closer to boot/. Add some debug stuff | Tobias Weingartner | |
1997-03-31 | Fix for my fix... | Tobias Weingartner | |
1997-03-31 | Fix symbol handling (stripped kernels) | Tobias Weingartner | |
1997-03-31 | Initial /boot stuff (from Mickey) | Tobias Weingartner | |
1997-03-31 | Prepare for /boot stuff... | Tobias Weingartner | |
1997-03-31 | Modernize OpenBSD/mvme68k to match various changes in m68k and hp300 code. | Jason Downs | |
Compiles, but untested for lack of hardware. | |||
1997-03-30 | Minor cleanup. | briggs | |
1997-03-30 | no 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-30 | jDTInstall is 0xD9C, not 0x9DC... | briggs | |
1997-03-30 | An implementation of pieces of the Deferred Task Manager--required by | briggs | |
some video cards. Provided by Paul Goyette <paul@pgoyette.bdt.com>. This introduces another simulated software interrupt. | |||
1997-03-30 | my recent fixes | Michael Shalayeff | |
1997-03-30 | fix comment | Michael Shalayeff | |
1997-03-30 | ifdef out some vars used only w/ NFSCLIENT defined | Michael Shalayeff | |
1997-03-30 | Previous commit was in error, definition of MANDIR was correct | Todd 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/man | Todd C. Miller | |
NetBSD PR #3401 | |||
1997-03-29 | Increase timeout by a factor of ten in cd_size(). | briggs | |
NetBSD PR#3409 from Koji Imada <koji@imada.math.human.nagoya-u.ac.jp> | |||
1997-03-29 | Do not register an interrupt handler unless we know that we can clear | briggs | |
interrupts properly. Take a stab at clearing interrupts correctly for stupid Samsung video card that masquerades as a Toby Frame Buffer card. Break out interrupt routines by card type, including the cards that just need a byte cleared to clear the interrupt. | |||
1997-03-29 | Update from Denton Gentry with minor bug fixes by me. | briggs | |
Denny says: if_sn.c: - allocate sc->space using malloc (Scott wanted this). - make csr accesses use NIC_PUT/GET, remove sc->sc_csr. - add multicast and IFF_PROMISC support. multicast isn't well tested, but I made sure the unicast case still works. - finish the new arp interface, remove sc->sc_enaddr if_snreg.h: - remove struct sonic_reg if_snvar.h: - add NIC_PUT and NIC_GET macros a la if_ae - remove sc_txhead, it isn't used. if_sn_nubus.c: - clean up support for my SE/30 card. - Move add_nubus_intr from if_sn.c (to keep if_sn.c MI) if_sn_obio.c: - make Q610, C610, Q650, C650, Q800 use EXBUS. - PB500 had a "return" where "break" was intended. PB500 probably wasn't working. - move add_nubus_intr from if_sn.c. - add an "explanation" why Apple's ethernet addr is encoded in token ring format in the PROM. | |||
1997-03-29 | DrSW for a Dayna ethernet card. Fake DrHW for dumb nubus card. | briggs | |
1997-03-29 | Do not include mmap'ed device memory in coredumps; from Matthias Drochner | Thorsten Lockert | |
<drochner@zel024.zel.kfa-juelich.de> in NetBSD PR 3252 | |||
1997-03-29 | Return EISDIR for directories; idea from NetBSD | Thorsten Lockert | |
1997-03-29 | uninitialized variable; koji@math.human.nagoya-u.ac.jp | Theo de Raadt | |
1997-03-29 | __NetBSD__ -> __NetBSD__ || __OpenBSD__ (conditionals for compiling in MacOS). | briggs | |
1997-03-29 | Do return values from issetuid() correctly | Thorsten Lockert | |
1997-03-29 | Use genassym.sh | Thorsten Lockert | |
1997-03-29 | Switch to genassym.cf. | Jason Downs | |
1997-03-29 | A bit more DAFB initialization. | briggs | |
1997-03-29 | Fix bug that would have prevented PB5xx series from detecting the SONIC. | briggs | |
Bug noticed by Denny Gentry. | |||
1997-03-28 | sync (regen) | kstailey | |
1997-03-28 | added 34 - nice | kstailey | |
1997-03-28 | Use more from m68k/m68k. | briggs | |
1997-03-28 | copy new iv only if existant | Niels Provos | |
1997-03-27 | Various fixes for ZMAGIC. Thanks Theo | Tobias Weingartner | |
1997-03-27 | Oops, used #ifdef, instead of ifdef, by habit. | Niklas Hallqvist | |
1997-03-27 | DOH! Of course genassym.sh should be fed CC not HOSTCC, | Niklas Hallqvist | |
that was the entire meaning of it... shoot me! |