2012-01-09 15:07:58 +01:00
|
|
|
/* $NetBSD: boot_params.S,v 1.6 2010/01/17 14:54:44 drochner Exp $ */
|
|
|
|
|
|
|
|
/* Default boot parameters - must match struct x86_boot_params in bootblock.h */
|
|
|
|
|
|
|
|
#ifdef BOOTPARAM_DEFFLAGS
|
|
|
|
.long BOOTPARAM_DEFFLAGS
|
|
|
|
#else
|
|
|
|
.long 0x0
|
|
|
|
#endif
|
|
|
|
.long 5 /* timeout in seconds */
|
|
|
|
.long 0 /* console device 0 => CONSDEV_PC */
|
2013-12-06 12:04:52 +01:00
|
|
|
#if !defined(__minix)
|
|
|
|
.long 9600 /* serial baud rate */
|
|
|
|
#else
|
2012-03-27 17:09:37 +02:00
|
|
|
.long 115200 /* serial baud rate */
|
2013-12-06 12:04:52 +01:00
|
|
|
#endif /* !defined(__minix) */
|
2012-01-09 15:07:58 +01:00
|
|
|
.space 16 /* md5 boot password */
|
|
|
|
.space 64 /* keyboard xlat map */
|
|
|
|
.long 0 /* console ioaddr */
|