Opkg package manager > Non-standard installation destinations
DIR="/etc /etc/init.d /bin /sbin /usr/bin /usr/sbin /usr/lib /usr/lib64"
for DIR in ${DIR}
do find /tmp${DIR} -mindepth 1 -maxdepth 1 -exec \
ln -s {} ${DIR} \; 2> /dev/null
done
Opkg package manager > Non-standard installation destinations
DIR="/etc /etc/init.d /bin /sbin /usr/bin /usr/sbin /usr/lib /usr/lib64"
for DIR in ${DIR}
do find /tmp${DIR} -mindepth 1 -maxdepth 1 -exec \
ln -s {} ${DIR} \; 2> /dev/null
done