SD/MMC card


 
Thread Tools Search this Thread
Operating Systems Linux SD/MMC card
# 1  
Old 05-12-2007
SD/MMC card

I have an inbuilt SD/MMC port on my Asus A6R laptop, and I would love to be able to use it. I have found files in my system for it (I am fairly new to Linux). They are in this directory:

/usr/src/kernels/2.6.11-1.1369_FC4-i686/include/linux/mmc

Optional files from there are:

card.h host.h mmc.h protocol.h

Any help as to where to go from here?
# 2  
Old 05-14-2007
What happens when you plug in an SD/MMC card? A lot of times the device (card in this case) will be automounted. Type 'df' before inserting the card, then insert the card, wait a few seconds and type 'df' again. If the card was automounted, there will be a new line in the output that wasn't there before.

I believe those .h files are for compiling a linux kernel and/or any kernel modules/extensions. You shouldn't have to use those to get your SD/MMC port to work.
# 3  
Old 05-15-2007
It does not automount, there is no extra line, it looks exactly as it did prior to inserting the card.
# 4  
Old 05-15-2007
After inserting the card, do you get anything new in the output of 'dmesg' ?

Try running this before then after inserting the card and look for differences. If there are any then if you post them we can probably help.

I'll have a look and see if I have a FC4 system here and see how things are configured by default.
# 5  
Old 05-16-2007
There are no differences. I am thinking about recompiling my kernel to something more update which includes MM/SD card support. Do you think this would be the best idea?
# 6  
Old 05-17-2007
On my FC5 server, I can see that MMC support is compiled as a module:
Code:
# grep -i mmc /boot/config-`uname -r`
# CONFIG_PCI_GOMMCONFIG is not set
CONFIG_PCI_MMCONFIG=y
# MMC/SD Card support
CONFIG_MMC=m
# CONFIG_MMC_DEBUG is not set
CONFIG_MMC_BLOCK=m
CONFIG_MMC_WBSD=m

Try modprobe-ing mmc_core and mmc_block:
Code:
# modprobe mmc_core
# modprobe mmc_block
# lsmod | grep mmc
mmc_block               8649  0 
mmc_core               24773  1 mmc_block

Insert the MMC card, and see if it mounts.

Cheers,
ZB
# 7  
Old 05-17-2007
Still nothing, it does not mount.

Sarah
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

Raid Card

I have a compaq system that only supports IDE drivers, I use on it FreeBSD and debian. I want to get a Raid card that supports Raid 1. Which card Should i get that would be fully supported?? i dont want to spend more than $60 thanks :) (0 Replies)
Discussion started by: supermiguel
0 Replies

2. UNIX Desktop Questions & Answers

Does Red Hat Fedora support Nvidia card 8800GTX and 260 card?

Does Red Hat Fedora support Nvidia card 8800GTX and 260 card? Does any Linux OS support Nvidia card? (1 Reply)
Discussion started by: sito
1 Replies

3. HP-UX

how can I determine which NIC card is virtual NIC Card

how can I determine which NIC card is virtual NIC Card which condition can make a decision Does HP UX have Virtual Network Adapter Concept if ,it has where I can Find if I Install Virutal Network Adapter or which command that i can get it or which software can generate thanks (2 Replies)
Discussion started by: alert0919
2 Replies

4. Solaris

HBA Card

Hello...I got a problem here. I have HBAs installed in one of the domains in E20 and I gotta find out the brand and firmware. But when I do a prtconf, I cannot see the HBA. For other servers installed with HBAs, when I do prtconf on them I can see either qlc or em. Can you guys enlighten me how to... (5 Replies)
Discussion started by: xiaochensg
5 Replies

5. Linux

wireless card

Ive been fooling around on my spare laptop and put different cores of Fedora on and the computer uses an ibm a/b/g card but the os wont recognize the card and doesnt have the software fore it is there anyway to get the software for the card on the comp or should i buy a card that the os knows? (7 Replies)
Discussion started by: Texasone
7 Replies

6. IP Networking

ethernet card

What command do I use to show mw the ethernet card, I have tried ipconfig -a (1 Reply)
Discussion started by: dhlopomo
1 Replies

7. UNIX for Dummies Questions & Answers

Please help me with my sound card...

Hello, I have recently installed Red Hat 7.3 next to my Windows XP. Everything works fine, except for the sound card (Sound Blaster Audigy), which is not supported yet. I heard that I can install SB Live! drivers to get it to work, but being a complete linux newbie I don't know how to do that. Can... (3 Replies)
Discussion started by: LittleMan
3 Replies

8. UNIX for Dummies Questions & Answers

sound card ?????

sapp guys i've got this little problem, i have no idea what kind of sound card i got i check dmesg|more and its not there is there any other way to find out ? THX (4 Replies)
Discussion started by: challenger
4 Replies
Login or Register to Ask a Question