boot: use high baud rate by default
This commit is contained in:
parent
a5190194a0
commit
3f775404d9
@ -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:
|
20120306:
|
||||||
The base system only looks in /usr/pkg/compiler-rt/lib now, so
|
The base system only looks in /usr/pkg/compiler-rt/lib now, so
|
||||||
-L/usr/pkg/lib is gone.
|
-L/usr/pkg/lib is gone.
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
#endif
|
#endif
|
||||||
.long 5 /* timeout in seconds */
|
.long 5 /* timeout in seconds */
|
||||||
.long 0 /* console device 0 => CONSDEV_PC */
|
.long 0 /* console device 0 => CONSDEV_PC */
|
||||||
.long 9600 /* serial baud rate */
|
.long 115200 /* serial baud rate */
|
||||||
.space 16 /* md5 boot password */
|
.space 16 /* md5 boot password */
|
||||||
.space 64 /* keyboard xlat map */
|
.space 64 /* keyboard xlat map */
|
||||||
.long 0 /* console ioaddr */
|
.long 0 /* console ioaddr */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user