diff options
| -rw-r--r-- | src/Propellor/Property/Grub.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Property/Grub.hs b/src/Propellor/Property/Grub.hs index a23f12e4..5cb9077d 100644 --- a/src/Propellor/Property/Grub.hs +++ b/src/Propellor/Property/Grub.hs @@ -76,8 +76,8 @@ boots dev = property' ("grub boots " ++ dev) $ \w -> do targetParam :: GrubTarget -> String targetParam t = "--target=" ++ case t of PC -> "i386-pc" - EFI64 -> "i386-efi" - EFI32 -> "x86_64-efi" + EFI32 -> "i386-efi" + EFI64 -> "x86_64-efi" Coreboot -> "i386-coreboot" Xen -> "x86_64-xen" |
