|
@@ -137,6 +137,7 @@ static int fastboot_bind(struct usb_configuration *c, struct usb_function *f)
|
|
int id;
|
|
int id;
|
|
struct usb_gadget *gadget = c->cdev->gadget;
|
|
struct usb_gadget *gadget = c->cdev->gadget;
|
|
struct f_fastboot *f_fb = func_to_fastboot(f);
|
|
struct f_fastboot *f_fb = func_to_fastboot(f);
|
|
|
|
+ const char *s;
|
|
|
|
|
|
/* DYNAMIC interface numbers assignments */
|
|
/* DYNAMIC interface numbers assignments */
|
|
id = usb_interface_id(c, f);
|
|
id = usb_interface_id(c, f);
|
|
@@ -162,6 +163,10 @@ static int fastboot_bind(struct usb_configuration *c, struct usb_function *f)
|
|
|
|
|
|
hs_ep_out.bEndpointAddress = fs_ep_out.bEndpointAddress;
|
|
hs_ep_out.bEndpointAddress = fs_ep_out.bEndpointAddress;
|
|
|
|
|
|
|
|
+ s = getenv("serial#");
|
|
|
|
+ if (s)
|
|
|
|
+ g_dnl_set_serialnumber((char *)s);
|
|
|
|
+
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|