boot: use high baud rate by default

This commit is contained in:
Thomas Veerman 2012-03-27 15:09:37 +00:00
parent a5190194a0
commit 3f775404d9
2 changed files with 18 additions and 1 deletions

View file

@ -1,3 +1,20 @@
20120328:
The boot loader now defaults to 115200 baud rate to make booting over
serial more pleasant. To install the new boot loader do
# cd /usr/src/sys
# make clean install
# updateboot
To boot over serial add the following to /etc/boot.cfg.local (create
the file if not present):
menu=Start latest serial MINIX 3:load_mods /boot/minix_latest/mod*;multiboot /boot/minix_latest/kernel rootdevname=c0d0p0s0 cttyline=0 cttybaud=115200
consdev=com0
To install the new boot configuration run
# update_bootcfg
20120306:
The base system only looks in /usr/pkg/compiler-rt/lib now, so
-L/usr/pkg/lib is gone.

View file

@ -9,7 +9,7 @@
#endif
.long 5 /* timeout in seconds */
.long 0 /* console device 0 => CONSDEV_PC */
.long 9600 /* serial baud rate */
.long 115200 /* serial baud rate */
.space 16 /* md5 boot password */
.space 64 /* keyboard xlat map */
.long 0 /* console ioaddr */