mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-26 07:37:14 +00:00
c777ee6ce7
While in this case `RRECOMMENDS:class-target +=` wouldn't result in any unwanted override, there is no guarantee there won't be a change, which would be hidden by this override. To avoid any surprises in the future let's use `:append:class-target =` syntax here. Signed-off-by: Michal Sieron <michalwsieron@gmail.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
69 lines
2.3 KiB
BlitzBasic
69 lines
2.3 KiB
BlitzBasic
SUMMARY = "Tools for managing AUFS mounts"
|
|
SECTION = "base"
|
|
HOMEPAGE = "http://aufs.sourceforge.net/"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=892f569a555ba9c07a568a7c0c4fa63a"
|
|
|
|
DEPENDS = "coreutils-native aufs-util-native"
|
|
DEPENDS:class-native = ""
|
|
|
|
SRCREV = "8f35db59ef83078f87879ec2828e0bb45719e0ef"
|
|
SRC_URI = "git://git.code.sf.net/p/aufs/aufs-util;protocol=git;branch=aufs4.9 \
|
|
https://raw.githubusercontent.com/sfjro/aufs4-linux/aufs4.9/include/uapi/linux/aufs_type.h;name=aufs_type \
|
|
file://aufs-util-don-t-strip-executables.patch \
|
|
file://aufs-util-add-tool-concept-to-Makefile-for-cross-com.patch \
|
|
file://0001-libau-Do-not-build-LFS-version-of-readdir.patch \
|
|
"
|
|
SRC_URI[aufs_type.md5sum] = "b37129ef0703de72a852db7e48bdedc6"
|
|
SRC_URI[aufs_type.sha256sum] = "7ff6566adb9c7a3b6862cdc85a690ab546f1d0bc81ddd595fd663c0a69031683"
|
|
|
|
UPSTREAM_CHECK_COMMITS = "1"
|
|
|
|
PV = "4.9+git"
|
|
|
|
#i686-yoe-linux-ld.bfd: /usr/src/debug/glibc/2.41+git/stdio-common/../stdio-common/printf_fphex.c:123:(.text+0xdf): undefined reference to `__letf2'
|
|
LDFLAGS:append:libc-glibc:toolchain-clang:x86 = " --rtlib=libgcc --unwindlib=libgcc"
|
|
|
|
export HOSTCC = "${BUILD_CC}"
|
|
do_configure:prepend() {
|
|
# Replace sbin,bin paths with bitbake environment
|
|
sed -i -e 's;install_sbin: Tgt = ${DESTDIR}/sbin;install_sbin: Tgt = ${DESTDIR}/${base_sbindir};' \
|
|
-e 's;install_ubin: Tgt = ${DESTDIR}/usr/sbin;install_sbin: Tgt = ${DESTDIR}/${bindir};' \
|
|
${S}/Makefile
|
|
}
|
|
|
|
do_configure:append () {
|
|
install -d ${S}/include/linux/
|
|
cp ${UNPACKDIR}/aufs_type.h ${S}/include/linux/
|
|
sed -i -e 's;__user;;' ${S}/include/linux/aufs_type.h
|
|
}
|
|
|
|
do_configure:append:class-target () {
|
|
for i in ver c2sh c2tmac; do
|
|
cp ${STAGING_BINDIR_NATIVE}/aufs-util-${PV}/$i ${B}
|
|
done
|
|
}
|
|
|
|
do_compile () {
|
|
oe_runmake CPPFLAGS="-I${S}/include -I${S}/libau"
|
|
}
|
|
|
|
do_compile:class-native () {
|
|
oe_runmake tools CPPFLAGS="-I${S}/include -I${S}/libau" CC="${BUILD_CC}"
|
|
}
|
|
|
|
do_install () {
|
|
oe_runmake 'DESTDIR=${D}' install_sbin install_ubin install_etc
|
|
}
|
|
|
|
do_install:class-native () {
|
|
install -d ${D}${bindir}/aufs-util-${PV}
|
|
for i in ver c2sh c2tmac; do
|
|
install -m 755 $i ${D}${bindir}/aufs-util-${PV}/$i
|
|
done
|
|
}
|
|
|
|
RRECOMMENDS:${PN}:append:class-target = " kernel-module-aufs"
|
|
|
|
BBCLASSEXTEND = "native"
|