aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ipkg-utils/ipkg-link
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2011-01-24 12:11:07 -0800
committerKhem Raj <raj.khem@gmail.com>2011-01-25 16:44:46 -0800
commitd1c65e9a7d9d5b324095e6c4eb28cf7a58f394e5 (patch)
tree42b19a3c21893617c9f9e03d87db006b7e79470f /recipes/ipkg-utils/ipkg-link
parent5bd4e2057db8d67139d49dcec1cb705329ac9041 (diff)
downloadopenembedded-d1c65e9a7d9d5b324095e6c4eb28cf7a58f394e5.tar.gz
ipkg-utils: Remove the recipes
* So that they are not accidently used in future Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Graham Gower <graham.gower@gmail.com>
Diffstat (limited to 'recipes/ipkg-utils/ipkg-link')
-rw-r--r--recipes/ipkg-utils/ipkg-link/link-vfat-libs.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/recipes/ipkg-utils/ipkg-link/link-vfat-libs.patch b/recipes/ipkg-utils/ipkg-link/link-vfat-libs.patch
deleted file mode 100644
index 7f495f9f4c..0000000000
--- a/recipes/ipkg-utils/ipkg-link/link-vfat-libs.patch
+++ /dev/null
@@ -1,34 +0,0 @@
---- 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
- }
-