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 2D54D15808B for ; Sat, 5 Oct 2024 16:02:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37E772BC01B; Sat, 5 Oct 2024 16:02:02 +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 1873D2BC01B for ; Sat, 5 Oct 2024 16:02:02 +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 23FE2343012 for ; Sat, 5 Oct 2024 16:02:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5BD681BF8 for ; Sat, 5 Oct 2024 16:01:59 +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: <1728144040.5c615b75a52c8604aaf97501f66e086669cc2866.dilfridge@gentoo> Subject: [gentoo-commits] proj/catalyst:dilfridge/qcow2 commit in: targets/support/, targets/diskimage-stage2/, targets/embedded/, ... X-VCS-Repository: proj/catalyst X-VCS-Files: targets/diskimage-stage2/controller.sh targets/embedded/controller.sh targets/livecd-stage2/controller.sh targets/support/bootloader-setup.sh targets/support/iso-bootloader-setup.sh X-VCS-Directories: targets/embedded/ targets/diskimage-stage2/ targets/livecd-stage2/ targets/support/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 5c615b75a52c8604aaf97501f66e086669cc2866 X-VCS-Branch: dilfridge/qcow2 Date: Sat, 5 Oct 2024 16:01:59 +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: 73e66c07-5e54-45aa-9c7e-d237d029ee96 X-Archives-Hash: 5472d3d967f361ecab928a6a0df5c04f commit: 5c615b75a52c8604aaf97501f66e086669cc2866 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Oct 5 16:00:40 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Oct 5 16:00:40 2024 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=5c615b75 Rename targets/support/bootloader-setup.sh to iso-bootloader-setup.sh Signed-off-by: Andreas K. Hüttel gentoo.org> targets/diskimage-stage2/controller.sh | 2 +- targets/embedded/controller.sh | 2 +- targets/livecd-stage2/controller.sh | 2 +- targets/support/{bootloader-setup.sh => iso-bootloader-setup.sh} | 0 4 files changed, 3 insertions(+), 3 deletions(-) diff --git a/targets/diskimage-stage2/controller.sh b/targets/diskimage-stage2/controller.sh index d7a4e731..6d8c93e2 100755 --- a/targets/diskimage-stage2/controller.sh +++ b/targets/diskimage-stage2/controller.sh @@ -60,7 +60,7 @@ case $1 in cp -rv ${clst_chroot_path}/boot/memtest86plus/* $1 fi - ${clst_shdir}/support/bootloader-setup.sh $1 + ${clst_shdir}/support/iso-bootloader-setup.sh $1 ;; unmerge) diff --git a/targets/embedded/controller.sh b/targets/embedded/controller.sh index c2e5994c..58591f98 100755 --- a/targets/embedded/controller.sh +++ b/targets/embedded/controller.sh @@ -55,7 +55,7 @@ case ${1} in # Here is where we poke in our identifier touch ${1}/livecd - ${clst_shdir}/support/bootloader-setup.sh ${1} + ${clst_shdir}/support/iso-bootloader-setup.sh ${1} ;; iso) diff --git a/targets/livecd-stage2/controller.sh b/targets/livecd-stage2/controller.sh index 57d947a1..fb2227fd 100755 --- a/targets/livecd-stage2/controller.sh +++ b/targets/livecd-stage2/controller.sh @@ -147,7 +147,7 @@ case $1 in ;; esac - ${clst_shdir}/support/bootloader-setup.sh $1 + ${clst_shdir}/support/iso-bootloader-setup.sh $1 ;; unmerge) diff --git a/targets/support/bootloader-setup.sh b/targets/support/iso-bootloader-setup.sh similarity index 100% rename from targets/support/bootloader-setup.sh rename to targets/support/iso-bootloader-setup.sh