diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-03-04 23:36:50 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-03-04 23:36:50 +0000 |
commit | 0c79fc1147cbff35bc2602f7ddc89e974295b5f7 (patch) | |
tree | 543e4e6c2c9994350288856b374bcf4d38d8671f /conf | |
parent | 151a8207b45bb70ebcdd8978af6f66ce566d591a (diff) |
bitbake.conf: Set default value of ROOT_FLASH_SIZE to something big.
* As common use for ROOT_FLASH_SIZE would be to not include some packages
in the image if it is too small, the default value should be something big.
Use 256Mb as we're on embedded stuff here.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/bitbake.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index 9b58063a4a..0294eb981e 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -449,7 +449,8 @@ OES_BITBAKE_CONF = "1" MACHINE_FEATURES ?= "kernel26" DISTRO_FEATURES ?= "" -ROOT_FLASH_SIZE ?= "0" +# This is used to limit what packages goes into images built, so set big by default +ROOT_FLASH_SIZE ?= "256" GUI_MACHINE_CLASS ?= "smallscreen" |