summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-06-01- section reorderJason McIntyre
- merge COMPATIBILITY - kill whitespace at EOL
2003-06-01- section reorderJason McIntyre
- kill unnecessary .Ns macros - add some man page section numbers to .Xr's
2003-06-01initialize minaddr before calling uvm_km_suballoc.Artur Grabowski
2003-06-01strcpy/strcat/sprintf removal in all bootblocks. various testing byTheo de Raadt
various people. outside of some messy things in src/gnu, only one thing in the main tree now violates this rule: bind
2003-06-01syncTheo de Raadt
2003-06-01uvm_km_suballoc passes the 'min' argument untouched to uvm_map. uvm_mapArtur Grabowski
uses it as a hint for where to steal space from the parent map. We've been passing random stack garbage as that hint for ages. It's a wonder it didn't break things until we started working on Hammer. noone objected for at least a week.
2003-06-01When searching for the symbol table and string table we were lookingArtur Grabowski
for ".symtab" and ".strtab" in the section names. Instead of doing that, look for section type SHT_SYMTAB for the symbol table and follow the link in sh_link to find the corresponding string table. This is a more correct way of doing things and will work better when the toolchain doesn't generate ".symtab" and ".strtab" names and it will work when there are multiple symbol tables. noone objected to this diff for at least a week.
2003-06-01various format string cleanups; tedu okTheo de Raadt
2003-06-01Revert ep0 removal, deraadt@ objects.Miod Vallat
2003-06-01syncTheo de Raadt
2003-06-01spelling, prelevant -> prevalentTed Unangst
2003-06-01Typo in panic message.Miod Vallat
2003-06-01Remove unused variable.Miod Vallat
2003-06-01Partial mvme88k sets sync. May contain a few innacuracies, but will helpMiod Vallat
future updates.
2003-05-31It makes no sense to defineMiod Vallat
ep0 at foobus? ep* at foobus? for up to three different buses. Just get rid of the ep0 entry. To be fair, config(8) ought to complain for such a syntax - hard coded device number should be unique.
2003-05-31syncMatthieu Herrb
2003-05-31real register definitions for the brooktree 451/457/458 on the cgsix andJason Wright
cgthree. ok miod.
2003-05-31nVidia NV18 graphics chips from XFree86. Ok deraadt@Matthieu Herrb
2003-05-31Don't use orw with a > 16 bits constant.Miod Vallat
2003-05-31only return 8 bits of statusTheo de Raadt
2003-05-31Unpeeing as pointed out by Dries Schellekens.Tobias Weingartner
ok miod@
2003-05-31Remove a bunch of obsolete definitions.Miod Vallat
2003-05-31syncTheo de Raadt
2003-05-31First lba support in /boot. Not complete lba boot support, but it's theTobias Weingartner
first step on the way there. Ok deraadt@, espie@, todd@, and others.
2003-05-30- whitespace at EOLJason McIntyre
- remove unnecessary macros - section reorder in getrpcent(3)
2003-05-30section reorder;Jason McIntyre
2003-05-30- section reorderJason McIntyre
- macro cleanup
2003-05-30make a dynamic one to quiet the whinersTheo de Raadt
2003-05-30o timeout is int, not u_int32_tHenning Brauer
o reject negative timeouts ok jason@
2003-05-30KNF & ANSI, jason agreesHenning Brauer
2003-05-30section reorder;Jason McIntyre
2003-05-30kill an unused variableMichael Shalayeff
2003-05-30Add pmdb to the build.Miod Vallat
ok deraadt@
2003-05-30m88k pmdb support bits; only compile-tested at the moment.Miod Vallat
2003-05-30Working process core dumps, borrowed from m68k code.Miod Vallat
2003-05-30i sent you the damn working diff, didn't i?Michael Shalayeff
2003-05-30Sync the core dump routine with hp300; generates correct coredumps again.Miod Vallat
2003-05-30o the timeout is int, not u_int32_tHenning Brauer
o check timeout for negative values and overflow ok tedu@ jason@
2003-05-30the secgtion is called QUEUEING, not QUEUE RULES, so point people toHenning Brauer
QUEUEING and not QUEUE RULES... found by Joel Knight
2003-05-30- section reorderJason McIntyre
- whitespace at EOL
2003-05-30string cleaning; ok jakob, teduTodd T. Fries
2003-05-30Fix BREAKPOINT_DECR_PC value.Miod Vallat
2003-05-30Preliminary m68k pmdb support.Miod Vallat
Currently, this works as well as gdb, i.e. breakpoints do not work. Will be fixed soon, hopefully.
2003-05-30Move env setup to its own function, works around compiler problem on sparcDale Rahn
LD_NORANDOM is now disabled on issetugid().
2003-05-30Fix dependancy building for ELF startup code. Changed MakefilesDale Rahn
to build startup code the same on all (ELF) archs. hppa ok mickey@
2003-05-30Handle process_load() failure. This prevents "pmdb foo" to dump core uponMiod Vallat
run command, if foo does not exist. ok art@
2003-05-30- correct macro usageJason McIntyre
- section reorder
2003-05-30knfTheo de Raadt
2003-05-30Unbreak tree for sparc, zapping ld_norandom strangely has a bad affect,Dale Rahn
killing ld.so.
2003-05-30- clean up macro abuseJason McIntyre
- section reorder - merge COMPATIBILITY