summaryrefslogtreecommitdiff
path: root/src/Propellor/Types
diff options
context:
space:
mode:
authorJoey Hess2018-10-13 20:58:37 -0400
committerJoey Hess2018-10-13 20:59:52 -0400
commit5e18093fefe72fbd6028132ba793bb303b1cd3c7 (patch)
tree155a3da4eb1300d4e64d8bf7c24b04050b191f7d /src/Propellor/Types
parent85ae22f03996b2e1ff609e08fb514824878947ef (diff)
name bikeshedding
Diffstat (limited to 'src/Propellor/Types')
-rw-r--r--src/Propellor/Types/Bootloader.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Types/Bootloader.hs b/src/Propellor/Types/Bootloader.hs
index cdb37a31..52a6da02 100644
--- a/src/Propellor/Types/Bootloader.hs
+++ b/src/Propellor/Types/Bootloader.hs
@@ -10,7 +10,7 @@ data BootloaderInstalled
= GrubInstalled GrubTarget
| FlashKernelInstalled
| UbootInstalled (FilePath -> FilePath -> Property Linux)
- | DirectBoot
+ | NoBootloader
deriving (Typeable)
-- | Platforms that grub can boot.
@@ -20,7 +20,7 @@ instance Show BootloaderInstalled where
show (GrubInstalled _) = "GrubInstalled"
show FlashKernelInstalled = "FlashKernelInstalled"
show (UbootInstalled _) = "UbootInstalled"
- show DirectBoot = "DirectBoot"
+ show NoBootloader = "NoBootloader"
instance IsInfo [BootloaderInstalled] where
propagateInfo _ = PropagateInfo False