diff options
author | Chris Larson <kergoth@openedhand.com> | 2006-07-13 09:13:21 +0000 |
---|---|---|
committer | Chris Larson <kergoth@openedhand.com> | 2006-07-13 09:13:21 +0000 |
commit | 5f3d79f3195e24dde7169971343f4db03847a02e (patch) | |
tree | 3070e4043e413f3e477a407d7e37e0c3de0391e0 /openembedded/packages/ipkg-utils/ipkg-link | |
parent | 9ddd9dcefa6c1c0788151be43ee844b13ef1dd8a (diff) | |
download | openembedded-core-5f3d79f3195e24dde7169971343f4db03847a02e.tar.gz openembedded-core-5f3d79f3195e24dde7169971343f4db03847a02e.tar.bz2 openembedded-core-5f3d79f3195e24dde7169971343f4db03847a02e.tar.xz openembedded-core-5f3d79f3195e24dde7169971343f4db03847a02e.zip |
poky: ipkg-utils update from upstream OE. Locks down to a specific cvs version rather than floating, which seems to fix some issues with root filesystem population in the build.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@512 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/ipkg-utils/ipkg-link')
-rw-r--r-- | openembedded/packages/ipkg-utils/ipkg-link/link-vfat-libs.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/openembedded/packages/ipkg-utils/ipkg-link/link-vfat-libs.patch b/openembedded/packages/ipkg-utils/ipkg-link/link-vfat-libs.patch new file mode 100644 index 000000000..7f495f9f4 --- /dev/null +++ b/openembedded/packages/ipkg-utils/ipkg-link/link-vfat-libs.patch @@ -0,0 +1,34 @@ +--- ipkg-utils/ipkg-link.orig 2006-04-05 00:08:28.518992136 +0200 ++++ ipkg-utils/ipkg-link 2006-04-05 00:08:40.399186072 +0200 +@@ -58,6 +58,31 @@ + `ln -s "$PREFIX$line" "$line"` + fi + fi ++ ++ # The next function checks whether the _source_ file (ie: /media/card/something) ++ # does actually exist. If it doesn't, it could by a library symlink (ie: libsomething.0.1 -> libsomething.0) ++ # Since VFAT & friends do not support symlinks, these library links would not exist after installation ++ # and trying to symlink them into the rootfs with ipkg-link results in unconnected symlinks in the rootfs. ++ # So we use the real lib file in /media/card/whatever and create all needed symlinks in the rootfs ++ # using the real file as source. ++ ++ if [ ! -e "$PREFIX$line" ]; then ++ if ( echo "$line" | grep -q "lib" ) ; then ++ libsearchfile=$(echo $line | sed -e "s#[a-z0-9/.]*/##g") ++ libfoundfiles=$(find $PREFIX -name "$libsearchfile*") ++ ++ for liblinkfile in $libfoundfiles; do ++ echo "Linking $line to $liblinkfile" ++ # link will be pointing to nowhere ++ if test -L $line; then ++ rm -f $line ++ fi ++ ln -s $liblinkfile $line ++ done ++ else ++ echo "WARNING: Source file [$PREFIX$line] is missing!" ++ fi ++ fi + done + } + |