From a33bdf051903cbb8d08cc7021c932e55642f9fb1 Mon Sep 17 00:00:00 2001 From: Neil Williams Date: Fri, 6 Nov 2015 15:11:39 +0000 Subject: Allow arm64 without UEFI only if squash is set UEFI files do not go inside the squashfs, configured separately later. --- vmdebootstrap/uefi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vmdebootstrap') diff --git a/vmdebootstrap/uefi.py b/vmdebootstrap/uefi.py index bf04ae8..674dd78 100644 --- a/vmdebootstrap/uefi.py +++ b/vmdebootstrap/uefi.py @@ -50,7 +50,7 @@ class Uefi(Base): 'You must specify use-uefi for esp-size to have effect') if self.settings['arch'] in arch_table and\ arch_table[self.settings['arch']]['exclusive'] and\ - not self.settings['use-uefi']: + (not self.settings['use-uefi'] and not self.settings['squash']): raise cliapp.AppException( 'Only UEFI is supported on %s' % self.settings['arch']) elif self.settings['use-uefi'] and self.settings['arch'] not in arch_table: -- cgit v1.2.1