Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-09-19 | constify speedtabs and make ttspeedtab() take a const struct speedtab * | Michael Shalayeff | |
2004-09-18 | add puc; ok miod | Peter Valchev | |
2004-09-16 | Rely upon __LP64__ to choose {U,}LONG_{MIN,MAX} values, rather than a | Miod Vallat | |
homegrown define. ok deraadt@ | |||
2004-09-16 | spacing | Theo de Raadt | |
2004-09-16 | cleanup deafult locators (blah ?); please check that your most hated ↵ | Michael Shalayeff | |
architecture is still fluffy (; | |||
2004-08-16 | Uninline splraise to save some time and space. | Artur Grabowski | |
deraadt@ ok, tested by many for a long time. | |||
2004-08-06 | rename sparc kill_user_windows() to pmap_unuse_final(). provide empty stubs | Theo de Raadt | |
on all other architectures. remove last architecture dependent #ifdef from uvm code. | |||
2004-08-06 | provide md USPACE_ALIGN zero on all but mips; deradat@ pefo@ ok | Michael Shalayeff | |
2004-08-05 | sync usb devs to other archs by adding cdce | David Gwynne | |
ok deraadt@ | |||
2004-08-03 | include some usb ethernet drivers | Theo de Raadt | |
2004-07-18 | minor space savings | Theo de Raadt | |
2004-07-18 | shrink | Theo de Raadt | |
2004-07-13 | errno changes, lib major version bumps, and general flag day | Marco S Hyman | |
To build you must: cd /usr/src && make obj && make includes cd lib/libc && make depend && make && NOMAN=1 sudo make install cd /usr/src && make build | |||
2004-07-13 | #define __HAVE_PMAP_DIRECT and use it. requested by art | Ted Unangst | |
2004-07-07 | skip wdc at isa on media; idea from miod | Theo de Raadt | |
2004-07-06 | assert is dumb dumb dumb; no objection from miod | Theo de Raadt | |
2004-07-05 | remove some stuff to make the blocks slightly smaller. we could go further | Theo de Raadt | |
still. tested by matthieu | |||
2004-07-04 | turn off _KERN_DO_ECOFF unless COMPAT_OSF1 is enabled. This shrinks the | Theo de Raadt | |
ramdisks, too. | |||
2004-07-03 | sigh, not yet | Theo de Raadt | |
2004-07-03 | Cruft removal; ed(4) has been dead for ages. OK deraadt@ miod@ | Todd C. Miller | |
2004-07-03 | oops something went wrong in commit | Theo de Raadt | |
2004-07-03 | {e,}intr{names,cnt} are extinct | Theo de Raadt | |
2004-06-28 | oops | Theo de Raadt | |
2004-06-28 | Use new event counter API for interrupt counting on alpha. By me, with some | Aaron Campbell | |
edits by Theo. deraadt@ ok | |||
2004-06-18 | Correct range validation in sio_iointr(). | Miod Vallat | |
2004-06-18 | Add /dev/crypto support. | Miod Vallat | |
2004-06-13 | debranch SMP, have fun | Niklas Hallqvist | |
2004-06-09 | rename POOLPAGE macros to pmap_map_direct | Ted Unangst | |
break out uvm_km_page bits for this case, no thread here lots of testing tech@, deraadt@, naddy@, mickey@, ... | |||
2004-06-08 | Use cpuid_t whenever possible, rather than an angry combination of long | Miod Vallat | |
there and u_long elsewhere. ok marc@ deraadt@ | |||
2004-06-08 | pull up cpuid_t define from smp branch. Kill alpha specific defininition | Marco S Hyman | |
of cpuid_t. OK art@ deraadt@ | |||
2004-06-08 | pull ncpus support from smp tree into main branch. | Marco S Hyman | |
remove alpha specific definition of ncpus. OK (and tested on alpha) deraadt@ | |||
2004-05-30 | Devices hot plugging support. | Alexander Yurchenko | |
The hotplug pseudo-device passes device attachment and detachment events to userland. When a device attaches or detaches, the corresponding event is queued. The events can then be obtained from the queue through the read(2) call on the /dev/hotplug device file. Each event consists of event type (attach/detach), device class (DV_*) and device name (sd1 e.g.). We have hotplug pseudo-device on alpha, amd64, i386, macppc and sparc64. Since it was tested only on i386 other archs has it commented out in GENERIC until tested. The idea liked peter@ tedu@ drahn@ millert@ marco@ henning@. Ok deraadt@. | |||
2004-05-25 | replace obsolete references to bootpd(8) and bootptab(5) w/ dhcpd(8); | Jason McIntyre | |
from jared yanovich; | |||
2004-05-20 | Properly flush instruction cache for ptrace(PT_WRTIE_{DI}, ...) on powerpc | Mark Kettenis | |
and m68k. ok drahn@, millert@ | |||
2004-04-19 | remove the GATEWAY junk thingy; at the same time, select a new fat | Theo de Raadt | |
cluster value that noone will really need to crank. | |||
2004-04-18 | unify the whole USB section with the already-improved i386 GENERIC | Peter Valchev | |
2004-04-16 | provide MI splaudio(); ok miod | Peter Valchev | |
from RATT | |||
2004-03-17 | Make sure disklabels use at least DEV_BSIZE as their sector size. | Miod Vallat | |
This allows the kernel to survive reading the disklabel off a 256-bytes/sector scsi device... ok deraadt@ | |||
2004-03-10 | Ensure that we obey a user's ddb> boot reboot command even if the system | Tom Cosgrove | |
is cold (during startup). This adds RB_USERREQ to sys/reboot.h, uses it in the ddb commands, and ensures that */*/machdep.c:boot() won't set RB_HALT when cold if this flag is set. ok deraadt@ | |||
2004-02-13 | typo | Jolan Luff | |
2004-02-10 | Add the ptm device to pty(4). By opening /dev/ptm and using the PTMGET | Todd C. Miller | |
ioctl(2), an unprivileged process may allocate a pty and have its owner and mode set appropriately. This means that programs such as xterm and screen no longer need to be setuid. Programs using the openpty() function require zero changes and will "just work". Designed by beck@ and deraadt@; changes by beck@ with cleanup (and a rewrite of the vnode bits) by art@ and tweaks/bugfixes by me. Tested by many. | |||
2004-01-23 | Crank SHMMAXPGS to 32mb; deraadt@ OK for all, drahn@ OK for macppc + pegasos | Todd C. Miller | |
2004-01-22 | dot_conv() is not used. | Miod Vallat | |
2004-01-22 | Nuke ddb_regs common. | Miod Vallat | |
2004-01-16 | cia* is not needed on floppyB, all these machines use tsc*. but at least | Theo de Raadt | |
some of these machines use a ahc* scsi controller. and it still fits! | |||
2004-01-13 | grog EV68 | Theo de Raadt | |
2004-01-13 | support mbuf handling in alpha sgmap dma maps; from netbsd | Theo de Raadt | |
2004-01-13 | need mbuf.h | Theo de Raadt | |
2004-01-12 | match both ALI ISA bridges (more fallout); ok millert | Theo de Raadt | |
2004-01-04 | put INET6, rtsol, and ping6 onto media where it fits. install.sub changes | Theo de Raadt | |
which begin to enable use of this will follow at a later time. |