:orphan: .. title:: CONFIG_USB_DEVICE_PRODUCT .. kconfig:: CONFIG_USB_DEVICE_PRODUCT CONFIG_USB_DEVICE_PRODUCT ######################### *USB product name* Type: ``string`` Help ==== .. code-block:: none USB device Product string. MUST be configured by vendor. Direct dependencies =================== (\ :kconfig:`USB_DEVICE_STACK ` && \ :kconfig:`BOARD_DEGU_EVK `) || (\ :kconfig:`USB_DEVICE_STACK ` && \ :kconfig:`BOARD_INTEL_S1000_CRB `) || \ :kconfig:`USB_DEVICE_STACK ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - "Degu Evaluation Kit" - "Sue Creek (S1000) ASIC" - "USB-DEV" Kconfig definitions =================== At ``/arm/degu_evk/Kconfig.defconfig:13`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config USB_DEVICE_PRODUCT string default "Degu Evaluation Kit" depends on USB_DEVICE_STACK && BOARD_DEGU_EVK ---- At ``/xtensa/intel_s1000_crb/Kconfig.defconfig:77`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config USB_DEVICE_PRODUCT string default "Sue Creek (S1000) ASIC" depends on USB_DEVICE_STACK && BOARD_INTEL_S1000_CRB ---- At ``/usb/Kconfig:39`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:49`` Menu path: (Top) → Sub Systems and OS Services → USB Device Support .. code-block:: kconfig config USB_DEVICE_PRODUCT string "USB product name" default "USB-DEV" depends on USB_DEVICE_STACK help USB device Product string. MUST be configured by vendor. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*