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 58476138334 for ; Tue, 26 Mar 2019 08:07:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E25AE0899; Tue, 26 Mar 2019 08:07:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 D14F2E0899 for ; Tue, 26 Mar 2019 08:07:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2B224335D00 for ; Tue, 26 Mar 2019 08:07:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6519A58E for ; Tue, 26 Mar 2019 08:07:14 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1553587444.ce40b55a84742a694ad8a02503fbc980e8ff8a63.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_determineargs.sh genkernel.conf X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: ce40b55a84742a694ad8a02503fbc980e8ff8a63 X-VCS-Branch: master Date: Tue, 26 Mar 2019 08:07: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: 76494dce-fb97-48f0-95c2-25cd8728979d X-Archives-Hash: 64727c761340643cffebe6e77ac8f9c2 commit: ce40b55a84742a694ad8a02503fbc980e8ff8a63 Author: Thomas Deutschmann gentoo org> AuthorDate: Tue Mar 26 06:04:25 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Tue Mar 26 08:04:04 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=ce40b55a Initialize booleans with their default value for clarity Signed-off-by: Thomas Deutschmann gentoo.org> gen_determineargs.sh | 62 ++++++++++++++++++++++++++-------------------------- genkernel.conf | 20 ++++++++--------- 2 files changed, 41 insertions(+), 41 deletions(-) diff --git a/gen_determineargs.sh b/gen_determineargs.sh index 1b4a08b..e955540 100755 --- a/gen_determineargs.sh +++ b/gen_determineargs.sh @@ -99,58 +99,58 @@ determine_real_args() { set_config_with_override BOOL SPLASH CMD_SPLASH "no" set_config_with_override BOOL CLEAR_CACHEDIR CMD_CLEAR_CACHEDIR "no" - set_config_with_override BOOL POSTCLEAR CMD_POSTCLEAR - set_config_with_override BOOL MRPROPER CMD_MRPROPER - set_config_with_override BOOL MENUCONFIG CMD_MENUCONFIG - set_config_with_override BOOL GCONFIG CMD_GCONFIG - set_config_with_override BOOL NCONFIG CMD_NCONFIG - set_config_with_override BOOL XCONFIG CMD_XCONFIG - set_config_with_override BOOL CLEAN CMD_CLEAN + set_config_with_override BOOL POSTCLEAR CMD_POSTCLEAR "no" + set_config_with_override BOOL MRPROPER CMD_MRPROPER "yes" + set_config_with_override BOOL MENUCONFIG CMD_MENUCONFIG "no" + set_config_with_override BOOL GCONFIG CMD_GCONFIG "no" + set_config_with_override BOOL NCONFIG CMD_NCONFIG "no" + set_config_with_override BOOL XCONFIG CMD_XCONFIG "no" + set_config_with_override BOOL CLEAN CMD_CLEAN "yes" set_config_with_override STRING MINKERNPACKAGE CMD_MINKERNPACKAGE set_config_with_override STRING MODULESPACKAGE CMD_MODULESPACKAGE set_config_with_override STRING KERNCACHE CMD_KERNCACHE - set_config_with_override BOOL RAMDISKMODULES CMD_RAMDISKMODULES "yes" - set_config_with_override BOOL ALLRAMDISKMODULES CMD_ALLRAMDISKMODULES + set_config_with_override BOOL RAMDISKMODULES CMD_RAMDISKMODULES "yes" + set_config_with_override BOOL ALLRAMDISKMODULES CMD_ALLRAMDISKMODULES "no" set_config_with_override STRING INITRAMFS_OVERLAY CMD_INITRAMFS_OVERLAY - set_config_with_override BOOL MOUNTBOOT CMD_MOUNTBOOT - set_config_with_override BOOL BUILD_STATIC CMD_STATIC - set_config_with_override BOOL SAVE_CONFIG CMD_SAVE_CONFIG - set_config_with_override BOOL SYMLINK CMD_SYMLINK + set_config_with_override BOOL MOUNTBOOT CMD_MOUNTBOOT "yes" + set_config_with_override BOOL BUILD_STATIC CMD_STATIC "no" + set_config_with_override BOOL SAVE_CONFIG CMD_SAVE_CONFIG "yes" + set_config_with_override BOOL SYMLINK CMD_SYMLINK "no" set_config_with_override STRING INSTALL_MOD_PATH CMD_INSTALL_MOD_PATH - set_config_with_override BOOL OLDCONFIG CMD_OLDCONFIG + set_config_with_override BOOL OLDCONFIG CMD_OLDCONFIG "yes" set_config_with_override BOOL SSH CMD_SSH "no" - set_config_with_override BOOL LVM CMD_LVM - set_config_with_override BOOL DMRAID CMD_DMRAID - set_config_with_override BOOL ISCSI CMD_ISCSI - set_config_with_override BOOL HYPERV CMD_HYPERV + set_config_with_override BOOL LVM CMD_LVM "no" + set_config_with_override BOOL DMRAID CMD_DMRAID "no" + set_config_with_override BOOL ISCSI CMD_ISCSI "no" + set_config_with_override BOOL HYPERV CMD_HYPERV "no" set_config_with_override STRING BOOTLOADER CMD_BOOTLOADER "no" set_config_with_override BOOL BUSYBOX CMD_BUSYBOX "yes" set_config_with_override BOOL NFS CMD_NFS "yes" set_config_with_override STRING MICROCODE CMD_MICROCODE "all" set_config_with_override BOOL MICROCODE_INITRAMFS CMD_MICROCODE_INITRAMFS "yes" - set_config_with_override BOOL UNIONFS CMD_UNIONFS - set_config_with_override BOOL NETBOOT CMD_NETBOOT + set_config_with_override BOOL UNIONFS CMD_UNIONFS "no" + set_config_with_override BOOL NETBOOT CMD_NETBOOT "no" set_config_with_override STRING REAL_ROOT CMD_REAL_ROOT - set_config_with_override BOOL DISKLABEL CMD_DISKLABEL - set_config_with_override BOOL LUKS CMD_LUKS - set_config_with_override BOOL GPG CMD_GPG - set_config_with_override BOOL MDADM CMD_MDADM + set_config_with_override BOOL DISKLABEL CMD_DISKLABEL "yes" + set_config_with_override BOOL LUKS CMD_LUKS "no" + set_config_with_override BOOL GPG CMD_GPG "no" + set_config_with_override BOOL MDADM CMD_MDADM "no" set_config_with_override STRING MDADM_CONFIG CMD_MDADM_CONFIG set_config_with_override BOOL E2FSPROGS CMD_E2FSPROGS "no" set_config_with_override BOOL ZFS CMD_ZFS "$(rootfs_type_is zfs)" set_config_with_override BOOL BTRFS CMD_BTRFS "$(rootfs_type_is btrfs)" - set_config_with_override BOOL VIRTIO CMD_VIRTIO "no" - set_config_with_override BOOL MULTIPATH CMD_MULTIPATH - set_config_with_override BOOL FIRMWARE CMD_FIRMWARE + set_config_with_override BOOL VIRTIO CMD_VIRTIO "no" + set_config_with_override BOOL MULTIPATH CMD_MULTIPATH "no" + set_config_with_override BOOL FIRMWARE CMD_FIRMWARE "no" set_config_with_override STRING FIRMWARE_DIR CMD_FIRMWARE_DIR "/lib/firmware" set_config_with_override STRING FIRMWARE_FILES CMD_FIRMWARE_FILES set_config_with_override BOOL FIRMWARE_INSTALL CMD_FIRMWARE_INSTALL "no" - set_config_with_override BOOL INTEGRATED_INITRAMFS CMD_INTEGRATED_INITRAMFS - set_config_with_override BOOL WRAP_INITRD CMD_WRAP_INITRD - set_config_with_override BOOL GENZIMAGE CMD_GENZIMAGE + set_config_with_override BOOL INTEGRATED_INITRAMFS CMD_INTEGRATED_INITRAMFS "no" + set_config_with_override BOOL WRAP_INITRD CMD_WRAP_INITRD "no" + set_config_with_override BOOL GENZIMAGE CMD_GENZIMAGE "no" set_config_with_override BOOL KEYMAP CMD_KEYMAP "yes" - set_config_with_override BOOL DOKEYMAPAUTO CMD_DOKEYMAPAUTO + set_config_with_override BOOL DOKEYMAPAUTO CMD_DOKEYMAPAUTO "no" set_config_with_override STRING BUSYBOX_CONFIG CMD_BUSYBOX_CONFIG set_config_with_override STRING STRIP_TYPE CMD_STRIP_TYPE "modules" set_config_with_override BOOL INSTALL CMD_INSTALL "yes" diff --git a/genkernel.conf b/genkernel.conf index 4574f7c..74e4b04 100644 --- a/genkernel.conf +++ b/genkernel.conf @@ -11,41 +11,41 @@ #INSTALL="yes" # Run 'make oldconfig' before compiling this kernel -OLDCONFIG="yes" +#OLDCONFIG="yes" # Run 'make menuconfig' before compiling this kernel -MENUCONFIG="no" +#MENUCONFIG="no" # Run 'make gconfig' before compiling this kernel -GCONFIG="no" +#GCONFIG="no" # Run 'make nconfig' (ncurses 'menuconfig') before compiling this kernel -NCONFIG="no" +#NCONFIG="no" # Run 'make xconfig' before compiling this kernel -XCONFIG="no" +#XCONFIG="no" # Run 'make clean' before compilation # If set to NO, implies MRPROPER WILL NOT be run # Also, if clean is NO, it won't copy over any configuration # file, it will use what's there. -CLEAN="yes" +#CLEAN="yes" # Run 'make mrproper' before configuration/compilation -MRPROPER="yes" +#MRPROPER="yes" # Override the arch detection #ARCH_OVERRIDE="x86" # Mount BOOTDIR automatically if it isn't mounted -MOUNTBOOT="yes" +#MOUNTBOOT="yes" # Make symlinks in BOOTDIR automatically #SYMLINK="no" # Save the new configuration in /etc/kernels upon # successfull compilation -SAVE_CONFIG="yes" +#SAVE_CONFIG="yes" # Enable color output in genkernel USECOLOR="yes" @@ -140,7 +140,7 @@ USECOLOR="yes" #FIRMWARE_FILES="" # Add disklabel support (copies blkid to initramfs) -DISKLABEL="yes" +#DISKLABEL="yes" # Add new kernel to grub # Possible values: empty/"no", "grub", "grub2"