summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Collapse)Author
2006-10-15Enable bce.Marco Peereboom
Sortof ok with grumblings deraadt@
2006-10-14ps uses KERNBASE so define it to the correct value (pointed out by miod)Dale Rahn
2006-10-13'no BSD partition' -> 'no OpenBSD partition' for error message.Kenneth R Westerback
ok deraadt@
2006-10-12Bump versions to note behaviour change of no longer tryingKenneth R Westerback
to boot from NetBSD partitions. Requested by tom@.
2006-10-12Don't try to boot from a NetBSD MBR partition when no OpenBSD MBRKenneth R Westerback
partition is found. Change error message to 'no OpenBSD partition'.
2006-10-12Since we no longer look in FreeBSD or NetBSD partitions for theKenneth R Westerback
disklabel, we shouldn't write the disklabel in such partitions either. Brings amd64, arm, i386, landisk, macppc, mvmeppc (which roll their own MBR search in writedisklabel()) into line with alpha, hppa, hppa64, mips64 (which use readdoslabel() in both reading and writing the disklabel). If all goes well, soon everyone will be using readdoslabel().
2006-10-11flush the cache before jumping into the just loaded kernel.Dale Rahn
Now it succesfully gets into the kernel 100%
2006-10-11Oops, wrong size in struct cfattach.Miod Vallat
2006-10-11Build after compiler changed to hardfloat, and link against libgcc. ok miod@Dale Rahn
2006-10-11define some functions to go here, quiet warningsDale Rahn
2006-10-11udcf works here, so add it, ok mblamerHenning Brauer
2006-10-11tsk, tskDale Rahn
2006-10-10Match the SH4 FPSCR bits.Miod Vallat
2006-10-10Typo in a comment. ok kettenis.Marc Balmer
2006-10-10Minor tweaks.Miod Vallat
2006-10-10Don't spoof a Free/NetBSD MBR partition as the 'a' partition in aKenneth R Westerback
disklabel. Fixes 'double spoofing' of these partitions as both 'a' and something in the 'i' to 'p' range. OpenBSD changed its MBR partition type to 'A6' eight years ago. As a backward compatibility measure NetBSD and FreeBSD MBR partitions were still spoofed as 'a' partitions when no OpenBSD partition could be found. This bit of backward compatibility is no longer required. 'we can get rid of it' deraadt@
2006-10-09tweaks; ok mickeyJason McIntyre
2006-10-08Execute the Enforce in-order Execution of I/O (eieio) instruction inGordon Willem Klok
mc_dmaintr, its a little bit of voodoo, I dont understand why its necessary for mace versus the near identical dma isr in if_bm.c, but the system no longer panics under network load.
2006-10-07More bits in progress, adapted from NetBSD.Miod Vallat
2006-10-06Remove lingering debug printf. Don't announce that mace_get was called.Gordon Willem Klok
2006-10-06debugging delay offMichael Shalayeff
2006-10-06Enable pgt cardbus.Marcus Glocker
requested by brad@
2006-10-06few more filesMichael Shalayeff
2006-10-06Sync with recent disklabel.h changes. Zap dkbad.Kenneth R Westerback
"Free commits" miod@
2006-10-06Remove explicit -fno-stack-protector now that the compiler workaround is inMiod Vallat
place.
2006-10-06Sync with recent disksubr.c changes. Just some comments in this case.Kenneth R Westerback
"Free commits" miod@
2006-10-06Enable pgt cardbus.Marcus Glocker
ok deraadt@
2006-10-06control how deep the tree can be entered (for man pages)Theo de Raadt
2006-10-06w/ help of netbsd srcs and some mother unzel made it lift offMichael Shalayeff
2006-10-06a few fixes to get thru the autoconfMichael Shalayeff
2006-10-06Incomplete bits for an OpenBSD/landisk port to the I/O DATA USL-5P appliances,Miod Vallat
mickey@ has the other part.
2006-10-06Preliminary bits for SuperH-based ports, based on NetBSD/sh3 codebase withMiod Vallat
minor changes.
2006-10-05Add if_mc.c a driver for the AMD AM79C940 (MACE) ethernet chip found onGordon Willem Klok
board old world macintosh systems to macppc. From netbsd, mac68k and macppc specific tweaks modeled on if_bm.c. ok brad@
2006-10-05only take in an account <4g memory for bufcache calculation as the upper ↵Michael Shalayeff
part will not participate anyway; pedro@ ok
2006-10-04More instances of the same now unused variable as in alpha'sKenneth R Westerback
readdoslabel(). A bit of bad144 fallout.
2006-10-04unused variableTheo de Raadt
2006-10-04Try to nail elusive arm/include/disklabel.h at third attempt.Kenneth R Westerback
2006-10-04More tidying up after bad144. Remove references in comments andKenneth R Westerback
don't include dkbad.h when nothing in it is used. Missed arm/include/disklabel.h first time around.
2006-10-04Zap bad144 bad sector info in disklabels. Sparsely used if at all forKenneth R Westerback
a few obsolete and easily replaced disk models. And didn't work anyway according to Bob, who has tried. ok beck@
2006-10-03Cease printing mpbios vendor/version strings on AMD64 as well.Gordon Willem Klok
2006-10-03Cease printing the mpbios vendor/version strings, smbios provides muchGordon Willem Klok
more informative information. ok in principal deraadt@, krw@, mickey@ this change with newline fixes ok krw@
2006-10-03Don't load bad144 bad sector information into disklabels for archs thatKenneth R Westerback
don't have wd* in GENERIC, since wd* is the only place such info is being used. First step of eliminating bad144 bad sector info from all disklabels. 'go go go' deraadt@
2006-10-02One <arm/exec.h> to bind them all.Miod Vallat
2006-10-01Adjust for change of fpu control word.Mark Kettenis
ok deraadt@
2006-10-01Adjust for change of fpu control word.Mark Kettenis
ok deraadt@
2006-10-01Switch fpu control word to the hardware default. This makes us use 64-bitMark Kettenis
precision instead of 53-bit precision, giving us proper support for "long double". ok deraadt@
2006-10-01Switch fpu control word to the hardware default. This makes us use 64-bitMark Kettenis
precision instead of 53-bit precision, giving us proper support for "long double". ok deraadt@
2006-09-29If we don't find a matching CPU signature using the base CPUID call, tryGordon Willem Klok
matching against the extended CPUID (0x80000001) signature. Problem found by, and patch based on work by jason@. ok jason@
2006-09-29kill trailing some spacesMarco Pfatschbacher
2006-09-28Remove an unused file.Kenneth R Westerback
ok deraadt@