fix ipkg symlink issue on squashfs

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@719 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Mike Baker 2005-04-26 01:28:48 +00:00
parent ccd831e8ae
commit cc8f1e53f1
1 changed files with 11 additions and 1 deletions

View File

@ -37,10 +37,20 @@ echo "done"
echo -n "setting up symlinks... "
for file in $(cd /rom; find * -type f; find * -type l;)
do {
ln -sf /rom/$file $file
[ "${file%/*}" = "usr/lib/ipkg/info" ] && {
cp -f /rom/$file $file
} || {
ln -sf /rom/$file $file
}
} done
echo "done"
echo -n "fixing ipkg symlinks... "
for file in $( find /usr/lib/ipkg/info/*list -type l;)
do {
rm $file; cp -f /rom/$file $file
} done
touch /tmp/resolv.conf
ln -s /tmp/resolv.conf /etc/resolv.conf