In order to compile kamikaze for my Linksys WRT54GL by myself, i did
svn checkout https://svn.openwrt.org/openwrt/trunk kamikaze
svn checkout https://svn.openwrt.org/openwrt/packages packages
ln -s packages/*/* kamikaze/package/
as explained in the document openwrt.pdf. I then run make meuconfig to choose stunnel and socat and after saving, i run make. After compilation, i got in kamikaze/bin
openwrt-brcm-2.4-squashfs.trx
and in kamikaze/bin/packages among others
socat_1.4.3.0-2_mipsel.ipk
stunnel_4.20-1_mipsel.ipk
I could flash the Linksys box and do the nessecary configurations.
In order to install socat and stunnel, i copied this files to /tmp on the router and run
ipkg install /tmp/socat_1.4.3.0-2_mipsel.ipk
ipkg install /tmp/stunnel_4.20-1_mipsel.ipk
This did not work. I got the errormessage
root@OpenWrt:/tmp# ipkg install stunnel_4.20-1_mipsel.ipk
Installing stunnel (4.20-1) to root...
Nothing to be done
An error ocurred, return value: 1.
Collected errors:
ERROR: Cannot satisfy the following dependencies for stunnel:
libwrap
root@OpenWrt:/tmp#
I dont find libwrap on my system.
find kamikaze -name "libwrap*"
simply gives no output. Something seems to be missing, but i have no idea how to get a working system.
Any hint is wellcome.
Wolfgang