Module Name: src
Committed By: martin
Date: Sun Aug 12 14:48:46 UTC 2012
Modified Files:
src/doc [netbsd-6]: CHANGES-6.0
Log Message:
Tickets #472, #473 and #486
To generate a diff of this commit:
cvs rdiff -u -r1.1.2.176 -r1.1.2.177 src/doc/CHANGES-6.0
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/doc/CHANGES-6.0
diff -u src/doc/CHANGES-6.0:1.1.2.176 src/doc/CHANGES-6.0:1.1.2.177
--- src/doc/CHANGES-6.0:1.1.2.176 Sun Aug 12 13:19:14 2012
+++ src/doc/CHANGES-6.0 Sun Aug 12 14:48:46 2012
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-6.0,v 1.1.2.176 2012/08/12 13:19:14 martin Exp $
+# $NetBSD: CHANGES-6.0,v 1.1.2.177 2012/08/12 14:48:46 martin Exp $
A complete list of changes from the initial NetBSD 6.0 branch on 15 Feb 2012
until the 6.0 release:
@@ -7149,4 +7149,27 @@ usr.sbin/perfused/perfused.c 1.24
to avoid looking up ..)
[manu, ticket #438]
+sys/dev/ic/vga.c 1.109
+
+ Reset flip/flop using dedicated vga_reset_state() macro we already have.
+ Explicit vga_raw_read() used here before was incorrect since it reads
+ from *wrong* io handle!
+
+ Fixes weird problem under VirtualBox where first switch to a different
+ VT caused text mode color 0 (normally black) to become something else.
+ [uwe, ticket #472]
+
+
+etc/mtree/NetBSD.dist.base 1.98
+
+ Do not create obsolete ./usr/include/quota directory anymore.
+ [msaitoh, ticket #473]
+
+sys/kern/subr_kmem.c 1.46 (via patch)
+
+ split allocation lookup table to decrease overall memory used
+ making allocator more flexible for allocations larger then 4kb
+ move the encoded "size" under DEBUG back to the begining of allocated
+ chunk
+ [para, ticket #486]