Quoth Marcos Pereira: > I'm porting the cobra52xx mmc/sd card driver to my board (Netburner > MOD5270). > The system already detects if the card is inserted, starts the driver > without errors but the device isn't showed in the /dev directory. How > can I access the MMC/SD card?
Most uClinux setups don't have a dynamic /dev directory. Instead, you create all the nodes you want in /dev as part of your vendor Makefile. So you will first need to determine the major/minor numbers assigned to the mmc/sd device by the driver, and then modify your vendor Makefile to create a corresponding device node. _______________________________________________ uClinux-dev mailing list [email protected] http://mailman.uclinux.org/mailman/listinfo/uclinux-dev This message was resent by [email protected] To unsubscribe see: http://mailman.uclinux.org/mailman/options/uclinux-dev
