Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1obj-$(CONFIG_RT3090) += rt3090sta.o
2
3include drivers/staging/rt3090/config.mk
4
5rt3090sta-objs := \
6 common/crypt_md5.o \
7 common/crypt_sha2.o \
8 common/crypt_hmac.o \
9 common/mlme.o \
10 common/cmm_wep.o \
11 common/action.o \
12 common/cmm_data.o \
13 common/rtmp_init.o \
14 common/cmm_tkip.o \
15 common/cmm_aes.o \
16 common/cmm_sync.o \
17 common/eeprom.o \
18 common/cmm_sanity.o \
19 common/cmm_info.o \
20 common/cmm_cfg.o \
21 common/cmm_wpa.o \
22 common/dfs.o \
23 common/spectrum.o \
24 common/rtmp_timer.o \
25 common/rt_channel.o \
26 common/cmm_profile.o \
27 common/cmm_asic.o \
28 sta/assoc.o \
29 sta/auth.o \
30 sta/auth_rsp.o \
31 sta/sync.o \
32 sta/sanity.o \
33 sta/rtmp_data.o \
34 sta/connect.o \
35 sta/wpa.o \
36 rt_linux.o \
37 rt_profile.o \
38 rt_main_dev.o \
39 sta_ioctl.o
40
41#ifdef DOT11_N_SUPPORT
42ifeq ($(HAS_DOT11_N_SUPPORT),y)
43rt3090sta-objs += \
44 common/ba_action.o
45endif
46#endif // DOT11_N_SUPPORT //
47
48#ifdef ETH_CONVERT
49ifeq ($(HAS_ETH_CONVERT_SUPPORT), y)
50rt3090sta-objs += \
51 common/cmm_mat.o \
52 common/cmm_mat_iparp.o \
53 common/cmm_mat_pppoe.o \
54 common/cmm_mat_ipv6.o
55endif
56#endif // ETH_CONVERT //
57
58ifeq ($(HAS_BLOCK_NET_IF),y)
59rt3090sta-objs += common/netif_block.o
60endif
61
62ifeq ($(HAS_QOS_DLS_SUPPORT),y)
63rt3090sta-objs += sta/dls.o
64endif
65
66rt3090sta-objs += \
67 pci_main_dev.o \
68 rt_pci_rbus.o \
69 common/cmm_mac_pci.o \
70 common/cmm_data_pci.o \
71 common/ee_prom.o \
72 common/ee_efuse.o \
73 common/rtmp_mcu.o \
74 chips/rt30xx.o \
75 common/rt_rf.o \
76 chips/rt3090.o
77
78ifeq ($(HAS_ATE),y)
79rt3090sta-objs += rt_ate.o
80endif