diff options
author | Awais Belal <awais_belal@mentor.com> | 2016-10-21 16:41:08 +0500 |
---|---|---|
committer | Awais Belal <awais_belal@mentor.com> | 2016-10-21 16:58:39 +0500 |
commit | 07705c7d2dede2edac699d17598b34ff7691db25 (patch) | |
tree | 6afe2e7db62d0c54733b25ff4b391288bcaaefcb /meta-amdfalconx86 | |
parent | 99704e63fdd6dff93ef34600f81efa0702d2d922 (diff) | |
download | meta-amd-07705c7d2dede2edac699d17598b34ff7691db25.tar.gz meta-amd-07705c7d2dede2edac699d17598b34ff7691db25.tar.bz2 meta-amd-07705c7d2dede2edac699d17598b34ff7691db25.zip |
conf: specify serial console prior to vga console
As a best practise the serial consoles should be
provided earlier on the kernel command line than
the vga consoles because the last console is used
for taking user input and is mapped to /dev/console.
Using it differently can break things at places
where conflicting/incorrect serial drivers can
generate a kernel panic in such a scenario.
Signed-off-by: Awais Belal <awais_belal@mentor.com>
Diffstat (limited to 'meta-amdfalconx86')
-rw-r--r-- | meta-amdfalconx86/conf/machine/amdfalconx86.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-amdfalconx86/conf/machine/amdfalconx86.conf b/meta-amdfalconx86/conf/machine/amdfalconx86.conf index e0b158a2..9788ed8e 100644 --- a/meta-amdfalconx86/conf/machine/amdfalconx86.conf +++ b/meta-amdfalconx86/conf/machine/amdfalconx86.conf @@ -38,7 +38,7 @@ SERIAL_CONSOLES = "115200;ttyS0 115200;ttyUSB0" SERIAL_CONSOLES += "115200;ttyS4 115200;ttyS5" # Enable the kernel console on ttyS0/COM0 -APPEND += "console=ttyS0,115200n8" +KERNEL_SERIAL_CONSOLE = "console=ttyS0,115200n8" # Enable powerplay APPEND += "amdgpu.powerplay=1 amdgpu.pg_mask=0" |