Quote Originally Posted by r-win View Post
Is it possible to upgrade dnsmasq to the latest version? The version which is included doesn't have support for tagging based on mac addresses (usefull for openvpn clients).
Quote Originally Posted by Oleg View Post
Perhaps.
Allright...wrong question

I've compiled dnsmasq myself, since the dnsmasq version at this location has IPv6 support compiled in, which results in a "Protocol not supported" error. Strange actually, but recompiling seemed easier yesterday
By the way, I've also found out that mounting iso images to directories does not work right away. You have to manually create symlinks to the loop devices. I think it has something todo with devfs support (but I'm not sure). Anyway, you have to create symlinks from /dev/loop0 to /dev/loop/0 (and that for all 8 loop devices if you want to mount several images). Maybe you can fix the next version of the rom to include these symlinks?

Right now, I've added the following lines to my post-boot script:
Code:
for l in 0 1 2 3 4 5 6 7 ; do
    ln -s /dev/loop/$l /dev/loop$l
done
which also works fine.