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 D4EB8158046 for ; Sat, 12 Oct 2024 15:18:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A92FDE2A52; Sat, 12 Oct 2024 15:18:14 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 813CBE2A52 for ; Sat, 12 Oct 2024 15:18:14 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E52C9343242 for ; Sat, 12 Oct 2024 15:18:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 838821B65 for ; Sat, 12 Oct 2024 15:18:11 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1728746276.c172974ab5b22137b74096d937cd9d0f8ed866bd.dilfridge@gentoo> Subject: [gentoo-commits] proj/catalyst:dilfridge/qcow2 commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/qcow2-installation.sh X-VCS-Directories: targets/support/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: c172974ab5b22137b74096d937cd9d0f8ed866bd X-VCS-Branch: dilfridge/qcow2 Date: Sat, 12 Oct 2024 15:18:11 +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: 19ba4933-a99b-469f-8d6f-dc3572308453 X-Archives-Hash: 88585649d98ec7f72a540d6253b88d95 commit: c172974ab5b22137b74096d937cd9d0f8ed866bd Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Oct 12 15:17:56 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Oct 12 15:17:56 2024 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=c172974a Provide full path for grub-install Signed-off-by: Andreas K. Hüttel gentoo.org> targets/support/qcow2-installation.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/support/qcow2-installation.sh b/targets/support/qcow2-installation.sh index 68dd781b..17f32aa6 100755 --- a/targets/support/qcow2-installation.sh +++ b/targets/support/qcow2-installation.sh @@ -5,5 +5,5 @@ source /tmp/chroot-functions.sh # basic system setup # now we install grub into the future EFI partition -grub-install --verbose --no-floppy --efi-directory=/boot --removable --skip-fs-probe \ +/usr/sbin/grub-install --verbose --no-floppy --efi-directory=/boot --removable --skip-fs-probe \ --no-nvram --no-bootsector --target=x86_64-efi || die "grub-install failed"