You are not logged in.

#1 2009-12-30 11:11:48

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Can't access xd picture card [solved]

Hello guys,

I'm not able to access a xd picture card on my Thinkpad SL500. The Wiki-article does not contain any deeper information about that problem.

I created the following udev rule like written in the udev article.

File: /etc/udev/rules.d/11-sd-cards-auto-mount.rules

KERNEL!="mmcblk[0-9]p[0-9]", GOTO="sd_cards_auto_mount_end"
ACTION=="add", RUN+="/bin/mkdir -p /media/sd-%k", RUN+="/bin/ln -s /media/sd-%k /mnt/sd-%k"

# Global mount options
ACTION=="add", ENV{mount_options}="relatime,users"
# Filesystem specific options
ACTION=="add", PROGRAM=="/lib/initcpio/udev/vol_id -t %N", RESULT=="vfat|ntfs", ENV{mount_options}="$env{mount_options},utf8,gid=100,umask=002"

ACTION=="add", RUN+="/bin/mount -o $env{mount_options} /dev/%k /media/sd-%k"
ACTION=="remove", RUN+="/bin/umount -l /media/sd-%k", RUN+="/bin/rmdir /media/sd-%k"
LABEL="sd_cards_auto_mount_end"

But the problem is, my card is still not listed in /media. What else could I try?

EDIT:

I forgot to mention that dmesg does not show any relevant information as if the card is broken (but it works on other systems) or my sd card reader is not working properly. But mounting a sd card on the other hand works without any problems. So do I need another udev rule especially for xd cards?

Last edited by orschiro (2011-10-28 19:42:40)

Offline

#2 2009-12-30 18:36:28

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,583

Re: Can't access xd picture card [solved]

You lost me.  If I understand correctly:
You can use 'mount' to mount the SD card on this system and it works.
You want to automount it under /media
Dmesg does not log when the card is inserted.

When you insert your card, does an appropriate node appear in /dev ?


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#3 2010-01-01 19:35:54

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Can't access xd picture card [solved]

Hello ewaller,

it's not a problem with sd cards. They can be accessed without any problems with the udev rule from above.

The problem is a xD-Picture-Card. Dmesg shows no output concerning the xD-Card. Nor there is any device in /dev either.

I simply don't know how to access the pictures stored on it.

Offline

#4 2010-01-11 20:57:26

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Can't access xd picture card [solved]

Some additional information:

lspci -v shows:

0d:00.4 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev ff) (prog-if ff)
        !!! Unknown header type 7f

So there does not seem to exist any module for it. Anyway is there any chance to get it working?

Offline

#5 2010-01-20 13:36:31

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Can't access xd picture card [solved]

Anyone please?

Best Regards

Offline

#6 2010-01-20 22:12:44

Ronin15
Member
Registered: 2008-12-18
Posts: 24

Re: Can't access xd picture card [solved]

Try to manually mount it. mount - t -v vfat /dev/sdb or sdb1 or sdc or sdc1   /mnt/xdcard. The sdb sdc are some of the defaults given to removable media when plugged in.
this is assuming that you have created a directory called /mnt/xdcard. Hope this helps. Then if you want it to auto mount add it to your fstab.

Last edited by Ronin15 (2010-01-20 22:18:24)


"Once you go Arch you will never go back"

Offline

#7 2010-01-21 07:23:59

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Can't access xd picture card [solved]

Hello Ronin15,

I know how to mount a device but the problem is that there is no device /dev/sdx when the xD-Card is plugged in.

Offline

#8 2011-08-20 19:38:15

agalgo
Member
Registered: 2011-08-20
Posts: 1

Re: Can't access xd picture card [solved]

After a lot of googling, I found this workaround:

http://www.pclinuxos.com/forum/index.php?topic=86792.0

Removing:

libmtp-common
Libmtp-runtime
libmtp8
(autoremoves:)
rythmbos-plugin-coherence
rythmbox-plugins

Once I removed the listed packages, I got my system to seemlesly automount sd memory sticks again.

Hope it helps.

Offline

#9 2011-08-21 07:14:57

doorknob60
Member
Registered: 2008-09-29
Posts: 404

Re: Can't access xd picture card [solved]

I have a laptop that mounts SDs fine, but won't do XD for whatever reason, never got it to work (in Linux). You might be SOL. Every other computer with a card reader I have reads XDs fine though, so it's a little weird, not sure why that particular one doesn't work (IIRC mine is Ricoh too that doesn't work). Guess Linux just doesn't have a driver for it, even though I'd assume they would show up as standard UMS devices, guess they don't.

Last edited by doorknob60 (2011-08-21 07:16:05)

Offline

#10 2011-09-04 06:28:38

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Can't access xd picture card [solved]

To reopen the discussion. I do not what it is caused by but the xD card is automatically mounted using Ubuntu and derivates. But still the problem persists with Arch. Any new ideas?

Regards

Offline

#11 2011-09-04 06:48:08

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,583

Re: Can't access xd picture card [solved]

That's good news -- it implies it is supported on Linux.  I've just combed through the menuconfig of the 3.0.3 kernel, and I am darned if I can figure what kernel module you need.

Try this:  If you have access to the Ubuntu system, compare the output of lsmod before, and after, you insert the xD card.  See if there are any differences.
If there are not, I suggest you try comparing the modules from Ubuntu vs those from Arch.

Sorry I did not post any more after my first post in this thread.  Once you reiterated that you were fighting the xD card, whereas the sd card worked, I understood your issue; but had nothing to add.


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#12 2011-09-04 11:12:18

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Can't access xd picture card [solved]

Hi ewaller,

I appreciate your reply. I booted into a Linux Mint system and there a module called r852 is loaded. Whilst googling I'm almost sure that this is the appropriate module. Unfortunately it does not seem to be build in the kernel. I cannot load it with my Arch default kernel. Any suggestions what I can try?

Regards

Offline

#13 2011-09-04 16:01:20

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,583

Re: Can't access xd picture card [solved]

Hey, I have good new, and I have bad news.

The good news, is that I found the driver you need in the Kernel source code.  The bad news is that Arch specifically turns that option off:

Symbol: MTD_NAND_RICOH [=n]                                                                                                                 │  
  │ Type  : tristate                                                                                                                            │  
  │ Prompt: Ricoh xD card reader                                                                                                                │  
  │   Defined at drivers/mtd/nand/Kconfig:127                                                                                                   │  
  │   Depends on: MTD [=n] && MTD_NAND [=n] && PCI [=y]                                                                                         │  
  │   Location:                                                                                                                                 │  
  │     -> Device Drivers                                                                                                                       │  
  │       -> Memory Technology Device (MTD) support (MTD [=n])                                                                                  │  
  │         -> NAND Device Support (MTD_NAND [=n])                                                                                              │  
  │   Selects: MTD_SM_COMMON [=n]                                                                                                               │  
  │

It looks like you will need to custom build a kernel to do this.  I don't know if you have ever tried, but it is not as daunting as it sounds -- of course, that is from a recovering Gentoo user smile


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#14 2011-09-04 16:07:55

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,583

Re: Can't access xd picture card [solved]

On further consideration, you might file a bug report against the Kernel and ask that this module me enabled.  Unless they have had trouble with the module, the Arch Developers might just turn it on in a future release if they know someone needs it -- maybe


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#15 2011-09-04 19:47:51

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Can't access xd picture card [solved]

Thanks a lot for your effort!

I filed a bug report and will keep you on line.

Regards

Offline

#16 2011-09-04 20:19:33

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,583

Re: Can't access xd picture card [solved]

What kernel are you using and what is your processor?  I run a custom Kernel myself (as I said, I am a former Gentoo user).  I am about to build the 3.0.4 kernel for my system.  I could just slip that module in and send you the .ko to try. 

I compile optimized for a Core 2 Duo processor.

We could also help you compile your own kernel should you choose.  We could just start with the one in ABS, modify the kernel config file, fix the signatures, do a makepkg, and install it with pacman.  The only drawback is having to do that every time the kernel rolls (until they incorporate your bug report)


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#17 2011-09-09 21:42:25

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Can't access xd picture card [solved]

Hi ewaller,

There is no need for a custom kernel anymore. It was fixed in svn. smile

Regards

Offline

#18 2011-10-05 20:48:40

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Can't access xd picture card [solved]

The bug report was closed as the new kernel update arrived which should contain the changes.

And indeed, now I can load the r852 module. However, the xdCard still does not show up in the file manager (which is thunar with gvfs. Mounting works flawlessly with other external devices).

According to lspci -v everything should be fine.

0d:00.3 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 12)
	Subsystem: Lenovo Device 210c
	Flags: bus master, medium devsel, latency 64, IRQ 17
	Memory at febfec00 (32-bit, non-prefetchable) [size=256]
	Capabilities: <access denied>
	Kernel driver in use: r852
	Kernel modules: r852

Any ideas?

Last edited by orschiro (2011-10-05 20:49:10)

Offline

#19 2011-10-19 00:54:10

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Can't access xd picture card [solved]

Small progress.

Since thunar is not mounting my xd card by default I tried to mount it manually.

There are two elements in /dev which correspond to my card.

/dev/mtd0
/dev/mtd0ro

However, when I try to mount them to I get the following message.

mount: /dev/mtd0 is not a block device

Since google does not give me any useful information, do you know how to at least manually mount the card?

Regards

Offline

#20 2011-10-19 01:42:32

fsckd
Forum Fellow
Registered: 2009-06-15
Posts: 4,173

Re: Can't access xd picture card [solved]

Just a guess, you might need mtd-utils. From AUR, out of date. You have your work cut out for you.


aur S & M :: forum rules :: Community Ethos
Resources for Women, POC, LGBT*, and allies

Offline

#21 2011-10-19 07:13:45

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Can't access xd picture card [solved]

Thanks for that hint.

I installed the latest version and encounter a some changes.

The files mtd0 and mtd0ro are no longer in /dev/ and my output of lspci -v has a new line saying something about capabilites.

0d:00.3 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 12)
	Subsystem: Lenovo Device 210d
	Flags: bus master, medium devsel, latency 64, IRQ 17
	Memory at febfe800 (32-bit, non-prefetchable) [size=256]
	Capabilities: <access denied>
	Kernel driver in use: r852
	Kernel modules: r852

And this is the total output of /dev.

crw-rw----   1 root video      10, 175 Oct 19 21:29 agpgart
crw-------   1 root root       10, 235 Oct 19 21:29 autofs
drwxr-xr-x   2 root root           160 Oct 19 21:29 block
drwxr-xr-x   2 root root            80 Oct 19 21:29 bsg
crw-------   1 root root       10, 234 Oct 19 21:29 btrfs-control
drwxr-xr-x   3 root root            60 Oct 19 21:29 bus
drwxr-xr-x   2 root root          5380 Oct 19 21:29 char
crw-------   1 root root        5,   1 Oct 19 21:29 console
lrwxrwxrwx   1 root root            11 Oct 19 21:29 core -> /proc/kcore
drwxr-xr-x   2 root root            60 Oct 19 21:29 cpu
crw-------   1 root root       10,  62 Oct 19 21:29 cpu_dma_latency
drwxr-xr-x   6 root root           120 Oct 19 21:29 disk
drwxr-xr-x   2 root root            80 Oct 19 21:29 dri
crw-rw----   1 root video      29,   0 Oct 19 21:29 fb0
lrwxrwxrwx   1 root root            13 Oct 19 21:29 fd -> /proc/self/fd
crw-rw-rw-   1 root root        1,   7 Oct 19 21:29 full
crw-rw-rw-   1 root root       10, 229 Oct 19 21:29 fuse
crw-------   1 root root      252,   0 Oct 19 21:29 fw0
crw-------   1 root root       10, 228 Oct 19 21:29 hpet
prw-------   1 root root             0 Oct 19 21:29 initctl
drwxr-xr-x   4 root root           460 Oct 19 21:29 input
crw-------   1 root root        1,  11 Oct 19 21:29 kmsg
srw-rw-rw-   1 root root             0 Oct 19 21:29 log
brw-rw----   1 root disk        7,   0 Oct 19 21:29 loop0
drwxr-xr-x   2 root root            60 Oct 19 21:29 mapper
crw-------   1 root root       10, 227 Oct 19 21:29 mcelog
crw-------   1 root root      251,   0 Oct 19 21:29 media0
crw-r-----   1 root kmem        1,   1 Oct 19 21:29 mem
drwxr-xr-x   2 root root            60 Oct 19 21:29 net
crw-------   1 root root       10,  61 Oct 19 21:29 network_latency
crw-------   1 root root       10,  60 Oct 19 21:29 network_throughput
crw-rw-rw-   1 root root        1,   3 Oct 19 21:29 null
crw-r-----   1 root kmem        1,   4 Oct 19 21:29 port
crw-------   1 root root      108,   0 Oct 19 21:29 ppp
crw-------   1 root root       10,   1 Oct 19 21:29 psaux
crw-rw-rw-   1 root tty         5,   2 Oct 19 21:51 ptmx
drwxr-xr-x   2 root root             0 Oct 19 21:29 pts
crw-rw-rw-   1 root root        1,   8 Oct 19 21:29 random
crw-r--r--   1 root root       10,  59 Oct 19 21:29 rfkill
lrwxrwxrwx   1 root root             4 Oct 19 21:29 rtc -> rtc0
crw-------   1 root root      254,   0 Oct 19 21:29 rtc0
lrwxrwxrwx   1 root root             3 Oct 19 21:34 scd0 -> sr0
brw-rw----   1 root disk        8,   0 Oct 19 21:29 sda
brw-rw----   1 root disk        8,   1 Oct 19 21:29 sda1
brw-rw----   1 root disk        8,   2 Oct 19 21:29 sda2
brw-rw----   1 root disk        8,   3 Oct 19 21:29 sda3
brw-rw----   1 root disk        8,   4 Oct 19 21:29 sda4
crw-rw----   1 root disk       21,   0 Oct 19 21:29 sg0
crw-rw----+  1 root optical    21,   1 Oct 19 21:29 sg1
drwxrwxrwt   2 root root           100 Oct 19 21:51 shm
crw-------   1 root root       10, 231 Oct 19 21:29 snapshot
drwxr-xr-x   3 root root           240 Oct 19 21:29 snd
brw-rw----+  1 root optical    11,   0 Oct 19 21:34 sr0
lrwxrwxrwx   1 root root            15 Oct 19 21:29 stderr -> /proc/self/fd/2
lrwxrwxrwx   1 root root            15 Oct 19 21:29 stdin -> /proc/self/fd/0
lrwxrwxrwx   1 root root            15 Oct 19 21:29 stdout -> /proc/self/fd/1
crw-rw-rw-   1 root tty         5,   0 Oct 19 21:29 tty
crw--w----   1 root tty         4,   0 Oct 19 21:29 tty0
crw-rw----   1 root tty         4,   1 Oct 19 21:29 tty1
crw--w----   1 root tty         4,  10 Oct 19 21:29 tty10
crw--w----   1 root tty         4,  11 Oct 19 21:29 tty11
crw--w----   1 root tty         4,  12 Oct 19 21:29 tty12
crw--w----   1 root tty         4,  13 Oct 19 21:29 tty13
crw--w----   1 root tty         4,  14 Oct 19 21:29 tty14
crw--w----   1 root tty         4,  15 Oct 19 21:29 tty15
crw--w----   1 root tty         4,  16 Oct 19 21:29 tty16
crw--w----   1 root tty         4,  17 Oct 19 21:29 tty17
crw--w----   1 root tty         4,  18 Oct 19 21:29 tty18
crw--w----   1 root tty         4,  19 Oct 19 21:29 tty19
crw-rw----   1 root tty         4,   2 Oct 19 21:29 tty2
crw--w----   1 root tty         4,  20 Oct 19 21:29 tty20
crw--w----   1 root tty         4,  21 Oct 19 21:29 tty21
crw--w----   1 root tty         4,  22 Oct 19 21:29 tty22
crw--w----   1 root tty         4,  23 Oct 19 21:29 tty23
crw--w----   1 root tty         4,  24 Oct 19 21:29 tty24
crw--w----   1 root tty         4,  25 Oct 19 21:29 tty25
crw--w----   1 root tty         4,  26 Oct 19 21:29 tty26
crw--w----   1 root tty         4,  27 Oct 19 21:29 tty27
crw--w----   1 root tty         4,  28 Oct 19 21:29 tty28
crw--w----   1 root tty         4,  29 Oct 19 21:29 tty29
crw-rw----   1 root tty         4,   3 Oct 19 21:29 tty3
crw--w----   1 root tty         4,  30 Oct 19 21:29 tty30
crw--w----   1 root tty         4,  31 Oct 19 21:29 tty31
crw--w----   1 root tty         4,  32 Oct 19 21:29 tty32
crw--w----   1 root tty         4,  33 Oct 19 21:29 tty33
crw--w----   1 root tty         4,  34 Oct 19 21:29 tty34
crw--w----   1 root tty         4,  35 Oct 19 21:29 tty35
crw--w----   1 root tty         4,  36 Oct 19 21:29 tty36
crw--w----   1 root tty         4,  37 Oct 19 21:29 tty37
crw--w----   1 root tty         4,  38 Oct 19 21:29 tty38
crw--w----   1 root tty         4,  39 Oct 19 21:29 tty39
crw-rw----   1 root tty         4,   4 Oct 19 21:29 tty4
crw--w----   1 root tty         4,  40 Oct 19 21:29 tty40
crw--w----   1 root tty         4,  41 Oct 19 21:29 tty41
crw--w----   1 root tty         4,  42 Oct 19 21:29 tty42
crw--w----   1 root tty         4,  43 Oct 19 21:29 tty43
crw--w----   1 root tty         4,  44 Oct 19 21:29 tty44
crw--w----   1 root tty         4,  45 Oct 19 21:29 tty45
crw--w----   1 root tty         4,  46 Oct 19 21:29 tty46
crw--w----   1 root tty         4,  47 Oct 19 21:29 tty47
crw--w----   1 root tty         4,  48 Oct 19 21:29 tty48
crw--w----   1 root tty         4,  49 Oct 19 21:29 tty49
crw-rw----   1 root tty         4,   5 Oct 19 21:29 tty5
crw--w----   1 root tty         4,  50 Oct 19 21:29 tty50
crw--w----   1 root tty         4,  51 Oct 19 21:29 tty51
crw--w----   1 root tty         4,  52 Oct 19 21:29 tty52
crw--w----   1 root tty         4,  53 Oct 19 21:29 tty53
crw--w----   1 root tty         4,  54 Oct 19 21:29 tty54
crw--w----   1 root tty         4,  55 Oct 19 21:29 tty55
crw--w----   1 root tty         4,  56 Oct 19 21:29 tty56
crw--w----   1 root tty         4,  57 Oct 19 21:29 tty57
crw--w----   1 root tty         4,  58 Oct 19 21:29 tty58
crw--w----   1 root tty         4,  59 Oct 19 21:29 tty59
crw-rw----   1 root tty         4,   6 Oct 19 21:29 tty6
crw--w----   1 root tty         4,  60 Oct 19 21:29 tty60
crw--w----   1 root tty         4,  61 Oct 19 21:29 tty61
crw--w----   1 root tty         4,  62 Oct 19 21:29 tty62
crw--w----   1 root tty         4,  63 Oct 19 21:29 tty63
crw--w----   1 root tty         4,   7 Oct 19 21:29 tty7
crw--w----   1 root tty         4,   8 Oct 19 21:29 tty8
crw--w----   1 root tty         4,   9 Oct 19 21:29 tty9
crw-rw----   1 root uucp        4,  64 Oct 19 21:29 ttyS0
crw-rw----   1 root uucp        4,  65 Oct 19 21:29 ttyS1
crw-rw----   1 root uucp        4,  66 Oct 19 21:29 ttyS2
crw-rw----   1 root uucp        4,  67 Oct 19 21:29 ttyS3
crw-------   1 root root       10, 223 Oct 19 21:29 uinput
crw-rw-rw-   1 root root        1,   9 Oct 19 21:29 urandom
drwxr-xr-x   4 root root            80 Oct 19 21:29 v4l
crw-------   1 root root       10,  58 Oct 19 21:29 vboxdrv
drwxr-x---   4 root vboxusers       80 Oct 19 21:29 vboxusb
crw-rw----   1 root tty         7,   0 Oct 19 21:29 vcs
crw-rw----   1 root tty         7,   1 Oct 19 21:29 vcs1
crw-rw----   1 root tty         7,  10 Oct 19 21:29 vcs10
crw-rw----   1 root tty         7,  11 Oct 19 21:29 vcs11
crw-rw----   1 root tty         7,  12 Oct 19 21:29 vcs12
crw-rw----   1 root tty         7,  13 Oct 19 21:29 vcs13
crw-rw----   1 root tty         7,  14 Oct 19 21:29 vcs14
crw-rw----   1 root tty         7,  15 Oct 19 21:29 vcs15
crw-rw----   1 root tty         7,  16 Oct 19 21:29 vcs16
crw-rw----   1 root tty         7,  17 Oct 19 21:29 vcs17
crw-rw----   1 root tty         7,  18 Oct 19 21:29 vcs18
crw-rw----   1 root tty         7,  19 Oct 19 21:29 vcs19
crw-rw----   1 root tty         7,   2 Oct 19 21:29 vcs2
crw-rw----   1 root tty         7,  20 Oct 19 21:29 vcs20
crw-rw----   1 root tty         7,  21 Oct 19 21:29 vcs21
crw-rw----   1 root tty         7,  22 Oct 19 21:29 vcs22
crw-rw----   1 root tty         7,  23 Oct 19 21:29 vcs23
crw-rw----   1 root tty         7,  24 Oct 19 21:29 vcs24
crw-rw----   1 root tty         7,  25 Oct 19 21:29 vcs25
crw-rw----   1 root tty         7,  26 Oct 19 21:29 vcs26
crw-rw----   1 root tty         7,  27 Oct 19 21:29 vcs27
crw-rw----   1 root tty         7,  28 Oct 19 21:29 vcs28
crw-rw----   1 root tty         7,  29 Oct 19 21:29 vcs29
crw-rw----   1 root tty         7,   3 Oct 19 21:29 vcs3
crw-rw----   1 root tty         7,  30 Oct 19 21:29 vcs30
crw-rw----   1 root tty         7,  31 Oct 19 21:29 vcs31
crw-rw----   1 root tty         7,  32 Oct 19 21:29 vcs32
crw-rw----   1 root tty         7,  33 Oct 19 21:29 vcs33
crw-rw----   1 root tty         7,  34 Oct 19 21:29 vcs34
crw-rw----   1 root tty         7,  35 Oct 19 21:29 vcs35
crw-rw----   1 root tty         7,  36 Oct 19 21:29 vcs36
crw-rw----   1 root tty         7,  37 Oct 19 21:29 vcs37
crw-rw----   1 root tty         7,  38 Oct 19 21:29 vcs38
crw-rw----   1 root tty         7,  39 Oct 19 21:29 vcs39
crw-rw----   1 root tty         7,   4 Oct 19 21:29 vcs4
crw-rw----   1 root tty         7,  40 Oct 19 21:29 vcs40
crw-rw----   1 root tty         7,  41 Oct 19 21:29 vcs41
crw-rw----   1 root tty         7,  42 Oct 19 21:29 vcs42
crw-rw----   1 root tty         7,  43 Oct 19 21:29 vcs43
crw-rw----   1 root tty         7,  44 Oct 19 21:29 vcs44
crw-rw----   1 root tty         7,  45 Oct 19 21:29 vcs45
crw-rw----   1 root tty         7,  46 Oct 19 21:29 vcs46
crw-rw----   1 root tty         7,  47 Oct 19 21:29 vcs47
crw-rw----   1 root tty         7,  48 Oct 19 21:29 vcs48
crw-rw----   1 root tty         7,  49 Oct 19 21:29 vcs49
crw-rw----   1 root tty         7,   5 Oct 19 21:29 vcs5
crw-rw----   1 root tty         7,  50 Oct 19 21:29 vcs50
crw-rw----   1 root tty         7,  51 Oct 19 21:29 vcs51
crw-rw----   1 root tty         7,  52 Oct 19 21:29 vcs52
crw-rw----   1 root tty         7,  53 Oct 19 21:29 vcs53
crw-rw----   1 root tty         7,  54 Oct 19 21:29 vcs54
crw-rw----   1 root tty         7,  55 Oct 19 21:29 vcs55
crw-rw----   1 root tty         7,  56 Oct 19 21:29 vcs56
crw-rw----   1 root tty         7,  57 Oct 19 21:29 vcs57
crw-rw----   1 root tty         7,  58 Oct 19 21:29 vcs58
crw-rw----   1 root tty         7,  59 Oct 19 21:29 vcs59
crw-rw----   1 root tty         7,   6 Oct 19 21:29 vcs6
crw-rw----   1 root tty         7,  60 Oct 19 21:29 vcs60
crw-rw----   1 root tty         7,  61 Oct 19 21:29 vcs61
crw-rw----   1 root tty         7,  62 Oct 19 21:29 vcs62
crw-rw----   1 root tty         7,  63 Oct 19 21:29 vcs63
crw-rw----   1 root tty         7,   7 Oct 19 21:29 vcs7
crw-rw----   1 root tty         7,   8 Oct 19 21:29 vcs8
crw-rw----   1 root tty         7,   9 Oct 19 21:29 vcs9
crw-rw----   1 root tty         7, 128 Oct 19 21:29 vcsa
crw-rw----   1 root tty         7, 129 Oct 19 21:29 vcsa1
crw-rw----   1 root tty         7, 138 Oct 19 21:29 vcsa10
crw-rw----   1 root tty         7, 139 Oct 19 21:29 vcsa11
crw-rw----   1 root tty         7, 140 Oct 19 21:29 vcsa12
crw-rw----   1 root tty         7, 141 Oct 19 21:29 vcsa13
crw-rw----   1 root tty         7, 142 Oct 19 21:29 vcsa14
crw-rw----   1 root tty         7, 143 Oct 19 21:29 vcsa15
crw-rw----   1 root tty         7, 144 Oct 19 21:29 vcsa16
crw-rw----   1 root tty         7, 145 Oct 19 21:29 vcsa17
crw-rw----   1 root tty         7, 146 Oct 19 21:29 vcsa18
crw-rw----   1 root tty         7, 147 Oct 19 21:29 vcsa19
crw-rw----   1 root tty         7, 130 Oct 19 21:29 vcsa2
crw-rw----   1 root tty         7, 148 Oct 19 21:29 vcsa20
crw-rw----   1 root tty         7, 149 Oct 19 21:29 vcsa21
crw-rw----   1 root tty         7, 150 Oct 19 21:29 vcsa22
crw-rw----   1 root tty         7, 151 Oct 19 21:29 vcsa23
crw-rw----   1 root tty         7, 152 Oct 19 21:29 vcsa24
crw-rw----   1 root tty         7, 153 Oct 19 21:29 vcsa25
crw-rw----   1 root tty         7, 154 Oct 19 21:29 vcsa26
crw-rw----   1 root tty         7, 155 Oct 19 21:29 vcsa27
crw-rw----   1 root tty         7, 156 Oct 19 21:29 vcsa28
crw-rw----   1 root tty         7, 157 Oct 19 21:29 vcsa29
crw-rw----   1 root tty         7, 131 Oct 19 21:29 vcsa3
crw-rw----   1 root tty         7, 158 Oct 19 21:29 vcsa30
crw-rw----   1 root tty         7, 159 Oct 19 21:29 vcsa31
crw-rw----   1 root tty         7, 160 Oct 19 21:29 vcsa32
crw-rw----   1 root tty         7, 161 Oct 19 21:29 vcsa33
crw-rw----   1 root tty         7, 162 Oct 19 21:29 vcsa34
crw-rw----   1 root tty         7, 163 Oct 19 21:29 vcsa35
crw-rw----   1 root tty         7, 164 Oct 19 21:29 vcsa36
crw-rw----   1 root tty         7, 165 Oct 19 21:29 vcsa37
crw-rw----   1 root tty         7, 166 Oct 19 21:29 vcsa38
crw-rw----   1 root tty         7, 167 Oct 19 21:29 vcsa39
crw-rw----   1 root tty         7, 132 Oct 19 21:29 vcsa4
crw-rw----   1 root tty         7, 168 Oct 19 21:29 vcsa40
crw-rw----   1 root tty         7, 169 Oct 19 21:29 vcsa41
crw-rw----   1 root tty         7, 170 Oct 19 21:29 vcsa42
crw-rw----   1 root tty         7, 171 Oct 19 21:29 vcsa43
crw-rw----   1 root tty         7, 172 Oct 19 21:29 vcsa44
crw-rw----   1 root tty         7, 173 Oct 19 21:29 vcsa45
crw-rw----   1 root tty         7, 174 Oct 19 21:29 vcsa46
crw-rw----   1 root tty         7, 175 Oct 19 21:29 vcsa47
crw-rw----   1 root tty         7, 176 Oct 19 21:29 vcsa48
crw-rw----   1 root tty         7, 177 Oct 19 21:29 vcsa49
crw-rw----   1 root tty         7, 133 Oct 19 21:29 vcsa5
crw-rw----   1 root tty         7, 178 Oct 19 21:29 vcsa50
crw-rw----   1 root tty         7, 179 Oct 19 21:29 vcsa51
crw-rw----   1 root tty         7, 180 Oct 19 21:29 vcsa52
crw-rw----   1 root tty         7, 181 Oct 19 21:29 vcsa53
crw-rw----   1 root tty         7, 182 Oct 19 21:29 vcsa54
crw-rw----   1 root tty         7, 183 Oct 19 21:29 vcsa55
crw-rw----   1 root tty         7, 184 Oct 19 21:29 vcsa56
crw-rw----   1 root tty         7, 185 Oct 19 21:29 vcsa57
crw-rw----   1 root tty         7, 186 Oct 19 21:29 vcsa58
crw-rw----   1 root tty         7, 187 Oct 19 21:29 vcsa59
crw-rw----   1 root tty         7, 134 Oct 19 21:29 vcsa6
crw-rw----   1 root tty         7, 188 Oct 19 21:29 vcsa60
crw-rw----   1 root tty         7, 189 Oct 19 21:29 vcsa61
crw-rw----   1 root tty         7, 190 Oct 19 21:29 vcsa62
crw-rw----   1 root tty         7, 191 Oct 19 21:29 vcsa63
crw-rw----   1 root tty         7, 135 Oct 19 21:29 vcsa7
crw-rw----   1 root tty         7, 136 Oct 19 21:29 vcsa8
crw-rw----   1 root tty         7, 137 Oct 19 21:29 vcsa9
crw-------   1 root root       10,  63 Oct 19 21:29 vga_arbiter
lrwxrwxrwx   1 root root             6 Oct 19 21:29 video -> video0
crw-rw----+  1 root video      81,   0 Oct 19 21:29 video0
crw-rw-rw-   1 root root        1,   5 Oct 19 21:29 zero

I tried to mount rtc0 which ended up with the same error message though.

Regards

Last edited by orschiro (2011-10-19 08:53:06)

Offline

#22 2011-10-28 19:42:00

orschiro
Member
Registered: 2009-06-04
Posts: 2,136
Website

Re: Can't access xd picture card [solved]

I was finally able to solve the problem.

In order to access a xD card one has to load another module called 'ssfdc' which enables the proper file system for the card.

After having loaded the module, the card should be accessible as a block device under /dev.

Regards

Offline

Board footer

Powered by FluxBB