public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/catalyst:master commit in: targets/embedded/, targets/stage4/, targets/livecd-stage2/
@ 2025-10-03 14:23 Andreas K. Hüttel
  0 siblings, 0 replies; 2+ messages in thread
From: Andreas K. Hüttel @ 2025-10-03 14:23 UTC (permalink / raw
  To: gentoo-commits

commit:     0c97754c1b7fbc96a63a313d72e3e58dff8276a2
Author:     Nowa Ammerlaan <nowa <AT> gentoo <DOT> org>
AuthorDate: Mon May  5 15:44:22 2025 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Oct  3 14:22:19 2025 +0000
URL:        https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=0c97754c

targets/*/controller.sh: pass on all extra arguments to create-iso.sh

Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
Signed-off-by: Nowa Ammerlaan <nowa <AT> gentoo.org>

 targets/embedded/controller.sh      | 2 +-
 targets/livecd-stage2/controller.sh | 2 +-
 targets/stage4/controller.sh        | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/targets/embedded/controller.sh b/targets/embedded/controller.sh
index 58591f98..7570ed08 100755
--- a/targets/embedded/controller.sh
+++ b/targets/embedded/controller.sh
@@ -60,7 +60,7 @@ case ${1} in
 
 	iso)
 		shift
-		${clst_shdir}/support/create-iso.sh ${1}
+		${clst_shdir}/support/create-iso.sh ${@}
 	;;
 
 	clean)

diff --git a/targets/livecd-stage2/controller.sh b/targets/livecd-stage2/controller.sh
index fb2227fd..f92b7921 100755
--- a/targets/livecd-stage2/controller.sh
+++ b/targets/livecd-stage2/controller.sh
@@ -164,7 +164,7 @@ case $1 in
 
 	iso)
 		shift
-		${clst_shdir}/support/create-iso.sh $1
+		${clst_shdir}/support/create-iso.sh ${@}
 		;;
 esac
 exit $?

diff --git a/targets/stage4/controller.sh b/targets/stage4/controller.sh
index 9c1866e4..07e74d3d 100755
--- a/targets/stage4/controller.sh
+++ b/targets/stage4/controller.sh
@@ -61,7 +61,7 @@ case $1 in
 
 	iso)
 		shift
-		${clst_shdir}/support/create-iso.sh $1
+		${clst_shdir}/support/create-iso.sh ${@}
 	;;
 
 	clean)


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] proj/catalyst:master commit in: targets/embedded/, targets/stage4/, targets/livecd-stage2/
@ 2025-10-03 14:23 Andreas K. Hüttel
  0 siblings, 0 replies; 2+ messages in thread
From: Andreas K. Hüttel @ 2025-10-03 14:23 UTC (permalink / raw
  To: gentoo-commits

commit:     fca4dbb1f83dd8d46a568d639272fdbf75f9bfc7
Author:     Nowa Ammerlaan <nowa <AT> gentoo <DOT> org>
AuthorDate: Fri May  9 11:17:13 2025 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Oct  3 14:22:34 2025 +0000
URL:        https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=fca4dbb1

controller.sh: pass on arguments when calling livecdfs-update.sh

Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
Signed-off-by: Nowa Ammerlaan <nowa <AT> gentoo.org>

 targets/embedded/controller.sh      | 3 ++-
 targets/livecd-stage2/controller.sh | 3 ++-
 targets/stage4/controller.sh        | 3 ++-
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/targets/embedded/controller.sh b/targets/embedded/controller.sh
index 7570ed08..99ac8091 100755
--- a/targets/embedded/controller.sh
+++ b/targets/embedded/controller.sh
@@ -46,8 +46,9 @@ case ${1} in
 
 	;;
 	livecd-update)
+		shift
 		# Now, finalize and tweak the livecd fs (inside of the chroot)
-		exec_in_chroot  ${clst_shdir}/support/livecdfs-update.sh
+		exec_in_chroot  ${clst_shdir}/support/livecdfs-update.sh ${@}
 	;;
 
 	bootloader)

diff --git a/targets/livecd-stage2/controller.sh b/targets/livecd-stage2/controller.sh
index f92b7921..2b27a92c 100755
--- a/targets/livecd-stage2/controller.sh
+++ b/targets/livecd-stage2/controller.sh
@@ -55,8 +55,9 @@ case $1 in
 		;;
 
 	livecd-update)
+		shift
 		# Now, finalize and tweak the livecd fs (inside of the chroot)
-		exec_in_chroot ${clst_shdir}/support/livecdfs-update.sh
+		exec_in_chroot ${clst_shdir}/support/livecdfs-update.sh ${@}
 		;;
 
 	rc-update)

diff --git a/targets/stage4/controller.sh b/targets/stage4/controller.sh
index 07e74d3d..77f4d103 100755
--- a/targets/stage4/controller.sh
+++ b/targets/stage4/controller.sh
@@ -40,8 +40,9 @@ case $1 in
 	;;
 
 	livecd-update)
+		shift
 		# Now, finalize and tweak the livecd fs (inside of the chroot)
-		exec_in_chroot ${clst_shdir}/support/livecdfs-update.sh
+		exec_in_chroot ${clst_shdir}/support/livecdfs-update.sh ${@}
 	;;
 
 	bootloader)


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-10-03 14:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-03 14:23 [gentoo-commits] proj/catalyst:master commit in: targets/embedded/, targets/stage4/, targets/livecd-stage2/ Andreas K. Hüttel
  -- strict thread matches above, loose matches on Subject: below --
2025-10-03 14:23 Andreas K. Hüttel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox