From f2655793676e752f60ee3da817f72ea3ce40b3f1 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 10 Nov 2011 08:36:21 -0500 Subject: [PATCH] parallel-debian: Exclude plymouth Otherwise the boot will stall if there's no plymouth in the target image. --- parallel-debian/gnomeos-make-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parallel-debian/gnomeos-make-image.sh b/parallel-debian/gnomeos-make-image.sh index a3073490..8f107055 100755 --- a/parallel-debian/gnomeos-make-image.sh +++ b/parallel-debian/gnomeos-make-image.sh @@ -200,7 +200,7 @@ OBJ=gnomeos-initrd.img VOBJ=gnomeos-initrd-${kv}.img if ! test -f ${OBJ}; then rm -f ${OBJ}.tmp ${VOBJ}.tmp - $DRACUT -l -v --include `pwd`/ostree_switch_root /sbin/ostree_switch_root ${VOBJ}.tmp + $DRACUT -l -v -o plymouth --include `pwd`/ostree_switch_root /sbin/ostree_switch_root ${VOBJ}.tmp mv ${VOBJ}.tmp ${VOBJ} ln -sf ${VOBJ} gnomeos-initrd.img fi