Thanks it worked now I have this image in my filesystem:
root@OpenWrt:/etc/config# df Filesystem 1K-blocks Used Available Use% Mounted on rootfs 7699228 140032 7167312 2% / /dev/root 2048 2048 0 100% /rom tmpfs 14608 944 13664 6% /tmp tmpfs 512 0 512 0% /dev /dev/sda1 7699228 140032 7167312 2% /overlay overlayfs:/overlay 7699228 140032 7167312 2% /
which I assume is the correct one. I have managed to download ibrdtn libraries now and increase router's storage space.
Best, Theodoros
On Fri, Jan 31, 2014 at 7:54 AM, Johannes Morgenroth < morgenroth@ibr.cs.tu-bs.de> wrote:
There I see the issue. You tried to mount a FAT32 partition as overlay. This is not supported by OpenWrt. Format the overlay as ext3, set option fstype 'vfat' to *ext3* and disable the fsck with "option enabled_fsck 0" as explained in the OpenWrt Wiki.
Additional to this you enabled swap for the *same* partition. This had to go wrong! Disable the swap or create a second partition for swap.
Kind regards, Johannes Morgenroth
Am 30.01.2014 18:11, schrieb Theodoros Bourchas:
root@OpenWrt:~# fdisk -l /dev/sda
Disk /dev/sda: 8031 MB, 8031043584 bytes 224 heads, 16 sectors/track, 4376 cylinders, total 15685632 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sda1 2048 15677439 7837696 b W95 FAT32
root@OpenWrt:~# cat /etc/config/fstab
config global 'automount' option from_fstab '1' option anon_mount '1'
config global 'autoswap' option from_fstab '1' option anon_swap '0'
config mount option target '/overlay' option options 'rw,sync' option enabled '1' option fstype 'vfat' option device '/dev/sda1'
config swap option enabled '1' option device '/dev/sda1'