Hi!
I`ve been experimenting with whiterussian for some days, but now i decided to "upgrade" to Kamikaze.
And my question is, how do i mount my SD/MMC to root, so that / is expanded with the size of my SD/MMC.

On whiterussian I just deleted /sbin/init and replaced it with this one:

#!/bin/sh
echo "0x9c" > /proc/diag/gpiomask
insmod mmc
insmod ext2
boot_dev="/dev/mmc/disc0/part1"

sleep 15s
mount "$boot_dev" /mmc
[ -x /mmc/sbin/init ] && {
        mount -o move /proc /mmc/proc && \
        pivot_root /mmc /mmc/mmc && {
                mount -o move /mmc/dev /dev
                mount -o move /mmc/tmp /tmp
                mount -o move /mmc/jffs2 /jffs2 2>&-
                mount -o move /mmc/sys /sys 2>&-
        }
}
exec /bin/busybox init

But this won`t work on kamikaze, so maybe someone can give me a hint what i have to do.
Which config file to edit, or whatever.

Thanks in advance.
Chris