From 6c410376dfd2188ee9f071a1cc4f2c8cccc25d07 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Fri, 11 Feb 2022 11:45:25 +0000 Subject: [PATCH] gem5/gem-aarch64-native: remove duplicate --command-line The contents of GEM5_RUN_CMDLINE is passed via --command-line, so there is no need to include --command-line in it. Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- meta-gem5/recipes-devtools/gem5/gem5-aarch64-native.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meta-gem5/recipes-devtools/gem5/gem5-aarch64-native.inc b/meta-gem5/recipes-devtools/gem5/gem5-aarch64-native.inc index 0a8e34c1..2fd5206e 100644 --- a/meta-gem5/recipes-devtools/gem5/gem5-aarch64-native.inc +++ b/meta-gem5/recipes-devtools/gem5/gem5-aarch64-native.inc @@ -21,8 +21,7 @@ GEM5_RUN_DISK ?= "*-${MACHINE}.ext4" GEM5_RUN_DTB ?= "${@os.path.basename(d.getVar('KERNEL_DEVICETREE'))}" # Linux command line to pass -GEM5_RUN_CMDLINE ?= "--command-line='earlyprintk=pl011,0x1c090000 \ - console=ttyAMA0 rw mem=512MB root=/dev/sda rootwait'" +GEM5_RUN_CMDLINE ?= "earlyprintk=pl011,0x1c090000 console=ttyAMA0 rw mem=512MB root=/dev/sda rootwait" # Extra arguments to pass to gem5 GEM5_RUN_EXTRA ?= "--mem-size=512MB -n 4 --machine-type=VExpress_GEM5_V2"