On Mon, Feb 13, 2023 at 10:17:57AM +0000, Nikos Nikoleris wrote: ... > --- a/configure > +++ b/configure > @@ -208,14 +208,19 @@ else > fi > fi > > -if [ "$efi" ] && [ "$arch" != "x86_64" ]; then > +if [ "$efi" ] && [ "$arch" != "x86_64" ] && [ "$arch" != "arm64" ]; then > echo "--[enable|disable]-efi is not supported for $arch" > usage > fi Need to also update the usage text with - --[enable|disable]-efi Boot and run from UEFI (disabled by default, x86_64 only) + --[enable|disable]-efi Boot and run from UEFI (disabled by default, x86_64 and arm64 only) Thanks, drew