From 890341694c407fed77b817ccef1f1f70c3506378 Mon Sep 17 00:00:00 2001 From: Pablo Greco Date: Jul 13 2019 15:32:48 +0000 Subject: Leave more space (4MB) for uboot before the first partition Uboot is getting bigger, and in some cases, it doesn't even fit in 1MB (like BeagleBoneBlack). Start the first partition at 4MB to leave more space. --- diff --git a/appcreate/partitionedfs.py b/appcreate/partitionedfs.py index b738b80..b2b0413 100644 --- a/appcreate/partitionedfs.py +++ b/appcreate/partitionedfs.py @@ -90,7 +90,7 @@ class PartitionedMount(Mount): p['type'] = 'primary' p['num'] = d['numpart'] if d['offset'] == 0: - d['offset'] = 1 + d['offset'] = 4 p['start'] = d['offset'] d['offset'] += p['size'] d['partitions'].append(n)