index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2019-06-09 20:46:23 +0200 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2019-06-09 20:46:23 +0200 |
commit | f7cb0b819a087e7171205590678fc8a6da7cadff (patch) | |
tree | 137de5b70cc9bc590f76b37d91c52b0b24291483 | |
parent | 55304a7cab19d6be36ba9200f8e2682f1d9cfa3d (diff) |
-rw-r--r-- | archinstall.py | 3 |
diff --git a/archinstall.py b/archinstall.py index 2971b28e..4d91cd9c 100644 --- a/archinstall.py +++ b/archinstall.py @@ -302,8 +302,9 @@ def grab_partitions(dev): r = json.loads(o.decode('UTF-8')) if len(r['blockdevices']) and 'children' in r['blockdevices'][0]: for part in r['blockdevices'][0]['children']: + size = os.statvfs(dev + part['name'][len(drive_name):]) parts[part['name'][len(drive_name):]] = { - # TODO: Grab partition info and store here? + 'size' : size.f_frsize * size.f_bavail } return parts |