Persistent module working.

This commit is contained in:
Ian Gulliver
2016-03-31 16:25:41 -07:00
parent b76e0433a7
commit 571b1a990c
4 changed files with 53 additions and 26 deletions

View File

@@ -75,7 +75,7 @@ class Imager(object):
time.sleep(1) # yuck
self._Exec(
'mkfs.ext4',
'-L', 'boot',
'-L', 'BOOT',
'-F',
self._PartDev(1))
@@ -89,7 +89,7 @@ class Imager(object):
time.sleep(1) # yuck
self._Exec(
'mkfs.ext4',
'-L', 'persistent',
'-L', 'PERSISTENT',
'-F',
self._PartDev(2))