Blame view

net/wireless/Makefile 2.08 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  # SPDX-License-Identifier: GPL-2.0
704232c27   Johannes Berg   [WIRELESS] cfg802...
2
  obj-$(CONFIG_CFG80211) += cfg80211.o
7e272fcff   John W. Linville   wireless: consoli...
3
  obj-$(CONFIG_LIB80211) += lib80211.o
274bfb8dc   John W. Linville   lib80211: absorb ...
4
5
6
  obj-$(CONFIG_LIB80211_CRYPT_WEP) += lib80211_crypt_wep.o
  obj-$(CONFIG_LIB80211_CRYPT_CCMP) += lib80211_crypt_ccmp.o
  obj-$(CONFIG_LIB80211_CRYPT_TKIP) += lib80211_crypt_tkip.o
704232c27   Johannes Berg   [WIRELESS] cfg802...
7

3d23e349d   Johannes Berg   wext: refactor
8
9
10
11
  obj-$(CONFIG_WEXT_CORE) += wext-core.o
  obj-$(CONFIG_WEXT_PROC) += wext-proc.o
  obj-$(CONFIG_WEXT_SPY) += wext-spy.o
  obj-$(CONFIG_WEXT_PRIV) += wext-priv.o
59bbb6f75   Johannes Berg   cfg80211: validat...
12
  cfg80211-y += core.o sysfs.o radiotap.o util.o reg.o scan.o nl80211.o
6e0bd6c35   Rostislav Lisovy   cfg80211: 802.11p...
13
  cfg80211-y += mlme.o ibss.o sme.o chan.o ethtool.o mesh.o ap.o trace.o ocb.o
9bb7e0f24   Johannes Berg   cfg80211: add pee...
14
  cfg80211-y += pmsr.o
e691ac2f7   Rafał Miłecki   cfg80211: support...
15
  cfg80211-$(CONFIG_OF) += of.o
1ac61302d   Luis R. Rodriguez   mac80211/cfg80211...
16
  cfg80211-$(CONFIG_CFG80211_DEBUGFS) += debugfs.o
3d23e349d   Johannes Berg   wext: refactor
17
  cfg80211-$(CONFIG_CFG80211_WEXT) += wext-compat.o wext-sme.o
b14392368   Johannes Berg   mac80211/cfg80211...
18

14e8a3c47   Beni Lev   cfg80211: add tra...
19
  CFLAGS_trace.o := -I$(src)
90a53e443   Johannes Berg   cfg80211: impleme...
20
21
22
23
24
  
  cfg80211-$(CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS) += shipped-certs.o
  ifneq ($(CONFIG_CFG80211_EXTRA_REGDB_KEYDIR),)
  cfg80211-y += extra-certs.o
  endif
04a7279ff   Johannes Berg   cfg80211: ship ce...
25
  $(obj)/shipped-certs.c: $(wildcard $(srctree)/$(src)/certs/*.hex)
1188e2a9e   Arnd Bergmann   cfg80211: don't p...
26
  	@$(kecho) "  GEN     $@"
04a7279ff   Johannes Berg   cfg80211: ship ce...
27
28
29
30
31
32
  	@(echo '#include "reg.h"'; \
  	  echo 'const u8 shipped_regdb_certs[] = {'; \
  	  cat $^ ; \
  	  echo '};'; \
  	  echo 'unsigned int shipped_regdb_certs_len = sizeof(shipped_regdb_certs);'; \
  	 ) > $@
90a53e443   Johannes Berg   cfg80211: impleme...
33
34
35
  
  $(obj)/extra-certs.c: $(CONFIG_CFG80211_EXTRA_REGDB_KEYDIR:"%"=%) \
  		      $(wildcard $(CONFIG_CFG80211_EXTRA_REGDB_KEYDIR:"%"=%)/*.x509)
1188e2a9e   Arnd Bergmann   cfg80211: don't p...
36
  	@$(kecho) "  GEN     $@"
715a12334   Johannes Berg   wireless: don't w...
37
38
39
  	@(set -e; \
  	  allf=""; \
  	  for f in $^ ; do \
32b5a2c99   Maxim Mikityanskiy   wireless: Skip di...
40
  	      test -f $$f || continue;\
715a12334   Johannes Berg   wireless: don't w...
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
  	      # similar to hexdump -v -e '1/1 "0x%.2x," "
  "' \
  	      thisf=$$(od -An -v -tx1 < $$f | \
  	                   sed -e 's/ /
  /g' | \
  	                   sed -e 's/^[0-9a-f]\+$$/\0/;t;d' | \
  	                   sed -e 's/^/0x/;s/$$/,/'); \
  	      # file should not be empty - maybe command substitution failed? \
  	      test ! -z "$$thisf";\
  	      allf=$$allf$$thisf;\
  	  done; \
  	  ( \
  	      echo '#include "reg.h"'; \
  	      echo 'const u8 extra_regdb_certs[] = {'; \
  	      echo "$$allf"; \
  	      echo '};'; \
  	      echo 'unsigned int extra_regdb_certs_len = sizeof(extra_regdb_certs);'; \
5d3240739   Thierry Reding   cfg80211: always ...
58
  	  ) > $@)
04a7279ff   Johannes Berg   cfg80211: ship ce...
59
60
  
  clean-files += shipped-certs.c extra-certs.c