mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
8fc171318e
It is necessary to provide the same Vendor and Product IDs as the one in the original Linux kernel code. Without this change the USB mass storage gadget is not working with Windows7. Signed-off-by: Lukasz Majewski <l.majewski@samsung.com> Acked-by: Minkyu Kang <mk7.kang@samsung.com>
14 lines
325 B
Makefile
14 lines
325 B
Makefile
#
|
|
# Copyright (C) 2012 Samsung Electronics
|
|
# Lukasz Majewski <l.majewski@samsung.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_SOFT_I2C_MULTI_BUS) += multi_i2c.o
|
|
obj-$(CONFIG_USBDOWNLOAD_GADGET) += gadget.o
|
|
obj-$(CONFIG_MISC_COMMON) += misc.o
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_BOARD_COMMON) += board.o
|
|
endif
|