summaryrefslogtreecommitdiff
path: root/joeyconfig.hs
diff options
context:
space:
mode:
authorJoey Hess2018-09-28 17:02:50 -0400
committerJoey Hess2018-09-28 17:02:50 -0400
commit885a9772adf419d5662a3d81150d5ce7b5b04e0b (patch)
tree94388a8cae2773df92f80dc6f53208e236456605 /joeyconfig.hs
parentedc8c7602384cbc6bf49f82a649d0786400dae35 (diff)
remove boot part
uboot only needs to be in the boot sector of the sd card and can read the kernel from sata, so a separate boot partition on the sd card is not needed. I am not going to automate creating the sd card with uboot in the boot sector with propellor, but it's a simple dd to set up. This way, crappy sd card fsck problems will not prevent booting..
Diffstat (limited to 'joeyconfig.hs')
-rw-r--r--joeyconfig.hs6
1 files changed, 0 insertions, 6 deletions
diff --git a/joeyconfig.hs b/joeyconfig.hs
index 9ee472a6..277fb053 100644
--- a/joeyconfig.hs
+++ b/joeyconfig.hs
@@ -11,7 +11,6 @@ import Propellor.Property.Bootstrap
import qualified Propellor.Property.File as File
import qualified Propellor.Property.Apt as Apt
import qualified Propellor.Property.Network as Network
-import qualified Propellor.Property.Service as Service
import qualified Propellor.Property.Ssh as Ssh
import qualified Propellor.Property.Cron as Cron
import qualified Propellor.Property.Sudo as Sudo
@@ -183,11 +182,6 @@ honeybee = host "honeybee.kitenet.net" $ props
`mountedAt` "/"
`setSize` MegaBytes 8000
)
- & hasPartition
- ( partition EXT4
- `mountedAt` "/boot"
- `setSize` MegaBytes 512
- )
& JoeySites.cubieTruckOneWire
& Apt.installed ["firmware-brcm80211"]