From: Arne Fitzenreiter Date: Tue, 23 Oct 2018 16:58:58 +0000 (+0200) Subject: installer: remove set of pmbr_boot on gpt partitions X-Git-Tag: v2.21-core125~45 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4d0b63baf69b75acb12e8eb54f06c876c79f532e;p=ipfire-2.x.git installer: remove set of pmbr_boot on gpt partitions this fix the efi boot on hdd's larger than 2TB and raid installations. fixes: #11890 Signed-off-by: Arne Fitzenreiter --- diff --git a/src/installer/hw.c b/src/installer/hw.c index 8189aba18c..b329db545b 100644 --- a/src/installer/hw.c +++ b/src/installer/hw.c @@ -706,7 +706,6 @@ int hw_create_partitions(struct hw_destination* dest, const char* output) { if (*dest->part_bootldr) { asprintf(&cmd, "%s set %d bios_grub on", cmd, dest->part_boot_idx); } - asprintf(&cmd, "%s disk_set pmbr_boot on", cmd); } r = mysystem(output, cmd);