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 D8E9B15838C for ; Fri, 19 Jan 2024 20:11:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F7DEE29CB; Fri, 19 Jan 2024 20:11:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 EE2EEE29CB for ; Fri, 19 Jan 2024 20:11:31 +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 DF6D434326C for ; Fri, 19 Jan 2024 20:11:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 175E9A15 for ; Fri, 19 Jan 2024 20:11:29 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1705694981.d6a77d90fd511b04b12bd7ae40d710d3d144c077.bkohler@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: /, doc/ X-VCS-Repository: proj/genkernel X-VCS-Files: doc/genkernel.8.txt genkernel X-VCS-Directories: / doc/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: d6a77d90fd511b04b12bd7ae40d710d3d144c077 X-VCS-Branch: master Date: Fri, 19 Jan 2024 20:11:29 +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: 622f7118-433a-4167-b3d0-c595c51051a0 X-Archives-Hash: 640516b0028006c4ccc13697a9a23cd6 commit: d6a77d90fd511b04b12bd7ae40d710d3d144c077 Author: Ben Kohler gentoo org> AuthorDate: Fri Jan 19 20:05:49 2024 +0000 Commit: Ben Kohler gentoo org> CommitDate: Fri Jan 19 20:09:41 2024 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=d6a77d90 doc: add new cmdline options to man page Signed-off-by: Ben Kohler gentoo.org> doc/genkernel.8.txt | 6 ++++++ genkernel | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/genkernel.8.txt b/doc/genkernel.8.txt index 3108dde..571ab06 100644 --- a/doc/genkernel.8.txt +++ b/doc/genkernel.8.txt @@ -241,6 +241,9 @@ LOW-LEVEL COMPILATION OPTIONS when the system running genkernel has a different architecture like the system which should boot the created kernel/initramfs. +*--kernel-cross-compile*=:: + Target triple (i.e. aarch64-linux-gnu) to build kernel for. + *--kernel-ar*=:: Archiver to use for the kernel compilation. @@ -620,6 +623,9 @@ NOTE: System.map filename and System.map symlink name must be different. *--*[*no-*]*firmware*:: Enable or disables copying of firmware into initramfs. +*--*[*no-*]*all-firmware*:: + Enable or disable copying of all firmware into initramfs + *--firmware-dir*=:: Specify directory to copy firmware from (defaults to '/lib/firmware'). diff --git a/genkernel b/genkernel index feaaad6..e825e7f 100755 --- a/genkernel +++ b/genkernel @@ -2,7 +2,7 @@ # $Id$ PATH="${PATH}:/sbin:/usr/sbin" -GK_V='4.3.9' +GK_V='4.3.10' # Normalize locales export LC_ALL=C