summaryrefslogtreecommitdiff
path: root/sys/arch/sparc
AgeCommit message (Collapse)Author
1998-03-26fix Id; add commentsJason Wright
1998-03-25Driver for the 8 leds on the back of sun4 machines.Jason Wright
1998-03-22Add UID_MAX and GID_MAXTodd C. Miller
1998-03-20small (aka 'fixed' from X) fonts for raster consoles < 800*600 in sizeTodd T. Fries
this changes the choice to be at run-time from compile time
1998-03-09print how much memoryTheo de Raadt
1998-03-09print hotfix info at end of cpu attach lineTheo de Raadt
1998-03-04Backout HZ comments I added, which are not appropriate for inclusion injohns
kernel config files.
1998-03-04Corrected comments for machines with oclock0...johns
1998-03-04Improved error/warning messages for clock/statclock rate stuff, addedjohns
missing mesg for oclock on 4/100 and 4/200..
1998-03-04added support for the TIOCM* ioctl'sJason Wright
1998-03-04Added comments about changing HZ to custom values on sparc. Only supportedjohns
for sun4c and sun4m machines. sun4 will only run at the default HZ=100. Added commented out option for HZ=1000 along with info for GENERIC, SUN4C, and SUN4M configs. Added note to SUN4 config warning that HZ is ignored.
1998-03-04Adapt comments to realityNiklas Hallqvist
1998-03-03Add -Wno-main for GCC 2.8Niklas Hallqvist
1998-03-02gcc may generate references to libgcc.a at any time, we lucked out in previousjohns
verions of gcc, but for 2.8 the boot stuff needs to be linked against libgcc.a, to get ___cmpdi2 for cd9660.o Since ld doesn't automatically link against libgcc.a we have to add `cc -print-libgcc-file-name` to the end of the ld link line(s), whenever we see things like this.
1998-03-02NULLFS is required by UMAPFS, don't know when this got messed up, perhapsjohns
its a gcc 2.8 related thing.
1998-03-01Fixes for gcc 2.8johns
Added explicit type of integer to register variable i..
1998-03-01Fixes required for gcc 2.8, trapsignal() takes a union sigval as itsjohns
fifth parameter, gcc 2.8 will not allow us to pass in an integer anymore.
1998-03-01Changed declaration of maddr in the dumpsys() so it is an unsigned int,johns
old code semantics let it default to an int. AFter careful inspection of the surrounding code, it would appear that maddr has to be unsigned, and that the original code was a bug. Also added correct return type for sunos_exec_aout_makecmds() declaration. Both fixes are required for building on gcc 2.8...
1998-03-01trapsignal() requires parameter five to be of type "union sigval".johns
gcc 2.8 will not allow us to pass in a caddr_t, changes based on Niklas' stuff in i386 trap.c
1998-03-01Fixed declaration of iorqno in xd_piodriver(),johns
should have been int, used to be a char. Prototype for xd_piodriver() also said int.. Fix required for gcc 2.8 ...
1998-02-26Backout of cpu init changes, breaks on sun4m currently..johns
1998-02-26Backout of Jason's cpu init changes, causes an immediate panic on sun4mjohns
machines..
1998-02-26updated to reflect cpu initializationJason Wright
1998-02-26Change order of cpu initialization to force the correct dmesg output.Jason Wright
1998-02-24compensate for new gasTheo de Raadt
1998-02-18installboot onto partition cTheo de Raadt
1998-02-12Look for installboot in /usr/mdec unless user specified otherwise.Magnus Holmberg
1998-02-11From NetBSD: sun4m anti crash code in IOMMU_FLUSH{PAGE,ALL}Marco S Hyman
1998-02-05sync with netbsd: 4/300 dma fixJason Wright
1998-02-05oops, need include fileTheo de Raadt
1998-02-05rename ddb.panic_ddb, and add ddb.console. Now you can stop console ddb entryTheo de Raadt
with a sysctl. There will be architectures and drivers that lack function, and I trust the maintainers of those will forget to add the code..
1998-01-28Undo the 4/300 dmaselect hack and fix it correctlyJason Wright
1998-01-14For some reason the 4/300 doesn't like ncr53c9x_dmaselect.Jason Wright
Added code to check to see if parent device == obio, if so, disable dmaselect More research to be done here for a real fix (if possible)
1998-01-13Workaround for fpu_cleanup panic. We just ignore it. I'm going toJason Wright
look further into really fixing this problem.
1997-12-25do not break the bootblocksTheo de Raadt
1997-12-23use raster console by default since the sun prom is buggy.chuck
1997-12-21ifdef some definitions of NBPG that use kernel variables, when theAngelos D. Keromytis
file is included from userland programs (such as lsof)
1997-11-11blush!Niklas Hallqvist
1997-11-11make tty col/row size be unsignedNiklas Hallqvist
1997-11-11whoops typo in last commit + accept 0 in col/row values on sun4 mean full szNiklas Hallqvist
1997-11-11Limit the console size by the frambuffer size. My 4/100 seemsNiklas Hallqvist
to lie about the console size
1997-11-11A vital variable was not initialized! Thanks DDB, and you...Niklas Hallqvist
remember to kill those static specifiers.
1997-11-11I might as well say it here: please do not make functions in theNiklas Hallqvist
kernel static, unless they are also inline. Debugging in DDB becomes a nightmare when the symbols are not there. Instead use good non-clashing names, maybe prefixed by the devicename, subsystemname or similar.
1997-11-11Remove thos evil statics, some KNFNiklas Hallqvist
1997-11-11unused variable under certain conditionsNiklas Hallqvist
1997-11-11Remove those static specifiersNiklas Hallqvist
1997-11-09New endian.h design. All architectures now use a common file for the bulkNiklas Hallqvist
part. Some ports can optimize the swap operations. This also means the general API is extended with swap16, swap32, htobe16, htobe32, betoh16, betoh32, htole16, htole32, letoh16 and letoh32.
1997-11-07simple_lock api changed slightlyTheo de Raadt
1997-10-23correct obj buildingTheo de Raadt
1997-10-01make rawpart FS_UNUSEDTheo de Raadt