From: Chris January Date: Wed, 17 Jun 2020 13:57:33 +0000 (+0100) Subject: configs: Add earlycon to default kernel_cmd. X-Git-Tag: v20.1.0.0~492 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=98ce167176838661833aa43fd8334ca1a0a0a23d;p=gem5.git configs: Add earlycon to default kernel_cmd. The earlyprintk kernel command line argument does not take a value on Arm. Rather pass early console name using the earlycon command line argument. Change-Id: Ie14fc425e87c50a0b59fa4270a3743ed4fe97589 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/31074 Reviewed-by: Andreas Sandberg Maintainer: Andreas Sandberg Tested-by: kokoro --- diff --git a/configs/example/arm/fs_bigLITTLE.py b/configs/example/arm/fs_bigLITTLE.py index 228d11c7f..29f5c6b78 100644 --- a/configs/example/arm/fs_bigLITTLE.py +++ b/configs/example/arm/fs_bigLITTLE.py @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2017, 2019 ARM Limited +# Copyright (c) 2016-2017, 2019-2020 ARM Limited # All rights reserved. # # The license below extends only to copyright in the software and shall @@ -219,7 +219,8 @@ def build(options): m5.ticks.fixGlobalFrequency() kernel_cmd = [ - "earlyprintk=pl011,0x1c090000", + "earlyprintk", + "earlycon=pl011,0x1c090000", "console=ttyAMA0", "lpj=19988480", "norandmaps",