From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (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 lists.proxmox.com (Postfix) with ESMTPS id 8D4EE6345C for ; Mon, 14 Feb 2022 16:58:26 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 84CE2258B3 for ; Mon, 14 Feb 2022 16:57:56 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (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 firstgate.proxmox.com (Proxmox) with ESMTPS id DAAEB2588E for ; Mon, 14 Feb 2022 16:57:54 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id B15C2461F3 for ; Mon, 14 Feb 2022 16:57:54 +0100 (CET) From: Stoiko Ivanov To: pve-devel@lists.proxmox.com Date: Mon, 14 Feb 2022 16:57:35 +0100 Message-Id: <20220214155737.1444136-6-s.ivanov@proxmox.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220214155737.1444136-1-s.ivanov@proxmox.com> References: <20220214155737.1444136-1-s.ivanov@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.234 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pve-devel] [PATCH pve-kernel-meta 5/5] proxmox-boot: allow to manually specify bootloader X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Feb 2022 15:58:26 -0000 this commit adds the optional [--legacy|--uefi] arguments to `p-b-t init`. If provided the respective boot-loader is installed (regardless of what is found on the esp, and of the boot-mode) This should make switching the boot-mode possible without the need to boot into a live CD, chrooting and manually running the necessary p-b-t commands. Signed-off-by: Stoiko Ivanov --- bin/proxmox-boot-tool | 47 ++++++++++++++++++++++++++++--------------- 1 file changed, 31 insertions(+), 16 deletions(-) diff --git a/bin/proxmox-boot-tool b/bin/proxmox-boot-tool index c697f64..68401ee 100755 --- a/bin/proxmox-boot-tool +++ b/bin/proxmox-boot-tool @@ -126,6 +126,7 @@ format() { init_bootloader() { part="$1" + mode="$2" install_sd_boot="" install_grub="" @@ -153,17 +154,25 @@ init_bootloader() { echo "Mounting '$part' on '$esp_mp'." mount -t vfat "$part" "$esp_mp" - if [ -e "${esp_mp}/$PMX_LOADER_CONF" ]; then - install_sd_boot=1 - fi - if [ -d "${esp_mp}/grub" ]; then - install_grub=1 - fi - # always init for the current boot-mode - if [ -d /sys/firmware/efi ]; then - install_sd_boot=1 + if [ -n "$mode" ]; then + if [ "$mode" = "--uefi" ]; then + install_sd_boot=1 + elif [ "$mode" = "--legacy" ]; then + install_grub=1 + fi else - install_grub=1 + if [ -e "${esp_mp}/$PMX_LOADER_CONF" ]; then + install_sd_boot=1 + fi + if [ -d "${esp_mp}/grub" ]; then + install_grub=1 + fi + # always init for the current boot-mode + if [ -d /sys/firmware/efi ]; then + install_sd_boot=1 + else + install_grub=1 + fi fi if [ -n "$install_sd_boot" ]; then @@ -192,7 +201,6 @@ init_bootloader() { fi echo "Unmounting '$part'." umount "$part" - echo "Adding '$part' to list of synced ESPs.." _add_entry_to_list_file "$ESP_LIST" "$UUID" @@ -339,7 +347,7 @@ usage() { warn "USAGE: $0 [ARGS]" warn "" warn " $0 format [--force]" - warn " $0 init " + warn " $0 init [--legacy|--uefi]" warn " $0 reinit" warn " $0 clean [--dry-run]" warn " $0 refresh [--hook ]" @@ -530,10 +538,17 @@ case "$1" in usage exit 1 fi - init_bootloader "$@" - echo "Refreshing kernels and initrds.." - refresh - exit 0 + if [ -z "$2" ] || [ "$2" = "--legacy" ] || [ "$2" = "--uefi" ]; then + init_bootloader "$@" + echo "Refreshing kernels and initrds.." + refresh + exit 0 + else + warn "E: invalid 'init' mode '$2'." + warn "" + usage + exit 1 + fi ;; 'reinit') reexec_in_mountns "$@" -- 2.30.2