diff options
author | Dexuan Cui <dexuan.cui@intel.com> | 2011-07-01 17:53:16 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-02 00:40:45 +0100 |
commit | 101098bfb47bfe1096124c3ce6dd73d58b8c9e0e (patch) | |
tree | 19cfb7329b74b6b3dcda1067a285fda6d1ba18d4 /meta-yocto/conf | |
parent | ad2363278f0ea86fcf3464f8f6073d3a3d06be63 (diff) | |
download | poky-101098bfb47bfe1096124c3ce6dd73d58b8c9e0e.tar.gz |
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>
Diffstat (limited to 'meta-yocto/conf')
-rw-r--r-- | meta-yocto/conf/distro/poky-lsb.conf | 2 | ||||
-rw-r--r-- | meta-yocto/conf/distro/poky.conf | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/meta-yocto/conf/distro/poky-lsb.conf b/meta-yocto/conf/distro/poky-lsb.conf index 49d12da060..355161bbf4 100644 --- a/meta-yocto/conf/distro/poky-lsb.conf +++ b/meta-yocto/conf/distro/poky-lsb.conf | |||
@@ -3,7 +3,7 @@ require conf/distro/poky.conf | |||
3 | DISTRO = "poky-lsb" | 3 | DISTRO = "poky-lsb" |
4 | DISTROOVERRIDES = "poky:linuxstdbase" | 4 | DISTROOVERRIDES = "poky:linuxstdbase" |
5 | 5 | ||
6 | DISTRO_FEATURES_append = " pam largefile" | 6 | DISTRO_FEATURES_append = " pam" |
7 | PREFERRED_PROVIDER_virtual/libx11 = "libx11" | 7 | PREFERRED_PROVIDER_virtual/libx11 = "libx11" |
8 | 8 | ||
9 | 9 | ||
diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf index 67242298f5..1ae94a0cd4 100644 --- a/meta-yocto/conf/distro/poky.conf +++ b/meta-yocto/conf/distro/poky.conf | |||
@@ -10,6 +10,8 @@ TARGET_VENDOR = "-poky" | |||
10 | 10 | ||
11 | LOCALCONF_VERSION = "1" | 11 | LOCALCONF_VERSION = "1" |
12 | 12 | ||
13 | DISTRO_FEATURES_append = " largefile" | ||
14 | |||
13 | SDK_NAME = "${DISTRO}-${TCLIBC}-${SDK_ARCH}-${TARGET_ARCH}" | 15 | SDK_NAME = "${DISTRO}-${TCLIBC}-${SDK_ARCH}-${TARGET_ARCH}" |
14 | SDKPATH = "/opt/${DISTRO}/${SDK_VERSION}" | 16 | SDKPATH = "/opt/${DISTRO}/${SDK_VERSION}" |
15 | 17 | ||