summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-01altq -> new queue in examplesHenning Brauer
From: Arto Jonsson <ajonsson at kapsi.fi>
2013-11-01not just altq queues, queuesHenning Brauer
From: Arto Jonsson <ajonsson at kapsi.fi>
2013-11-01s/£/GBP/ which several people pointed out in my previous diff (many wereStuart Henderson
already present in the file so doing this as a separate commit).
2013-11-01- update UK dialling codes from ofcom informationStuart Henderson
- add 970 (Palestine)
2013-11-01Better report of the system type, to match the OMRON spelling; aoyama@Miod Vallat
2013-11-01get rid of pmap_pdp_cache_generation. it cannt change between where it isDavid Gwynne
set and where it is tested again. instead of using pool ctors, just init the memory out of pool_get. ive been running this on a variety of amd64s without issue for a while now. deraadt also had no problems running it.
2013-11-01replace bare use of disksort with bufqs.David Gwynne
tweaks and ok jmatthew@ testing and ok bcallah@
2013-10-31List all generated files in CLEANFILES.Ingo Schwarze
Issue mentioned by fgs@ on ICB. ok fgs@ bluhm@ krw@
2013-10-31Initialize sun_len, pointed out by deraadt@.Florian Obser
While there also check length of socket path, more relevant now since an alternative socket can be specified. OK benno@
2013-10-31Pipe don't have states. Kill an useless & commented out chunk of code.Martin Pieuchot
No functional change.
2013-10-31If if looks like a duck, swims like a duck, and quacks like a duck, thenAlexander Hall
it's probably is a pre-encrypted password hash. This means that the autoinstall configuration (and interactive password too) does not have to specify a cleartext password. reworked diff originating from krw@ no objections, specifically so from krw@
2013-10-31Convert the route expire timestamp in kernel and routing messageAlexander Bluhm
to 64 bit. Increase the routing message version from 4 to 5. Add a small compatibility layer that allows to set routes with old user land and new kernel. Old kernel with new user land does not work. The compatibility layer ist not perfect, but it allows to configure addresses with old ifconfig and new kernel. Route get also works in this setup. dhclient hangs as messages for interface address changes with old version are not generated. OK claudio@
2013-10-31softraid(4) boot documentation tweaks from jsing@Stefan Sperling
2013-10-31remove commented gpio(4) entry which makes no sense to have on the ramdiskJasper Lievisse Adriaanse
ok aalm@
2013-10-31add proper guard around gpiobus_print() to allow RAMDISK-SUNXI to compileJasper Lievisse Adriaanse
ok aalm@
2013-10-31another stray %dTheo de Raadt
2013-10-31revert previous, net/if.h exports bad things to userspace.pelikan
2013-10-31syncStuart Henderson
2013-10-31convert crypto work queue to the task_add(9) api; ok dlgMike Belopuhov
2013-10-31usbd_pipe2device_handle() is not used, should not be used and die.Martin Pieuchot
2013-10-31Reenable compat_linux.Paul Irofti
Works just fine now with the post-T32 fixes that went in.
2013-10-31Fix readdir_with_callback() after cookies removal.Paul Irofti
The non-cookie path was probably always broken and never used. The file descriptor offset was never updated after a read so glibc and other syscall consumers would end-up in an infinite loop. Tested with the syscalls regression suite from IBM and with opera.
2013-10-31push the queues every 1/HZ using timeout(9)pelikan
This is a modified version of oldtbr_timeout() with a timeout for each HFSC enabled interface. ok henning claudio
2013-10-31Add a header for various hardware implementation dependent registerMartin Pieuchot
(HID) definitions, from FreeBSD with tweaks, instead of defining them in different places. ok kettenis@
2013-10-31syncTheo de Raadt
2013-10-31syncTheo de Raadt
2013-10-31oops, wrong MLINKTheo de Raadt
2013-10-31hide kernel protytypesTheo de Raadt
ok dlg
2013-10-31oopsTheo de Raadt
2013-10-31init memory from pool_get after its allocated rather than using a poolDavid Gwynne
ctor. tweaking, testing and ok deraadt@
2013-10-31sometimes we find .h we no longer needTheo de Raadt
2013-10-31pull in less .h to do the sameTheo de Raadt
2013-10-31replace workqs with tasks. makes the code a bit simpler cos adding an addedDavid Gwynne
task is a nop. tested by and ok jmatthew@
2013-10-31Do not fail the regression tests if python or the scapy package isAlexander Bluhm
not installed. Print a warning, explain the problem and skip the test in this case. Also skip the test if the environment has not been configured for the remote test target machine. Fix the Makefile to run the tests with or without an obj directory. Finally link the netinet6 regression tests into the build.
2013-10-31Make sure -v output is properly aligned with the normal output.Mark Kettenis
2013-10-30Update installation notes to match reality: kernel needs to be loaded by theMiod Vallat
boot blocks now, which - for now - disables tape boot. Also belatedly mention bsd.mp
2013-10-30add "smtpctl show relays" and "smtpctl show hosts" commandsEric Faurot
2013-10-30Remove redundant base adrress printing during attach.Paul Irofti
Okay jasper@
2013-10-30Copy the boot blocks into /boot on the root disk in md_installboot().Miod Vallat
2013-10-30Fix native builds of the luna88k boot block. Install it into /usr/mdec.Miod Vallat
2013-10-30Make yystacksize unsigned to avoid a warning about sign comparisionTodd C. Miller
mismatches. Also store the result of "yyssp - yyss" in a long, not an int. We could use ptrdiff_t but don't want to rely on that type being defined for portability on old systems without it. OK deraadt@
2013-10-30Put all the generic machdep code in armv7_machedep.cSylvestre Gallon
Cleanup the machdep code removing: - useless includes - useless globals and prototypes - useless #if 0 and #if 1 - some style(9) issues This commit will make the bringup of new SoC easier. ok patrick@ jasper@ rapha@
2013-10-30Add missing rcsid.Sylvestre Gallon
ok patrick@ jasper@
2013-10-30It seems an immediate read is necessary when doing a write to an RSLPaul Irofti
register in order to complete the write. Okay miod@
2013-10-30task_systq got removed;Jason McIntyre
2013-10-30Reduce gap at the end of .text from a page to 0x10 bytes. The ELF->a.outMiod Vallat
conversion done in objcopy loses if an alignment smaller than this is requested (and this is probably my {fault,bug}, somewhere in binutils). Shrinks the boot blocks a bit.
2013-10-30Bring getline() - a.k.a libsa gets() with a prompt prefix - in par with libsaMiod Vallat
gets(), featurewise; this means support for ^u to clear the input. Requested by aoyama@
2013-10-30No longer build luna88k kernels as a.out binaries, now that we have a nativeMiod Vallat
bootloader for ELF kernels.
2013-10-30Introduce a private copy of old a.out-capable nlist.c, because bootxxTheo de Raadt
has such a header and we need to tweak it. Non-a.out parts removed, to make this binary small for the install media. ok miod
2013-10-30Fix jagged diagonal lines (kernel part)Alexandr Shadchin
Send WSCONS_EVENT_SYNC every time you call wsmouse_input(). Used to synchronize and separate events into packets of input data changes occurring at the same moment in time. For example, motion of a mouse may set the DELTA_X and DELTA_Y values for one motion, then emit a SYNC. ok matthieu@. tested edd@, Henri Kemppainen and Alf Schlichting.