diff options
| author | Joey Hess <joeyh@joeyh.name> | 2017-11-17 14:07:12 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2017-11-17 14:07:12 -0400 |
| commit | cd968c5f9439834bad4d9acdc168c16e2dadb190 (patch) | |
| tree | f36e289a18a1aec05aef1d7bf9780543bc6d6263 | |
| parent | a8dacb76dec5cfa9514d7638987ca52b675c9251 (diff) | |
propellor spin
| -rw-r--r-- | src/Propellor/Property/Machine.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Propellor/Property/Machine.hs b/src/Propellor/Property/Machine.hs index afffe143..bea1c040 100644 --- a/src/Propellor/Property/Machine.hs +++ b/src/Propellor/Property/Machine.hs @@ -40,10 +40,10 @@ data Marvell_SheevaPlug_BootDevice marvell_SheevaPlug :: Marvell_SheevaPlug_BootDevice -> Property (HasInfo + DebianLike) marvell_SheevaPlug Marvell_SheevaPlug_SDCard = FlashKernel.installed "Marvell SheevaPlug Reference Board" - `requires` kirkwood + `requires` marvell marvell_SheevaPlug Marvell_SheevaPlug_ESATA = FlashKernel.installed "Marvell eSATA SheevaPlug Reference Board" - `requires` kirkwood + `requires` marvell -- | Cubietech Cubietruck (untested) -- @@ -75,9 +75,9 @@ lpae :: Property DebianLike lpae = checkArchitecture [ARMHF, ARMEL] $ Apt.installed ["linux-image-armmp-lpae"] -kirkwood :: Property DebianLike -kirkwood = checkArchitecture [ARMEL] $ - Apt.installed ["linux-image-kirkwwood"] +marvell :: Property DebianLike +marvell = checkArchitecture [ARMEL] $ + Apt.installed ["linux-image-marvell"] checkArchitecture :: [Architecture] -> Property DebianLike -> Property DebianLike checkArchitecture as p = withOS (getDesc p) $ \w o -> case o of |
