Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame^] | 1 | DESCRIPTION = "klibc is intended to be a minimalistic libc subset for \ |
| 2 | use with initramfs. It is deliberately written for small size, \ |
| 3 | minimal entaglement, and portability, not speed." |
| 4 | SECTION = "libs" |
| 5 | LICENSE = "BSD-3-Clause & GPL-2.0 & MIT & Zlib" |
| 6 | LIC_FILES_CHKSUM = "file://usr/klibc/LICENSE;md5=d75181f10e998c21eb147f6d2e43ce8b" |
| 7 | DEPENDS = "linux-libc-headers perl-native" |
| 8 | SRCREV = "4d19974d7020488f63651244e1f9f51727c3f66c" |
| 9 | |
| 10 | SRC_URI = "git://git.kernel.org/pub/scm/libs/klibc/klibc.git" |
| 11 | SRC_URI_append_linux-gnueabi = " file://klibc-config-eabi.patch \ |
| 12 | file://armv4-fix-v4bx.patch \ |
| 13 | " |
| 14 | SRC_URI_append_linux-uclibceabi = " file://klibc-config-eabi.patch \ |
| 15 | file://armv4-fix-v4bx.patch \ |
| 16 | " |
| 17 | SRC_URI += "file://klibc-linux-libc-dev.patch \ |
| 18 | file://staging.patch \ |
| 19 | file://klcc-consider-sysroot.patch \ |
| 20 | " |
| 21 | |
| 22 | S = "${WORKDIR}/git" |
| 23 | |
| 24 | EXTRA_OEMAKE = "'KLIBCARCH=${KLIBC_ARCH}' \ |
| 25 | 'CROSS_COMPILE=${TARGET_PREFIX}' \ |
| 26 | 'KLIBCKERNELSRC=${STAGING_DIR_TARGET}${exec_prefix}' \ |
| 27 | 'KLIBCLIBGCC=${STAGING_DIR_TARGET}${libdir}/${TARGET_SYS}/*/libgcc.a' \ |
| 28 | 'prefix=${exec_prefix}' \ |
| 29 | 'INSTALLROOT=${D}' \ |
| 30 | 'SHLIBDIR=${libdir}' \ |
| 31 | " |
| 32 | |
| 33 | export FIX_ARMV4_EABI_BX = "${FIX_V4BX}" |
| 34 | |
| 35 | do_configure () { |
| 36 | ln -sf "${STAGING_DIR_TARGET}${exec_prefix}" linux |
| 37 | } |
| 38 | |
| 39 | INHIBIT_PACKAGE_STRIP = "1" |
| 40 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" |
| 41 | INSANE_SKIP_${PN} = "already-stripped" |
| 42 | INSANE_SKIP_libklibc-dev = "dev-elf" |
| 43 | KLIBC_ARCH = "${TARGET_ARCH}" |
| 44 | KLIBC_ARCH_aarch64 = "arm64" |
| 45 | KLIBC_ARCH_armeb = "arm" |
| 46 | KLIBC_ARCH_mipsel = "mips" |
| 47 | KLIBC_ARCH_x86 = "i386" |
| 48 | KLIBC_ARCH_x86-64 = "x86_64" |
| 49 | KLIBC_ARCH_powerpc = "ppc" |
| 50 | KLIBC_ARCH_powerpc64 = "ppc64" |
| 51 | THIS_LIBKLIBC = "libklibc (= ${PV}-${PR})" |