[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>
DISTRO = "poky-lsb"
DISTROOVERRIDES = "poky:linuxstdbase"
-DISTRO_FEATURES_append = " pam largefile"
+DISTRO_FEATURES_append = " pam"
PREFERRED_PROVIDER_virtual/libx11 = "libx11"
LOCALCONF_VERSION = "1"
+DISTRO_FEATURES_append = " largefile"
+
SDK_NAME = "${DISTRO}-${TCLIBC}-${SDK_ARCH}-${TARGET_ARCH}"
SDKPATH = "/opt/${DISTRO}/${SDK_VERSION}"