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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 972F4158094 for ; Tue, 19 Jul 2022 20:18:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C6676E0636; Tue, 19 Jul 2022 20:18:50 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 418CEE0636 for ; Tue, 19 Jul 2022 20:18:50 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 20F3A340E2A for ; Tue, 19 Jul 2022 20:18:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61F387F for ; Tue, 19 Jul 2022 20:18:47 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1658261917.e8635e7e6c77150eadeefe09301b550bc410a383.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: grs/ X-VCS-Repository: proj/grss X-VCS-Files: grs/Kernel.py X-VCS-Directories: grs/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: e8635e7e6c77150eadeefe09301b550bc410a383 X-VCS-Branch: master Date: Tue, 19 Jul 2022 20:18:47 +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: d21e80f9-8ee4-4cf2-8c6e-4a7f912b620e X-Archives-Hash: 0b28457fc63c7b83c1740bc8d116fdce commit: e8635e7e6c77150eadeefe09301b550bc410a383 Author: Anthony G. Basile gentoo org> AuthorDate: Tue Jul 19 20:18:37 2022 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Tue Jul 19 20:18:37 2022 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=e8635e7e grs/Kernel.py: use new name --kernel-modules-prefix Signed-off-by: Anthony G. Basile gentoo.org> grs/Kernel.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/grs/Kernel.py b/grs/Kernel.py index 3abea6a..1f9ba31 100644 --- a/grs/Kernel.py +++ b/grs/Kernel.py @@ -131,12 +131,12 @@ class Kernel(): cmd += '--makeopts=-j9 ' cmd += '--symlink ' cmd += '--no-mountboot ' - cmd += '--kernel-config=%s ' % self.kernel_config - cmd += '--kerneldir=%s ' % kernel_source - cmd += '--bootdir=%s ' % boot_dir - cmd += '--module-prefix=%s ' % image_dir - cmd += '--modprobedir=%s ' % modprobe_dir - cmd += '--arch-override=%s ' % arch + cmd += '--kernel-config=%s ' % self.kernel_config + cmd += '--kerneldir=%s ' % kernel_source + cmd += '--bootdir=%s ' % boot_dir + cmd += '--kernel-modules-prefix=%s ' % image_dir + cmd += '--modprobedir=%s ' % modprobe_dir + cmd += '--arch-override=%s ' % arch if os.path.isfile(self.busybox_config): cmd += '--busybox-config=%s ' % self.busybox_config if os.path.isfile(self.genkernel_config):