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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CB522139337 for ; Thu, 29 Jul 2021 01:24:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E84AE0922; Thu, 29 Jul 2021 01:24:44 +0000 (UTC) Received: from mail-pj1-f49.google.com (mail-pj1-f49.google.com [209.85.216.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46DC8E0922 for ; Thu, 29 Jul 2021 01:24:44 +0000 (UTC) Received: by mail-pj1-f49.google.com with SMTP id o44-20020a17090a0a2fb0290176ca3e5a2fso6814545pjo.1 for ; Wed, 28 Jul 2021 18:24:44 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=pkQldZXZurIzsSmQ9+BsqcTOvOwn4ZEKYXimzVQJRxI=; b=IoGkjZHsSwcD4kahZul00WtaX/001tQjPPhO+xwK6shkbf4kVA9D78OA2ThyYmhE3H E75nHtYLozuXTDUv1ibiYqz4NitC166R5lLYjSAAnsmdUT534AP7hXzjTchGjNpdhzPz YS3kJ6ji3OzPdNxKVBX+0Aba/yutEP/7KlfZyehG4nQ9LWKKTLqn2RIu1xZJF30REpg5 Pljveg+2OEY2lNaYGCYCI6YTLTpqImzvqLUhxLa5uyoPRcI8Pr3r66yzXbpOW1XlxksD HDKDIxvGWgmbqBnelpdneUQl3AK+pR2DtZ5aRlmp84yw/EW/zAywYHn2O51mw3hwy82F Bifw== X-Gm-Message-State: AOAM5335ErfwbfYSNZZ6SwGMra8Lfa1wstW4tUf8S3PSLtZ1vW1MN8xS 6rUxyCETpt3zTBGTR5/EDbVIOzEunfF6IQ== X-Google-Smtp-Source: ABdhPJzjN5hUHUjI2WT26tQL6vmR+CqH1PcrBC4MYf28wo2BTDVLwl9zNnPr3zmKTKKzPo7iV/g9AA== X-Received: by 2002:a17:90b:1297:: with SMTP id fw23mr2537504pjb.115.1627521881908; Wed, 28 Jul 2021 18:24:41 -0700 (PDT) Received: from localhost ([108.161.26.224]) by smtp.gmail.com with ESMTPSA id b22sm7263877pjq.37.2021.07.28.18.24.41 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 28 Jul 2021 18:24:41 -0700 (PDT) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: Matt Turner Subject: [gentoo-catalyst] [PATCH 1/2] targets: Remove dead custom_kopts variable Date: Wed, 28 Jul 2021 18:24:34 -0700 Message-Id: <20210729012435.560803-1-mattst88@gentoo.org> X-Mailer: git-send-email 2.31.1 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 2c146289-150e-4ea5-b5a3-f39654d8a27f X-Archives-Hash: 1690f0e1310a3b97aa6e4c0f60b659aa It looks like this has been dead since 2005. Closes: https://bugs.gentoo.org/804591 Fixes: 1fcca247 ("Removed these as they are moved to the appropriate target directories") Signed-off-by: Matt Turner --- targets/support/bootloader-setup.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/targets/support/bootloader-setup.sh b/targets/support/bootloader-setup.sh index 4cfa61eb..a998a420 100755 --- a/targets/support/bootloader-setup.sh +++ b/targets/support/bootloader-setup.sh @@ -31,7 +31,7 @@ case ${clst_fstype} in esac -default_append_line=(root=/dev/ram0 init=/linuxrc ${cmdline_opts[@]} ${custom_kopts} cdroot) +default_append_line=(root=/dev/ram0 init=/linuxrc ${cmdline_opts[@]} cdroot) case ${clst_hostarch} in alpha) @@ -99,7 +99,6 @@ case ${clst_hostarch} in for x in ${clst_boot_kernel} do eval "kernel_console=\$clst_boot_kernel_${x}_console" - eval custom_kopts=\$${x}_kernelopts echo "menuentry 'Boot LiveCD (kernel: ${x})' --class gnu-linux --class os {" >> ${iacfg} echo " linux ${kern_subdir}/${x} ${default_append_line[@]}" >> ${iacfg} -- 2.31.1