MADDE/Mounting

Image:Ambox_notice.png
MADDE is currently a technology preview.

These instructions are liable to change as development progresses. If some of the components do not work as expected, please add your question to the MADDE talk thread and follow up the discussion.

tablets-dev.nokia.com is down, see MADDE#Installation for alternatives.


[edit] From host to runtime

Currently MADDE supports mounting of the host file system to N900 runtime.

This is a very convenient feature when developing software.

All supported platforms (windows, linux, mac) are supported.

The syntax of mount command is:

mad remote [-r runtime] mount <directory>

The command mounts <directory> to the N900 to a mount point /home/developer/mnt.

mad remote run supports finding executable software with given name from this directory.

In case of mounting fails due to stale previous mount, running mad remote umount fixes this problem -- try it always if mounting fails.

Example usages:

$ mad remote -r n900 mount .
$ mad remote -r n900 shell
/home/developer $ cd mnt
/home/developer/mnt $ ls
...
/home/developer/mnt $ exit
mad remote -r n900 mount .
mad make hello
mad remote -r n900 run hello

[edit] From runtime to host

Currently MADDE does not support mounting a directory from N900 to host pc, but it is quite easily possible with userspace filesystems in all supported platforms.

Linux and Mac hosts can use 'sshfs' fuse filesystem utility.

Windows hosts can use 'Dokan SSHFS' software (see http://dokan-dev.net/en/).

Example usage with sshfs (dokan interface is probably similar):

$ mkdir mnt_n900
$ sshfs developer@<addr-of-n900>: mnt_n900

Now host mount point mnt_n900 sees /home/developer on n900.