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:58 +0000 |
commit | d84742c39f39fefb7810c6f902cada222c7e4252 (patch) | |
tree | 529035f9ff4e114e23a9b9fbc941c046faaff62b /scripts/lib/wic/utils/oe | |
parent | 605627bc9d9fafc39caa6a802eee6203f520f6a8 (diff) | |
download | poky-d84742c39f39fefb7810c6f902cada222c7e4252.tar.gz |
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.
(From OE-Core rev: 9f7fe71a10bcdd1864d2f838f3510e96810ef42e)
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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): | |||
122 | wks_vars[key] = val | 122 | wks_vars[key] = val |
123 | 123 | ||
124 | BOOTDD_EXTRA_SPACE = 16384 | 124 | BOOTDD_EXTRA_SPACE = 16384 |
125 | IMAGE_EXTRA_SPACE = 10240 | ||
126 | IMAGE_OVERHEAD_FACTOR = 1.3 | 125 | IMAGE_OVERHEAD_FACTOR = 1.3 |
127 | 126 | ||
128 | __bitbake_env_lines = "" | 127 | __bitbake_env_lines = "" |