summaryrefslogtreecommitdiff
path: root/sys/arch/sun3
AgeCommit message (Collapse)Author
1996-12-27merged into if_le.ckstailey
1996-12-24sync with NetBSDkstailey
1996-12-24new NetBSD filekstailey
1996-12-23use _{NLIST,KERN}_DO_{AOUT,ELF,ECOFF} to select binary typesTheo de Raadt
1996-12-22removed netbsd refs from "clean" targetkstailey
1996-12-11MCLSHIFT=11, and calc MCLBYTES in such terms. found by pefoTheo de Raadt
1996-12-02increase default data limit to size needed for make buildkstailey
1996-11-25htons et al. works on explicit 16- and 32-bit quantities and not theNiklas Hallqvist
machine dependent "short" and "long" integer. Correct and enhance manpage. Change all short and longs to u_int16_t and u_int32_t, respectively. OpenBSD RCSIds
1996-11-24removed ref to bitmask_snprintf()kstailey
1996-11-24sync w/NetBSD modulo two-arg boot(); adds dumpkstailey
1996-11-24remove bogus diagnostickstailey
1996-11-23added const to second parameter of cfprint_t routineskstailey
1996-11-23include "std.sun3" -> include "arch/sun3/conf/std.sun3"kstailey
1996-11-23sync with NetBSD -- copyright changes onlykstailey
1996-11-23sync with NetBSD -- copyright changes onlykstailey
1996-11-23sync with NetBSDkstailey
1996-11-16EM_M68K -> EM_68Kkstailey
1996-11-15added DO_AOUT for kvm_mkdb; added ELF defines tookstailey
1996-11-14removed bcopy & bcmp dependencieskstailey
1996-11-13kernel is bsdMichael Shalayeff
1996-11-12cdev_init_random -> cdev_random_initkstailey
1996-11-12config file for my Sun3/60Mkstailey
1996-11-11Updates for SCSI scanner and SCSI unknown devices.kstailey
Removed MI *dev_decl() stuff that is now in sys/conf.h
1996-11-08Added protection against multiple inclusions.kstailey
Added CTL_MACHDEP definitions. "The Way Out Is The Way In" -- Laraaji
1996-11-07dk_mountrootTheo de Raadt
1996-11-06add blktochr()Theo de Raadt
1996-11-02added $OpenBSD$ tagkstailey
1996-11-02mem* routines for sun3 private libsakstailey
1996-10-19add random deviceMichael Shalayeff
1996-10-14openbsdTheo de Raadt
1996-10-12use my eeprom.h with sun-alike definitionsTheo de Raadt
1996-10-11sync + our changesTheo de Raadt
1996-09-20do not fool people into thinking VNODEPAGER is an option; netbsd pr#2757, ↵Theo de Raadt
erik@aarhus1.uni-c.dk
1996-08-31disable TCP_COMPAT_42Theo de Raadt
1996-08-29rnd -> randomTheo de Raadt
1996-08-12repair XDC_HWAIT macro to handle the fact that waithead is nowchuck
unsigned. should fix xdc watchdog timeouts noted in port-sparc by nathanw@mit.edu.
1996-07-27handle RB_CONFIGTheo de Raadt
1996-07-15add rnd driverMichael Shalayeff
1996-06-12SIGSEGV alwaysTheo de Raadt
1996-05-29enable ELF/a.out/ECOFF in machine/exec.hTheo de Raadt
1996-05-15add all the possible SCSI device types to the GENERIC configs.Michael Shalayeff
1996-05-08avoid panics at reboot.Michael Shalayeff
1996-05-06remove unused files, conserning to the last syncMichael Shalayeff
1996-05-05add general ether_ioctl call in net/if_ethersubr.c,Michael Shalayeff
NS,IPX,X.25 special processing is now handled in there. reflect this amazing addition in all the ether ifaces. ppl, pls check the stuff.
1996-05-03sync with 0430.Michael Shalayeff
1996-05-03sync with 0430Michael Shalayeff
1996-04-24Add network config dependencies.Michael Shalayeff
1996-03-04Fix two bugs reported by Don Koch <aardvark@poirot.krl.com>(NetBSD PR#216{8,9})chuck
[1] check return value from malloc() for NULL before trying to bzero it. [2] use "=" rather than "|=" when writing to CSR (otherwise you may ACK something you don't mean to!).
1996-02-21sync with sparc:chuck
minor clean up: revise locations of disk_busy/disk_unbusy calls to match xd.c
1996-02-08- moved disk_busy() call from xdstrategy() to xdc_startbuf()chuck
[prevents disk_unbusy panic when disk is loaded (if no free IOPBs, xdstrategy() would queue the buffer for pickup by xdcintr() but xdcintr() would never call disk_busy(). xdc_startbuf() is a better place since all bufs are routed through here] problem detected by girish@dworkin.wustl.edu, diagnosed and corrected by me. - move disk_unbusy() call in xdc_remove_iorq() before the call to XDC_FREE() [don't want to access a data structure that was just put on a free list]