* Marc Haber [Mon Sep 25, 2017 at 10:49:56AM +0200]: > On Sun, Sep 17, 2017 at 04:15:26PM +0200, Marc Haber wrote: > > On Sat, Sep 16, 2017 at 02:59:46PM +0200, Michael Prokop wrote: > > > I'd need the full command line output (including the startup message > > > which prompts for user input before execution) to be able to tell > > > you why:
> > > | Executing shell: GRMLBASE/45-grub-images > > > doesn't seem to be executed on your system. > > Pasted below. > Anything more I can do here? I've a guess what's going wrong (I'm just short of time and didn't have time to reproduce it yet). If the attached patch (against latest git) solves your issue I know what would need to be done. regards, -mika-
From 365d35eb56f6abceb38b3f3ebc280f1ffb44b20a Mon Sep 17 00:00:00 2001 From: Michael Prokop <[email protected]> Date: Tue, 26 Sep 2017 13:29:10 +0200 Subject: [PATCH 1/1] Skip boot stuff --- grml-live | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/grml-live b/grml-live index f561355d..a0917b51 100755 --- a/grml-live +++ b/grml-live @@ -972,6 +972,9 @@ if [ "$ARCH" = i386 ] || [ "$ARCH" = amd64 ] ; then log "Skipping stage 'boot' as building with bootstrap only." ewarn "Skipping stage 'boot' as building with bootstrap only." ; eend 0 else + if [ -d "$BUILD_OUTPUT"/boot/isolinux -a -z "$UPDATE" -a -z "$BUILD_ONLY" ] ; then + ewarn "Skipping boot stuff" ; eend 0 + else # booting stuff: mkdir -p "$BUILD_OUTPUT"/boot/isolinux mkdir -p "$BUILD_OUTPUT"/boot/"${SHORT_NAME}" @@ -1273,6 +1276,7 @@ if [ "$ARCH" = i386 ] || [ "$ARCH" = amd64 ] ; then FORCE_ISO_REBUILD=true einfo "Finished execution of stage 'boot'" ; eend 0 + fi fi # BOOTSTRAP_ONLY else log 'Error: Unsupported ARCH, sorry. Want to support it? Contribute!' -- 2.11.0
signature.asc
Description: Digital signature
_______________________________________________ Grml mailing list - [email protected] http://ml.grml.org/mailman/listinfo/grml join #grml on irc.freenode.org grml-devel-blog: http://blog.grml.org/
