summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1999-09-06Add scrollback support to the pcvt (i386 only) console driver.Aaron Campbell
Press LEFT_SHIFT+PGUP/PGDN to navigate. Number of buffered pages is currently only configurable by editing sys/arch/i386/isa/pcvt/pcvt_hdr.h and changing the SCROLLBACK_PAGES constant. You must add "option PCVT_SCROLLBACK" to your kernel config file to enable this support, or uncomment it from sys/arch/i386/conf/GENERIC. Known issues: - Few little buglets when switching line (font) or column modes in scon(1). - Can't hold down LEFT_SHIFT+PGUP/PGDN keys. This will be fixed... Idea from Linux, code by me.
1999-09-05Use stathz to calculate CPU time when available; fixes CPU calculationThorsten Lockert
problems when stathz runs at different speed than hz/profhz.
1999-09-05Support for ATAPI tapes, works but still has some rough edges. Some style.Niklas Hallqvist
1999-09-05styleNiklas Hallqvist
1999-09-05ATAPI tapes are always fixed blocksizeNiklas Hallqvist
1999-09-05use small font if size <= 800x600 (was if size < 800x600)Jason Wright
1999-09-05Put choose_temp_base call back in msdos dependent code.Marc Espie
(from the egcs mainline, code by myself). This should remove the last use of choose_temp_base. Once I've rebuilt the whole tree, there's another patch to make that code properly #ifdef MSDOS.
1999-09-05support for the "short" mouse protocol on tadpole; from netbsdJason Wright
1999-09-05New man pages, adapted from NetBSD.Marc Espie
Add corresponding cross-references. Missed some uses of .Dv.
1999-09-05Document show extentsMarc Espie
1999-09-05SIMPLEQ_END for symetryMarc Espie
1999-09-05Document newer queue macros.Marc Espie
1999-09-04Actually, vi file recivery was not happening on reboot due to aTodd C. Miller
mistaken assumption. Noted by dynamo@ime.net. Fixed by moving the check for meta character expansion to be inside the two for loops. They are expanded by simple assignment.
1999-09-04Ignore /var/tmp/vi.recover if it is a symlink or owned by non-root.Todd C. Miller
Probably just paranoia (since /var/tmp/vi.recover is created the first time the machine is booted) but it can't hurt.
1999-09-04Check to make sure vi recovery files are normal files before tryingTodd C. Miller
to read from them (this is a user-writable directory so it is possible to play games). Fixes a possible DOS noted by dynamo@ime.net. If it's not a regular file, we delete it.
1999-09-04add entries for fga, scf, and flashJason Wright
1999-09-04syncTheo de Raadt
1999-09-04Using .Li inside a .Bd -literal block messes up the fonts thereafter;Paul Janzen
.Li ... -> \&...
1999-09-03entropy saving moved to rcTheo de Raadt
1999-09-03typoTheo de Raadt
1999-09-03md_questions() interface allows asking questions before setsTheo de Raadt
1999-09-03remove a questionTheo de Raadt
1999-09-03in pmap_enter4m use access_type to set the initial mod/ref flags on the pvArtur Grabowski
1999-09-03use setpgt4m for the initial mappings too, not that it really matters sinceArtur Grabowski
those pages are already uncached when needed, but it makes it more obvious what happens here.
1999-09-03Horrible workaround for hanging mount_mfs processes that received a signal.Artur Grabowski
After finding the third deadlock during dounmount, I decided that it would be less painful to let the unmounting be handled with a separate thread. XXX - this is a kludge.
1999-09-03proto bcrypt_gensalt()Theo de Raadt
1999-09-03sizeof("string") includes 0 byte; aazubel@tatu.cnba.uba.arTheo de Raadt
1999-09-03have shutdown code run /etc/rc with arg of "shutdown"; rc.shutdown becomes ↵Theo de Raadt
completely admin-editable
1999-09-03We have to set the pagetable pointers with the atomic swap instruction.Artur Grabowski
From NetBSD. (actually from a paper I read recently, but since NetBSD already did that it was easier to grab the code from them)
1999-09-03Change the pmap_enter api to pass down an argument that indicatesArtur Grabowski
the access type that caused this mapping. This is to simplify pmaps with mod/ref emulation (none for the moment) and in some cases speed up pmap_is_{referenced,modified}. At the same time, clean up some mappings that had too high protection. XXX - the access type is incorrect in old vm, it's only used by uvm and MD code. The actual use of this in pmap_enter implementations is not in this commit.
1999-09-03Use strtol() and strtoul() instead of atoi(). This allows us to catchTodd C. Miller
errors reasonably and deal correctly with unsigned quantities.
1999-09-03inet_ntoa4 should manage 4-calls, not just 2Hakan Olsson
1999-09-03Don't delete the cache on down/up transitions unless it's empty. InsteadJason Wright
flush the dynamics. Required other handling of the cache table to accomodate. Modify SIOCBRDGFLUSH to handle flushall and flush dynamic requests.
1999-09-03unbreak brakeHugh Graham
1999-09-03Mention ext2fs, use the .Ux macro instead of saying UNIX.Todd C. Miller
1999-09-03o make this look more like an OpenBSD driver (removed static's)Jason Wright
o partial merge with freebsd, alpha support (currently untested)
1999-09-03syncTheo de Raadt
1999-09-02it was apm v1.1 all the timeMichael Shalayeff
1999-09-02syncDavid Leonard
1999-09-02Treat kern.hostid as a u_int, and clean up parsing of integers on the commandPaul Janzen
line.
1999-09-02Make it read a little better and add a SEE ALSO section.Aaron Campbell
1999-09-02document Ft (Function Type); espie@Aaron Campbell
1999-09-02Missed that one.Marc Espie
1999-09-02Minor fusses: OpenBSD tag, misused macros, codes references path.Marc Espie
1999-09-02Explain CODE REFERENCES just once.Marc Espie
1999-09-02More manpages.Marc Espie
1999-09-02awk -> .Xr awk 1Aaron Campbell
1999-09-02ttys(5), not tty(5)Aaron Campbell
1999-09-02insert missing commaAaron Campbell
1999-09-02use DvAaron Campbell