From patchwork Fri Mar 15 06:38:34 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Akihiro Suzuki X-Patchwork-Id: 10854119 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id C7DD617EF for ; Fri, 15 Mar 2019 06:39:09 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id ABDB6295FC for ; Fri, 15 Mar 2019 06:39:09 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 9F95429EFE; Fri, 15 Mar 2019 06:39:09 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from mail.linuxfoundation.org (mail.linuxfoundation.org [140.211.169.12]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id A31BB29D79 for ; Fri, 15 Mar 2019 06:39:08 +0000 (UTC) Received: from mail.linux-foundation.org (localhost [127.0.0.1]) by mail.linuxfoundation.org (Postfix) with ESMTP id 53F00FB1; Fri, 15 Mar 2019 06:39:08 +0000 (UTC) X-Original-To: cip-dev@lists.cip-project.org Delivered-To: cip-dev@mail.linuxfoundation.org Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id 8255CFA9 for ; Fri, 15 Mar 2019 06:39:07 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mo-csw.securemx.jp (mo-csw1515.securemx.jp [210.130.202.154]) by smtp1.linuxfoundation.org (Postfix) with ESMTPS id E483112E for ; Fri, 15 Mar 2019 06:39:06 +0000 (UTC) Received: by mo-csw.securemx.jp (mx-mo-csw1515) id x2F6d5Wi010593; Fri, 15 Mar 2019 15:39:05 +0900 X-Iguazu-Qid: 34tMSo9cvDxrSXDP2y X-Iguazu-QSIG: v=2; s=0; t=1552631945; q=34tMSo9cvDxrSXDP2y; m=vg2LBuQUO1qdty4NmrFKs8Qf7Y8TKhm42+xJ3ZqVJwY= Received: from imx2.toshiba.co.jp (imx2.toshiba.co.jp [106.186.93.51]) by relay.securemx.jp (mx-mr1510) id x2F6d4Rw035529; Fri, 15 Mar 2019 15:39:05 +0900 Received: from enc01.localdomain ([106.186.93.100]) by imx2.toshiba.co.jp with ESMTP id x2F6d48Z022691 for ; Fri, 15 Mar 2019 15:39:04 +0900 (JST) Received: from hop001.toshiba.co.jp ([133.199.164.63]) by enc01.localdomain with ESMTP id x2F6d3lG032334 for ; Fri, 15 Mar 2019 15:39:03 +0900 From: Akihiro Suzuki To: cip-dev@lists.cip-project.org Date: Fri, 15 Mar 2019 15:38:34 +0900 X-TSB-HOP: ON Message-Id: <20190315063834.3788-2-akihiro27.suzuki@toshiba.co.jp> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190315063834.3788-1-akihiro27.suzuki@toshiba.co.jp> References: <20190315063834.3788-1-akihiro27.suzuki@toshiba.co.jp> Subject: [cip-dev] [PATCH] Add a console option to the kernel command line X-BeenThere: cip-dev@lists.cip-project.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: cip-dev-bounces@lists.cip-project.org Errors-To: cip-dev-bounces@lists.cip-project.org X-Virus-Scanned: ClamAV using ClamSMTP This option is required when starting qemu-amd64 with nographic. Signed-off-by: Akihiro Suzuki --- start-qemu.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/start-qemu.sh b/start-qemu.sh index b71ba32..52498fa 100755 --- a/start-qemu.sh +++ b/start-qemu.sh @@ -79,6 +79,7 @@ INITRD_FILE=$(ls ${IMAGE_PREFIX}.initrd.img* | tail -1) if [ -z "${DISPLAY}" ]; then QEMU_EXTRA_ARGS="${QEMU_EXTRA_ARGS} -nographic" + KERNEL_CMDLINE="${KERNEL_CMDLINE} console=ttyS0" fi shift 1