Re: BUG: USB/Reboot

Alan Cox (alan@lxorguk.ukuu.org.uk)
Mon, 30 Apr 2001 23:46:41 +0100 (BST)


> I'm not familiar with that option, where would I be setting it? Or even
> better, where is it documented?

Documentation/kernel-parameters.txt

and arch/i386/kernel/boot.c

switch (*str) {
case 'w': /* "warm" reboot (no memory testing etc) */
reboot_mode = 0x1234;
break;
case 'c': /* "cold" reboot (with memory testing etc) */
reboot_mode = 0x0;
break;
case 'b': /* "bios" reboot by jumping through the BIOS */
reboot_thru_bios = 1;
break;
case 'h': /* "hard" reboot by toggling RESET and/or crashing th
reboot_thru_bios = 0;
break;

Alan

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/