kernel: negate kernel version dependencies to fix config for new kernel versions
This fixes some problems on kernel 3.13 and also removes the reference to LINUX_3_7. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 39532
This commit is contained in:
parent
caf2bd456c
commit
8f0ffe9cc6
3 changed files with 3 additions and 3 deletions
|
@ -25,7 +25,7 @@ $(eval $(call KernelPackage,fs-autofs4))
|
|||
define KernelPackage/fs-btrfs
|
||||
SUBMENU:=$(FS_MENU)
|
||||
TITLE:=BTRFS filesystem support
|
||||
DEPENDS:=+kmod-lib-crc32c +kmod-lib-lzo +kmod-lib-zlib +(LINUX_3_9||LINUX_3_10||LINUX_3_12):kmod-lib-raid6 +(LINUX_3_9||LINUX_3_10||LINUX_3_12):kmod-lib-xor
|
||||
DEPENDS:=+kmod-lib-crc32c +kmod-lib-lzo +kmod-lib-zlib +(!LINUX_3_3&&!LINUX_3_6&&!LINUX_3_8):kmod-lib-raid6 +(!LINUX_3_3&&!LINUX_3_6&&!LINUX_3_8):kmod-lib-xor
|
||||
KCONFIG:=\
|
||||
CONFIG_BTRFS_FS \
|
||||
CONFIG_BTRFS_FS_POSIX_ACL=n \
|
||||
|
|
|
@ -430,7 +430,7 @@ $(eval $(call KernelPackage,e1000))
|
|||
define KernelPackage/e1000e
|
||||
SUBMENU:=$(NETWORK_DEVICES_MENU)
|
||||
TITLE:=Intel(R) PRO/1000 PCIe cards kernel support
|
||||
DEPENDS:=@PCIE_SUPPORT +(!LINUX_3_3&&!LINUX_3_6&&!LINUX_3_7):kmod-ptp
|
||||
DEPENDS:=@PCIE_SUPPORT +(!LINUX_3_3&&!LINUX_3_6):kmod-ptp
|
||||
KCONFIG:=CONFIG_E1000E
|
||||
FILES:=$(LINUX_DIR)/drivers/net/ethernet/intel/e1000e/e1000e.ko
|
||||
AUTOLOAD:=$(call AutoProbe,e1000e)
|
||||
|
|
|
@ -205,7 +205,7 @@ $(eval $(call KernelPackage,usb2-pci))
|
|||
|
||||
define KernelPackage/usb-dwc2
|
||||
TITLE:=DWC2 USB controller driver
|
||||
DEPENDS:=@LINUX_3_10
|
||||
DEPENDS:=@(!LINUX_3_3&&!LINUX_3_6&&!LINUX_3_8&&!LINUX_3_9)
|
||||
KCONFIG:= \
|
||||
CONFIG_USB_DWC2 \
|
||||
CONFIG_USB_DWC2_DEBUG=n \
|
||||
|
|
Loading…
Reference in a new issue