diff options
author | Koen Kooi <koen@openembedded.org> | 2009-06-09 15:58:07 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-06-09 15:58:07 +0200 |
commit | e91abf92fe3b55ed7a1bed4d75004a5df0b164be (patch) | |
tree | 4391fd1ede90cc37d34c22222c9ac41db94902f0 /conf | |
parent | cd9f778a2146cc0e59a605a0ce748c119f12e47f (diff) | |
parent | 04537a9178db5f9d6c9eaa8f6818b78499dadc56 (diff) |
Merge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into org.openembedded.dev
Diffstat (limited to 'conf')
-rw-r--r-- | conf/distro/kaeilos.conf | 2 | ||||
-rw-r--r-- | conf/distro/minimal.conf | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/conf/distro/kaeilos.conf b/conf/distro/kaeilos.conf index 6d01c773ce..2b3aae879f 100644 --- a/conf/distro/kaeilos.conf +++ b/conf/distro/kaeilos.conf @@ -42,6 +42,8 @@ DISTRO_TYPE ?= "debug" # Also, it appears that no locales fit in 16Mb for now. "C" locale rules! IMAGE_LINGUAS = '${@base_less_or_equal("ROOT_FLASH_SIZE", "16", "", "en-us", d)}' +# increase inode/block ratio for ext2 filesystem +EXTRA_IMAGECMD_ext2 = "-i 4096" # set feed path variables FEED_BASEPATH = "feeds/2008/${ANGSTROM_PKG_FORMAT}/${LIBC}/" diff --git a/conf/distro/minimal.conf b/conf/distro/minimal.conf index c05676cb50..f9c4670c67 100644 --- a/conf/distro/minimal.conf +++ b/conf/distro/minimal.conf @@ -61,6 +61,9 @@ CACHE ?= "${TMPDIR}/cache/${LIBC}/${MACHINE}" DEPLOY_DIR ?= "${TMPDIR}/deploy/${LIBC}" DEPLOY_DIR_IMAGE = "${DEPLOY_DIR}/images/${MACHINE}" +# increase inode/block ratio for ext2 filesystem +EXTRA_IMAGECMD_ext2 = "-i 8192" + ############################################################################# # KERNEL ############################################################################# |