diff options
Diffstat (limited to 'Documentation/kernel-parameters.txt')
-rw-r--r-- | Documentation/kernel-parameters.txt | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index 4609e81dbc37..b5cfd047becb 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
@@ -757,19 +757,31 @@ bytes respectively. Such letter suffixes can also be entirely omitted. | |||
757 | (mmio) or 32-bit (mmio32). | 757 | (mmio) or 32-bit (mmio32). |
758 | The options are the same as for ttyS, above. | 758 | The options are the same as for ttyS, above. |
759 | 759 | ||
760 | earlyprintk= [X86,SH,BLACKFIN] | 760 | earlyprintk= [X86,SH,BLACKFIN,ARM] |
761 | earlyprintk=vga | 761 | earlyprintk=vga |
762 | earlyprintk=xen | 762 | earlyprintk=xen |
763 | earlyprintk=serial[,ttySn[,baudrate]] | 763 | earlyprintk=serial[,ttySn[,baudrate]] |
764 | earlyprintk=serial[,0x...[,baudrate]] | ||
764 | earlyprintk=ttySn[,baudrate] | 765 | earlyprintk=ttySn[,baudrate] |
765 | earlyprintk=dbgp[debugController#] | 766 | earlyprintk=dbgp[debugController#] |
766 | 767 | ||
768 | earlyprintk is useful when the kernel crashes before | ||
769 | the normal console is initialized. It is not enabled by | ||
770 | default because it has some cosmetic problems. | ||
771 | |||
767 | Append ",keep" to not disable it when the real console | 772 | Append ",keep" to not disable it when the real console |
768 | takes over. | 773 | takes over. |
769 | 774 | ||
770 | Only vga or serial or usb debug port at a time. | 775 | Only vga or serial or usb debug port at a time. |
771 | 776 | ||
772 | Currently only ttyS0 and ttyS1 are supported. | 777 | Currently only ttyS0 and ttyS1 may be specified by |
778 | name. Other I/O ports may be explicitly specified | ||
779 | on some architectures (x86 and arm at least) by | ||
780 | replacing ttySn with an I/O port address, like this: | ||
781 | earlyprintk=serial,0x1008,115200 | ||
782 | You can find the port for a given device in | ||
783 | /proc/tty/driver/serial: | ||
784 | 2: uart:ST16650V2 port:00001008 irq:18 ... | ||
773 | 785 | ||
774 | Interaction with the standard serial driver is not | 786 | Interaction with the standard serial driver is not |
775 | very good. | 787 | very good. |