From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7B62F158649 for ; Thu, 11 May 2023 14:47:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C86EE0D69; Thu, 11 May 2023 14:47:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7D243E0D6B for ; Thu, 11 May 2023 14:47:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AA075340A98 for ; Thu, 11 May 2023 14:47:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69AFFA79 for ; Thu, 11 May 2023 14:47:14 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1680269258.f478e8f34af1a45c706f18a34df7f3efa208d581.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/bootloader-setup.sh X-VCS-Directories: targets/support/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: f478e8f34af1a45c706f18a34df7f3efa208d581 X-VCS-Branch: wip/mattst88 Date: Thu, 11 May 2023 14:47:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 08b98be7-04b3-4f0c-8669-3f7315943960 X-Archives-Hash: d7da10056f42b76ef4a859c3e8cabd49 commit: f478e8f34af1a45c706f18a34df7f3efa208d581 Author: Ben Kohler gentoo org> AuthorDate: Wed Mar 29 20:01:32 2023 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Mar 31 13:27:38 2023 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=f478e8f3 bootloader-setup.sh: remove obsolete cmdline args These haven't been needed since kernel 2.4 days, as far as I know. Signed-off-by: Ben Kohler gentoo.org> targets/support/bootloader-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/support/bootloader-setup.sh b/targets/support/bootloader-setup.sh index 065f2bb5..32d86028 100755 --- a/targets/support/bootloader-setup.sh +++ b/targets/support/bootloader-setup.sh @@ -53,7 +53,7 @@ memtest_grub() { fi } -default_append_line=(root=/dev/ram0 init=/linuxrc ${cmdline_opts[@]} cdroot) +default_append_line=(${cmdline_opts[@]} cdroot) case ${clst_hostarch} in alpha)