From patchwork Tue Jul 27 10:07:07 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 4564 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4GYssn6khqz3xGr for ; Tue, 27 Jul 2021 10:07:25 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4GYssl0MXSz2b1; Tue, 27 Jul 2021 10:07:23 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4GYssk5W3Bz2yd2; Tue, 27 Jul 2021 10:07:22 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4GYssj26M6z2xSG for ; Tue, 27 Jul 2021 10:07:21 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4GYssh2DvnzBX; Tue, 27 Jul 2021 10:07:20 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1627380440; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=FKWtOSN+GYyzvgLyJmjyDUHEC2xaSXqstxYOEvK58YM=; b=fZbyq937G3koI/3vaDAZS4o1ZPd+VYGpf71mr2XRpzfZ3gkVdZDdw9dmW5A3qKUFzr91qg LoBoN23WgVXMbZAw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1627380440; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=FKWtOSN+GYyzvgLyJmjyDUHEC2xaSXqstxYOEvK58YM=; b=A99ZuurVo9YBh7y3FEuWlDJdNClGBEgehjc9ODy1bi9n6KT/ElqhUux7t1mb/vOpGER8QY F9AS0EbqEmNQTre4QBighLBIWNOGBlPd6NLF8Mr2rRMIP+I47xNWlhLZBx6DeU6aDOjjGp xXYw1kFQFCkpyji3XeDD1qunwbHAkbc+5X63H2bINOHGts8BaBvOQCdjVRGp5wAzRy9eK5 8exXDZxUZK9UJzKJo4gZGZW5lFH8Tp2iuXvAUlaX1X9g0HTZ7dtkfgORmW4BjPw5SwVPeL Qplm6nYieuqBDTyyQtP91zWV4WduzJ74ZZ3cGFJyjGMZibNgM6v7Y3t5DEzzxw== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 1/4] flash-images: Label serial console option as "serial" Date: Tue, 27 Jul 2021 10:07:07 +0000 Message-Id: <20210727100710.5331-1-michael.tremer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Signed-off-by: Michael Tremer --- config/flash-images/grub/11_linux_scon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/flash-images/grub/11_linux_scon b/config/flash-images/grub/11_linux_scon index df623f470..68f554386 100755 --- a/config/flash-images/grub/11_linux_scon +++ b/config/flash-images/grub/11_linux_scon @@ -227,7 +227,7 @@ while [ "x$list" != "x" ] ; do fi if [ "x$is_first_entry" = xtrue ]; then - linux_entry "Serial Console: ${OS}" "${version}" simple \ + linux_entry "Serial Console: ${OS}" "${version}" serial \ "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT} console=ttyS0,115200n8" submenu_indentation="\t"