Do you have your SD-card formatted with ext2? This is necessary for symlinks.
Well since I have not idea what that is I guess not? How would I go about doing that?
First you must have e2fsprogs-mke2fs installed from base feed.
Disclaimer: I'm not responsible if you screw this up!
Note: Windows or your camera will no longer be able to read this card... but you can return it to a FAT format whenever you need it for that purpose.
OK...follow the instructions:
umount /dev/mmcda1
fdisk /dev/mmcda (it will ask you for a command)
d (this will delete a partition - note that some SD disks may not have a partition to begin with, in this case skip straight to pressing 'n' to create a new one)
1 (this will delete partition #1)
n (this will create a new partition)
p (this will create it as a Primary partition)
1 (Choses partition 1)
Enter (to take default start cylinder)
Enter (to take default end cylinder)
v (this will verify that the partition has been created)
t (to change partition type)
1 (to select partition 1)
83 (to select ext2)
w (this will save the table and exit the fdisk program)
mkfs.ext2 /dev/mmcda1(this will format the partition with the ext2 file system)
mount /dev/mmcda1 /mnt/card
Now you can install apps and symlink them on your SD-card
Greg