Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F153363153
D1005.id2259.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D1005.id2259.diff
View Options
Index: UPDATING
===================================================================
--- UPDATING
+++ UPDATING
@@ -31,6 +31,18 @@
disable the most expensive debugging functionality run
"ln -s 'abort:false,junk:false' /etc/malloc.conf".)
+20141103:
+ vt(4) is enabled by default. vt(4) brings support for Unicode
+ and double-width characters, as well as integration with the
+ KMS kernel video drivers. vt(4) still has issues and lacks some
+ features compared to syscons(4). See the wiki for up-to-date
+ information:
+ https://wiki.freebsd.org/Newcons
+
+ If you want to keep using syscons(4), you can do so by adding
+ the following line to /boot/loader.conf:
+ kern.vty=sc
+
20141102:
pjdfstest has been integrated into kyua as an opt-in test suite.
Please see share/doc/pjdfstest/README for a more details on how to
Index: sys/kern/kern_cons.c
===================================================================
--- sys/kern/kern_cons.c
+++ sys/kern/kern_cons.c
@@ -689,10 +689,10 @@
vty_selected = vty_prefer;
break;
}
-#if defined(DEV_SC)
- vty_selected = VTY_SC;
-#elif defined(DEV_VT)
+#if defined(DEV_VT)
vty_selected = VTY_VT;
+#elif defined(DEV_SC)
+ vty_selected = VTY_SC;
#endif
} while (0);
Index: sys/sys/param.h
===================================================================
--- sys/sys/param.h
+++ sys/sys/param.h
@@ -58,7 +58,7 @@
* in the range 5 to 9.
*/
#undef __FreeBSD_version
-#define __FreeBSD_version 1100042 /* Master, propagated to newvers */
+#define __FreeBSD_version 1100043 /* Master, propagated to newvers */
/*
* __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Apr 21, 5:37 PM (2 h, 18 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
31923433
Default Alt Text
D1005.id2259.diff (1 KB)
Attached To
Mode
D1005: vt(4): Enable vt(4) by default
Attached
Detach File
Event Timeline
Log In to Comment