From: Thomas Veerman Date: Tue, 27 Mar 2012 15:09:37 +0000 (+0000) Subject: boot: use high baud rate by default X-Git-Tag: v3.2.1~635 X-Git-Url: http://zhaoyanbai.com/repos/host.html?a=commitdiff_plain;h=3f775404d9194536bccc36ca1ce75868639ec85d;p=minix.git boot: use high baud rate by default --- diff --git a/docs/UPDATING b/docs/UPDATING index f502e6ec1..4a45e1e55 100644 --- a/docs/UPDATING +++ b/docs/UPDATING @@ -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. diff --git a/sys/arch/i386/stand/lib/boot_params.S b/sys/arch/i386/stand/lib/boot_params.S index 5309aff13..3363e446e 100644 --- a/sys/arch/i386/stand/lib/boot_params.S +++ b/sys/arch/i386/stand/lib/boot_params.S @@ -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 */