Lines Matching +full:build +full:- +full:rules
1 .. SPDX-License-Identifier: GPL-2.0
15 ---------------------------------------
23 -------------------------------------------
26 database file (regulatory.db) containing all the regulatory rules. It
27 will then use that database when it needs to look up the rules for a
31 ---------------------------------------------------------------
34 a userspace agent build it and send it via nl80211. Only
38 is CRDA - central regulatory domain agent. Its documented here:
49 # Example file, should be put in /etc/udev/rules.d/regulatory.rules
55 --------------------------------
83 They have two options -- they either provide an alpha2 so that
85 they can build their own regulatory domain based on internal
105 Example code - drivers hinting an alpha2:
106 ------------------------------------------
130 if (regdomain == reg_map->reg) {
131 alpha2[0] = reg_map->alpha2[0];
132 alpha2[1] = reg_map->alpha2[1];
145 r = zd_reg2alpha2(mac->regdomain, alpha2);
147 regulatory_hint(hw->wiphy, alpha2);
149 Example code - drivers providing a built in regulatory domain:
150 --------------------------------------------------------------
155 driver and you *need* to use this we let you build a regulatory domain
172 REG_RULE(2412-10, 2484+10, 40, 6, 20, 0),
174 REG_RULE(5170-10, 5240+10, 40, 6, 20,
177 REG_RULE(5260-10, 5320+10, 40, 6, 20,
195 return -ENOMEM;
200 memcpy(&rd->reg_rules[i],
206 ---------------------------------------
209 firmware file at build time that is then linked into the kernel.