summaryrefslogtreecommitdiff
path: root/sys/arch/pmax
AgeCommit message (Collapse)Author
1998-11-21return -1 for mmap stub, not 0; mrg@netbsd.orgTodd C. Miller
1998-11-21return -1 for negative mmap offset; mrg@netbsd.orgTodd C. Miller
1998-11-09Add ramdisk support for pmax; untested but compilesTodd C. Miller
1998-10-16revert pmax machdep.c too (Warner missed this one)Todd C. Miller
1998-10-15Back out PEFO's trap change. It breaks everybody, it seems.imp
1998-10-04remove default partition table code, disklabel can do a far better job than ↵Todd C. Miller
the kernel in this
1998-10-04DIOCGPDINFO supportTodd C. Miller
1998-10-04make sure there is a reasonable 'c' partitionTodd C. Miller
1998-10-04pmax kernels have problems with -O2 so use -OTodd C. Miller
1998-10-03Add a "spoofonly" argument to readdisklabel() which will be used toTodd C. Miller
implement an ioctl to get a spoofed label even for disks that have a label on them.
1998-09-30Fix ERESTART bug introduced with trapframesPer Fogelstrom
1998-09-25o xfs is in the house (thanks art, for getting me started)Todd T. Fries
o all but vax are major 51
1998-09-17o missed ifmedia updateJason Wright
o make sure the led blinker doesn't have any extra bits
1998-09-15Real trapframe and no more __FORK_BRAINDAMAGEPer Fogelstrom
1998-08-31Return ENXIO on open of /dev/mem minor devs that don't existTodd C. Miller
1998-07-28Return EINVAL when msg_iovlen or iovcnt <= 0; Make uio_resid unsigned ↵Todd C. Miller
(size_t) and don't return EINVAL if it is < 0 in sys_{read,write}. Remove check for uio_resid < 0 uiomove() now that uio_resid is unsigned and brack remaining panics with #ifdef DIAGNOSTIC. vn_rdwr() must now take a size_t * as its 9th argument so change that and clean up uses of vn_rdwr(). Fixes 549 + more
1998-07-12reference ${PMAX} instead of assuming you can get to the source tree via ".."Todd C. Miller
1998-07-07fix chrtoblk() so that it returne ENODEV for entries beyond the end of the tableTheo de Raadt
1998-06-04LED blinker for the back panel leds on the 2100/3100.Jason Wright
1998-05-22include <machine/locore.h> instead of <pmax/locore.h> - this should solveThomas Graichen
the make depend problem noted by Nino Margetic (nino@well.ox.ac.uk)
1998-05-18new cpureg.h from NetBSD plus modifications to use the changed macro namesTodd C. Miller
1998-05-17bus.h from NetBSD, does not implement OpenBSD extensions yet.Todd C. Miller
1998-05-12typoTodd C. Miller
1998-05-11Don't print 'unknown media code' for tapes as we know what they are, they ↵Todd C. Miller
are just not disks!; from NetBSD (simonb)
1998-05-10oops, bounds_check_with_label is already proto'd in sys/disklabel.hTodd C. Miller
1998-05-10prototype bounds_check_with_labelTodd C. Miller
1998-05-101) It's a 'lun' not a 'slave'Todd C. Miller
2) 16 partitions
1998-05-09#include <pmax/foo.h> -> #include <machine/foo.h>Todd C. Miller
1998-05-09updates from NetBSD. Now probes for geometry and makes decent fictious labelsTodd C. Miller
1998-05-09drop MAXPARTITIONS back to 8 until we have 16 partition supportTodd C. Miller
1998-05-08remove cpu_exec_ecoff_hook and cpu_exec_ecoff_setregs as mips/cpu_ecoff.c ↵Todd C. Miller
has those
1998-05-08can't use common mips cpu.h yetTodd C. Miller
1998-05-08add missing castTodd C. Miller
1998-05-08remove conflicting decl of switch_exitTodd C. Miller
1998-05-08use what we can from mips/includeTodd C. Miller
1998-05-08add subtype 'mips' to machine lineTodd C. Miller
1998-05-08use generic mips ansi.hTodd C. Miller
1998-05-07Write disk label in canonical location, do not scan. With this changeTodd C. Miller
you can now fix a label that is in the wrong place via: disklabel rz0 >! foo ; disklabel -R rz0 foo like disklabel says you can.
1998-05-07readdisklabel: Look for label in the correct place (LABELSECTOR + LABELOFFSET)Todd C. Miller
first and then fall back to scanning starting at LABELSECTOR. Previously it just did the scan. writedisklabel: Write label to the correct place (LABELSECTOR + LABELOFFSET) if disk is unlabelled. Previously it was written at LABELSECTOR which hosed bootblock writing (as the boot blocks would overwrite the label).
1998-05-07Replace bogus check for partition existence with hp300-like one.Todd C. Miller
Also remove warning when opening a partition that overlaps another, no one else does this.
1998-05-07don't clear *_WLABEL on close so 'disklabel -W' is persistent like in the ↵Todd C. Miller
generic scsi system
1998-05-07if d_npartitions < RAW_PART, set to RAW_PART so we don't get ENXIO and bailTodd C. Miller
1998-05-06setdisklabel:Todd C. Miller
o extra sanity checks and support for invalidating old label like on other ports.
1998-04-02uudecode and install bootblocks -mojMats O Jansson
1998-03-22Add UID_MAX and GID_MAXTodd C. Miller
1998-03-19import the pmax bootblocks uuencoded until someone fixes the bootThomas Graichen
code to compile (it never compiled in OpenBSD and i aslo couldn't find the sources NetBSD/pmax builds it's bootblocks from) pmax bootblocks should be rewritten anyway to be able to load elf kernels etc.
1998-03-16raise NKMEMCLUSTERS a bit to avoid kernel crashes due to kvm shortageThomas Graichen
on fat kerneles (often reported in the last time)
1998-03-05add OpenBSD tagMats O Jansson
1998-03-05please gcc 2.8Mats O Jansson
1998-03-03Add -Wno-main for GCC 2.8Niklas Hallqvist