1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#
# Copyright (C) 2006-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
define KernelPackage/cs5535
SUBMENU:=$(BLOCK_MENU)
TITLE:=NSC/AMD CS5535 chipset support
DEPENDS:=@TARGET_x86
KCONFIG:=CONFIG_BLK_DEV_CS5535
FILES=$(LINUX_DIR)/drivers/ide/cs5535.ko
AUTOLOAD:=$(call AutoLoad,30,cs5535,1)
$(call AddDepends/ide)
endef
define KernelPackage/cs5535/description
Kernel module for the NSC/AMD CS5535 companion chip
endef
$(eval $(call KernelPackage,cs5535))
define KernelPackage/cs5536
SUBMENU:=$(BLOCK_MENU)
TITLE:=AMD CS5536 chipset support
DEPENDS:=@TARGET_x86
KCONFIG:=CONFIG_BLK_DEV_CS5536
FILES=$(LINUX_DIR)/drivers/ide/cs5536.ko
AUTOLOAD:=$(call AutoLoad,30,cs5536,1)
$(call AddDepends/ide)
endef
define KernelPackage/cs5536/description
Kernel module for the AMD CS5536 Geode LX companion chip
endef
$(eval $(call KernelPackage,cs5536))
define KernelPackage/pata-cs5535
SUBMENU:=$(BLOCK_MENU)
TITLE:=CS5535 PATA support
DEPENDS:=@TARGET_x86 @PCI_SUPPORT
KCONFIG:=CONFIG_PATA_CS5535
FILES=$(LINUX_DIR)/drivers/ata/pata_cs5535.ko
AUTOLOAD:=$(call AutoLoad,30,pata_cs5535,1)
$(call AddDepends/ata)
endef
define KernelPackage/pata-cs5535/description
Kernel module for the NSC/AMD CS5535 companion chip
endef
$(eval $(call KernelPackage,pata-cs5535))
define KernelPackage/pata-cs5536
SUBMENU:=$(BLOCK_MENU)
TITLE:=CS5536 PATA support
DEPENDS:=@TARGET_x86 @PCI_SUPPORT
KCONFIG:=CONFIG_PATA_CS5536
FILES=$(LINUX_DIR)/drivers/ata/pata_cs5536.ko
AUTOLOAD:=$(call AutoLoad,30,pata_cs5536,1)
$(call AddDepends/ata)
endef
define KernelPackage/pata-cs5536/description
Kernel module for the AMD CS5536 Geode LX companion chip
endef
$(eval $(call KernelPackage,pata-cs5536))
|