You need to repack the ipk\'s. I posted this here:
http://www.zaurususergroup.com/index.php?n...iewtopic&t=2596Here is the relevant part:
To convert the OZ packages to work on Sharp ROMs I have noticed that some are ar archives and some are tarballs. Assuming that the binaries in the package will work on Sharp based ROMs you can extract the contents of the package with \'ar -x whatever.ipk\' or \'\'tar xvf whatever.ipk\'. This should result in three files the current directory control.tar.gz, data.tar.gz, and debian-binary. The data.tar.gz contains the files, control.tar.gz contains package description, and debian-binary has the package version info. Run the following to create a Sharp package:
tar cf - ./control.tar.gz ./data.tar.gz ./debian-binary | gzip -9 -c ] whatever_arm.ipk
Hope this helps,