From: Michael Chang Date: Thu, 25 Aug 2022 06:05:01 +0000 (+0800) Subject: util/grub-install: Set point of no return for powerpc-ieee1275 install X-Git-Tag: grub-2.12-rc1~252 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=55e6eeab3743fb4d03b0fed76cc750173a14ab5c;p=thirdparty%2Fgrub.git util/grub-install: Set point of no return for powerpc-ieee1275 install The point of no return is used to define a point where no change should be reverted in a wake of fatal error that consequently aborts the process. The powerpc-ieee1275 install apparently missed this point of no return definition that newly installed modules could be inadvertently reverted after successful image embedding so that boot failure is incurred due to inconsistent state. Signed-off-by: Michael Chang Reviewed-by: Daniel Kiper --- diff --git a/util/grub-install.c b/util/grub-install.c index 7b04bd3c5..1c0ece7f1 100644 --- a/util/grub-install.c +++ b/util/grub-install.c @@ -1835,6 +1835,7 @@ main (int argc, char *argv[]) { if (write_to_disk (ins_dev, imgfile)) grub_util_error ("%s", _("failed to copy Grub to the PReP partition")); + grub_set_install_backup_ponr (); } else {