poky.conf: add largefile support into DISTRO_FEATURES

[YOCTO #1205 ]

The commit ab1171b(busybox: backport distro-features handling from oe
master) actully makes busybox's largefile support disabled. So busybox's
mkswap complains "lseek: Value too large for defined data type" when we
install BSP image into the target device.

So we have to enable largefile support, and bump PR of busybox(in a later
commit).

Note: poky-lsb.conf enables "largefile" and includes poky.conf, so we can
move "largefile"  from poky-lsb.conf into poky.conf.

Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
This commit is contained in:
Dexuan Cui 2011-07-01 17:53:16 +08:00 committed by Richard Purdie
parent ad2363278f
commit 101098bfb4
2 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,7 @@ require conf/distro/poky.conf
DISTRO = "poky-lsb"
DISTROOVERRIDES = "poky:linuxstdbase"
DISTRO_FEATURES_append = " pam largefile"
DISTRO_FEATURES_append = " pam"
PREFERRED_PROVIDER_virtual/libx11 = "libx11"

View File

@ -10,6 +10,8 @@ TARGET_VENDOR = "-poky"
LOCALCONF_VERSION = "1"
DISTRO_FEATURES_append = " largefile"
SDK_NAME = "${DISTRO}-${TCLIBC}-${SDK_ARCH}-${TARGET_ARCH}"
SDKPATH = "/opt/${DISTRO}/${SDK_VERSION}"