diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2015-02-09 00:16:22 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-14 08:40:34 +0000 |
commit | 9f7fe71a10bcdd1864d2f838f3510e96810ef42e (patch) | |
tree | 6ac6eea06786c90b62802ae546381f8035c29b0b /scripts/lib/wic/utils/oe | |
parent | 5f237238a1fab87668068d042ac86b67d2c5224b (diff) | |
download | openembedded-core-9f7fe71a10bcdd1864d2f838f3510e96810ef42e.tar.gz openembedded-core-9f7fe71a10bcdd1864d2f838f3510e96810ef42e.tar.bz2 openembedded-core-9f7fe71a10bcdd1864d2f838f3510e96810ef42e.zip |
wic: allow to configure extra space per partition
Introduce a new option --extra-space instead of using IMAGE_EXTRA_SPACE.
This is useful for boot partitions where the extra space is often
useless or for huge partition where 10MiB may not be enough.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/lib/wic/utils/oe')
-rw-r--r-- | scripts/lib/wic/utils/oe/misc.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/lib/wic/utils/oe/misc.py b/scripts/lib/wic/utils/oe/misc.py index b0b5baab73..fa14fee1ab 100644 --- a/scripts/lib/wic/utils/oe/misc.py +++ b/scripts/lib/wic/utils/oe/misc.py @@ -122,7 +122,6 @@ def add_wks_var(key, val): wks_vars[key] = val BOOTDD_EXTRA_SPACE = 16384 -IMAGE_EXTRA_SPACE = 10240 IMAGE_OVERHEAD_FACTOR = 1.3 __bitbake_env_lines = "" |