From d043433cefb6a98b2e039972f90398e9edd5d074 Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Fri, 2 Dec 2016 21:02:51 +0000 Subject: Skip check for boot partitions when building Live images (mga#19516). --- perl-install/fs/any.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'perl-install/fs') diff --git a/perl-install/fs/any.pm b/perl-install/fs/any.pm index 9dbda0eae..b47ac9f31 100644 --- a/perl-install/fs/any.pm +++ b/perl-install/fs/any.pm @@ -67,9 +67,11 @@ sub set_cdrom_symlink { } sub check_hds_boot_and_root { - my ($all_hds, $fstab) = @_; + my ($all_hds, $fstab, $o_match_all_hardware) = @_; fs::get::root_($fstab) or die "Oops, no root partition"; + return if $o_match_all_hardware; + if (is_uefi()) { if (!fs::get::has_mntpoint("/boot/EFI", $all_hds)) { die N("You must have a ESP FAT32 partition mounted in /boot/EFI"); -- cgit v1.2.1