diff options
author | Trevor Woerner <trevor.woerner@linaro.org> | 2014-03-20 17:06:38 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-21 12:05:32 +0000 |
commit | 9b4ea0f2e13e52d860d59d0348a3218af151666b (patch) | |
tree | e338ac64fca085c524c9fa043ec89f068dd67466 /meta/recipes-core/images | |
parent | 4669afac1004a89e6b87ec46136ca3e7448700d4 (diff) | |
download | openembedded-core-contrib-9b4ea0f2e13e52d860d59d0348a3218af151666b.tar.gz |
core-image-minimal: allow user to set size
Allow the user, in their local configuration, to override the size of the
final image. This is useful when creating an image for (for example) an SD
card and the user wants the image to fill up the card as much as possible.
Signed-off-by: Trevor Woerner <trevor.woerner@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/images')
-rw-r--r-- | meta/recipes-core/images/core-image-minimal.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/images/core-image-minimal.bb b/meta/recipes-core/images/core-image-minimal.bb index b82ca464074..9716274c34f 100644 --- a/meta/recipes-core/images/core-image-minimal.bb +++ b/meta/recipes-core/images/core-image-minimal.bb @@ -8,5 +8,5 @@ LICENSE = "MIT" inherit core-image -IMAGE_ROOTFS_SIZE = "8192" +IMAGE_ROOTFS_SIZE ?= "8192" |