diff options
author | Koen Kooi <koen@openembedded.org> | 2007-09-13 10:35:20 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-09-13 10:35:20 +0000 |
commit | f588fe4ee63addd13abd3a9cc2c76d429971ff5e (patch) | |
tree | 623ca4250fda310b145495ed32d351234df4d894 | |
parent | 73d82ac39db87400b0084f73f3c84ce9769240af (diff) |
bfin-uclibc: add blackfin fork of uclibc
-rw-r--r-- | packages/uclibc/bfin-uclibc_svn.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/packages/uclibc/bfin-uclibc_svn.bb b/packages/uclibc/bfin-uclibc_svn.bb new file mode 100644 index 0000000000..fdb1329968 --- /dev/null +++ b/packages/uclibc/bfin-uclibc_svn.bb @@ -0,0 +1,34 @@ +# UCLIBC_BASE should be the latest released revision of uclibc (that way +# the config files will typically be correct!) uclibc-cvs takes precedence +# over uclibc-${UCLIBC_BASE}, if a config file in uclibc-cvs is out of date +# try removing it +# +# UCLIBC_BASE can be set in a distro file, but whether this works depends +# on whether the base patches apply to the selected (SRCDATE) svn release. +# +UCLIBC_BASE ?= "0.9.29" +PR = "r0" +PV = "${UCLIBC_BASE}+svnr${SRCREV}" + +require uclibc.inc + +PROVIDES_append_bfin = " virtual/${TARGET_PREFIX}libc-for-gcc " + +#recent versions uclibc require real kernel headers +PACKAGE_ARCH = "${MACHINE_ARCH}" +COMPATIBLE_HOST = "bfin.*-uclinux" + +#as stated above, uclibc needs real kernel-headers +#however: we can't depend on virtual/kernel when nptl hits due to depends deadlocking .... +KERNEL_SOURCE = "${CROSS_DIR}/${TARGET_SYS}" + +SRC_URI = "svn://sources.blackfin.uclinux.org/toolchain/trunk;module=uClibc " +SRC_URI += "file://uClibc.machine file://uClibc.distro" + +FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/uclibc-${UCLIBC_BASE}', '${FILE_DIRNAME}/uclibc', '${FILE_DIRNAME}/files', '${FILE_DIRNAME}' ], d)}" + + +S = "${WORKDIR}/uClibc" + +LEAD_SONAME = "libc.so" + |