1

在内核配置中包含 g_mass_storage 模块的嵌入式系统上工作,我想定义设备的名称。后者对于在插入主机时识别设备很有用。

我正在使用以下功能:

int usb_gadget(void) 
{
    char cmd[512];
    int  fd = -1;
    int  len = -1;

    memset((void *)cmd, 0x00, sizeof(cmd));

    fd = open("proc/modules", O_RDONLY);
    if (fd > 0) 
    {
        len = read(fd, cmd, sizeof(cmd));
        if (len > 0) 
        {
            if (strstr(cmd, "g_mass_storage") > 0) 
            {
                fprintf(stderr, "Missing module \n");   
            } 
            else 
            {
                strcpy(cmd, "modprobe ");
                strcat(cmd, "g_mass_storage");
                strcat(cmd, " file=");
                strcat(cmd, "tmp/testfile");
                strcat(cmd," idVendor=2000 ");
                strcat(cmd," idProduct=2000 ");
                strcat(cmd," bcdDevice=2000 ");
                strcat(cmd," iManufacturer=TEST ");
                strcat(cmd," iProduct=BOARD1 ");
                strcat(cmd," iSerialNumber=1 ");                    
                system(cmd);
            }
            close(fd);
        }
    }
    return 0;
}

当设备连接到 Windows PC 时,设备定义为Local Disk(E:).

如何Local Disk通过特定名称进行交换,因为它是为我的 USB 密钥完成的SnPKey

编辑 1:

海量存储小工具

根据上一个链接中给出的信息,我尝试通过指定 USB 产品字符串iProduct但没有成功。

4

1 回答 1

1

找到解决方案。

卷标必须在扇区创建期间定义。

就我而言,我通过写0x4E,0x4F,0x20,0x4E,0x41,0x4D,0x45,0x20,0x20,0x20,0x20等于NO NAME.

于 2016-02-04T07:38:14.330 回答