On Friday 10 February 2006 15:58, Luck, Tony wrote: > > That looks good. You'll probably need to increase your dmesg buffer > > or send the output to a serial port, since you will get megabytes > > of info. > > I only have a serial port on this machine ... but all the interesting > output happens before it is enabled ... i.e. is buffered up in log_buf > until the serial console is brought online.
This is because when you use "console=ttyS0", we can't use that console until we know which device will be "ttyS0". We learn that when the serial driver discovers the devices, which is fairly late. (Most other architectures have hard-coded "ttyS0 is at I/O port 0x3f8" assumptions, which lets them start the console earlier.) But since you have an HP box with an HCDP, you can remove the "console=ttyS0" argument (after making sure that you have only the desired port enabled for EFI console output). In this case, the HCDP table tells us the port address, so we can enable the console very early. Alternatively, you can use "console=uart,mmio,0x<address>", which will also work very early. This works on any box, since it doesn't depend on the HCDP, but you do have to figure out the UART address (it's printed when the serial driver discovers the port). Bjorn - To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
