This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DRA724: QNX emmc driver,How to configure devb-sdmmc-omap_generic ,use sdmmc option

Part Number: DRA724

we want use emmc gpt in qnx ,

how to configure devb-sdmmc-omap_generic to use emmc  gpt?

  • Hi Xiaobin,

    The QNX User Guide that comes with the DRA72x BSP goes over how to  launch the eMMC driver and create eMMC partitions.

    The below command shows one set of options to launch the devb-sdmmc-omap_generic to support eMMC.

    devb-sdmmc-omap_generic sdio clk=192000000,ad  dr=0x480B4000,irq=118,hc=omap,bs=emmc:bw=8 blk cache=2M disk name=emmc

    The partitions can be created/deleted/displayed with QNX fdisk, utility, some examples below.

    Display current partitions:

    fdisk /dev/emmc0 info

    fdisk /dev/emmc0 show

    Create a new 2G DOS partition:

    fdisk /dev/emmc0 add -t 12 -c 0,2000

    Regards,

    kb

  • KB,

    Thanks.