diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-09-09 01:47:04 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-09-09 01:47:04 +0000 |
commit | 7002873dffc9a8f2758e96f1cdeadaccdae6f96c (patch) | |
tree | 38c1d7728b543d82353e739db2dce92fa7aa182b /packages/uclibc/uclibc_svn.bb | |
parent | 2d0697017b1b15bc819abbcefeaade5b6fa12a0e (diff) |
uclibc_svn: fix the SVN version to build the uclibc SVN head
The SVN version now copies 0.9.28 patches, the armeb case should work,
other architectures almost certainly require the uclibc-cvs/*/uClibc.config
copy of the config file to be deleted (if this is done the build will pick
up the config file in uclibc-0.9.28).
Diffstat (limited to 'packages/uclibc/uclibc_svn.bb')
-rw-r--r-- | packages/uclibc/uclibc_svn.bb | 46 |
1 files changed, 42 insertions, 4 deletions
diff --git a/packages/uclibc/uclibc_svn.bb b/packages/uclibc/uclibc_svn.bb index a79c429f15..0eafa820bd 100644 --- a/packages/uclibc/uclibc_svn.bb +++ b/packages/uclibc/uclibc_svn.bb @@ -1,9 +1,47 @@ -PV = "0.9.27+svn${CVSDATE}" +# 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 (CVSDATE) svn release. +# +UCLIBC_BASE ?= "0.9.28" +PV = "${UCLIBC_BASE}+svn${CVSDATE}" +#DEFAULT_PREFERENCE is 0 (empty), releases have a preference of 1 so take +# precedence. include uclibc.inc -FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/uclibc-cvs', '${FILE_DIRNAME}/uclibc', '${FILE_DIRNAME}/files', '${FILE_DIRNAME}' ], d)}" +FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/uclibc-cvs', '${FILE_DIRNAME}/uclibc-${UCLIBC_BASE}', '${FILE_DIRNAME}/files', '${FILE_DIRNAME}' ], d)}" + +# This is the correct KERNEL_SOURCE location, if the uClibc +# fix_includes.sh script is run (see nokernelheader.patch below) +# this must be correct. +KERNEL_SOURCE = "${CROSS_DIR}/${TARGET_SYS}" + +SRC_URI += "svn://uclibc.org/trunk;module=uClibc" -SRC_URI += "svn://uclibc.org/trunk;module=uClibc \ - file://nokernelheadercheck.patch;patch=1" S = "${WORKDIR}/uClibc" + +#*** PATCHES *** +# +# The nokernelheadercheck patch removes the check on the include +# files in ${KERNEL_SOURCE}, however this check seems to be +# functioning correct now so the patch is not included. It may +# be necessary to add this for architectures which do not initially +# have a 'good' set of kernel header files in the cross directory. +#UCLIBC_PATCHES += "file://nokernelheadercheck.patch;patch=1" +# +# Thumb support +UCLIBC_PATCHES += " file://thumb-defined-arm-or-thumb.patch;patch=1" +# +# Thumb interworking support +UCLIBC_PATCHES += " file://thumb-mov-pc-bx.patch;patch=1" +UCLIBC_PATCHES += " file://thumb-resolve.patch;patch=1" + +# Set this for non-head patches (the above list should match the +# requirements of the SVN head). +UCLIBC_SVN_PATCHES ?= "${UCLIBC_PATCHES}" + +SRC_URI += "${UCLIBC_SVN_PATCHES}" |