diff options
author | Nicolas Thill <nico@openwrt.org> | 2011-10-29 15:03:56 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2011-10-29 15:03:56 +0000 |
commit | 0817f041877704400449b359ee5d3c00f24da6c3 (patch) | |
tree | f85dbd0dd58f8fed8075d0e68beac5bbf682630b /package/kernel/modules/usb.mk | |
parent | 8b5cf7ae5b7404d79d661145b07263f79bae4af5 (diff) | |
download | upstream-0817f041877704400449b359ee5d3c00f24da6c3.tar.gz upstream-0817f041877704400449b359ee5d3c00f24da6c3.tar.bz2 upstream-0817f041877704400449b359ee5d3c00f24da6c3.zip |
package/kernel: various NLS handling fixes
* move AddDepends/nls to 001-depends.mk for proper use by other packages (closes: #7639)
* make kmod-usb-core use it
* fix deps generated from its arguments (as used in kmod-fs-hfsplus)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28668 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kernel/modules/usb.mk')
-rw-r--r-- | package/kernel/modules/usb.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/kernel/modules/usb.mk b/package/kernel/modules/usb.mk index b72a346286..d5b58ffb35 100644 --- a/package/kernel/modules/usb.mk +++ b/package/kernel/modules/usb.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2010 OpenWrt.org +# Copyright (C) 2006-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -14,10 +14,11 @@ USBINPUT_DIR?=input/misc define KernelPackage/usb-core SUBMENU:=$(USB_MENU) TITLE:=Support for USB - DEPENDS:=@USB_SUPPORT +kmod-nls-base + DEPENDS:=@USB_SUPPORT KCONFIG:=CONFIG_USB CONFIG_XPS_USB_HCD_XILINX=n CONFIG_USB_FHCI_HCD=n FILES:=$(LINUX_DIR)/drivers/usb/core/usbcore.ko AUTOLOAD:=$(call AutoLoad,20,usbcore,1) + $(call AddDepends/nls) endef define KernelPackage/usb-core/description |