summaryrefslogtreecommitdiffstats
path: root/rules/crda.make
Commit message (Collapse)AuthorAgeFilesLines
* crda: use new <PKG>_PARTS syntaxMichael Olbrich2024-02-091-14/+1
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: Regdb version bump. 2023.02.13 -> 2023.05.02Christian Melki2023-08-281-2/+2
| | | | | | | | A few regulatory changes only. Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20230821080312.4096474-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: Version bump. regdb 2022.08.12 -> 2023.02.13Christian Melki2023-04-101-2/+2
| | | | | | | | | Various regulatory changes. Mostly 5 and 6GHz. Russia, Switzerland, Japan, Brazil. Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20230329175029.547736-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: fix building with openssl 3.xMichael Olbrich2023-02-091-0/+1
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: Version bump. crda 4.14 -> 4.15. regdb 2022.06.06 -> 2022.08.12.Christian Melki2022-09-231-4/+4
| | | | | | | | | | | Very minor fixes. crda is just a release tag on the latest commit, which is a couple of years already. * Forward patches. Minor changes to make them apply. Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20220923072430.652471-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: regdb version bump. 2021-08-28 -> 2022-06-06.Christian Melki2022-07-291-2/+2
| | | | | | Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20220722094537.742158-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda+regdb: Bump. crda 3.18 -> 4.14, regdb 2019.06.03 -> 2021.08.28Christian Melki2022-01-211-6/+9
| | | | | | | | | | | | | | | * Move crda patches from 3.18 to 4.14, applies cleanly. * Update crda URL, the old URL does not contain 4.14. * crda depends on host system python capability. * Introduce a new ONLY_REGULATOR_DB option. Kernels > 4.15 do not really need CRDA anymore. Make it an option instead of a kernel version check so that developers can decide for themselves when to switch and why. Signed-off-by: Christian Melki <christian.melki@t2data.com> Message-Id: <20220119095109.3661113-1-christian.melki@t2data.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: install regulatory.db tooDenis Osterland-Heim2021-03-141-0/+8
| | | | | | | | Kernel >= 4.15 want to load this file. Signed-off-by: Denis Osterland-Heim <denis.osterland@diehl.com> Message-Id: <20210311075202.1876-1-denis.osterland@diehl.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: update regdb version 2018.05.31 -> 2019.06.03Michael Olbrich2019-09-231-2/+2
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* CREDITS: remove unmaintained fileRoland Hieber2019-07-031-2/+0
| | | | | | | | | | | | | | | This file has been touched 2 times in the last 7 years, and is no longer up to date. Remove it to carry less unmaintained stuff around. Also remove all references to it from file headers using for file in `g grep -l 'See CREDITS for details about who has'`; do sed -i '/See CREDITS for details about who has/,+1d' $file done as well as the different wording from rules/other/Toplevel.make. Signed-off-by: Roland Hieber <rhi@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: don't use builtin keysMichael Olbrich2018-11-171-15/+9
| | | | | | | | This is one step torwards updating OpenSSL to version 1.1.x: The data structures needed for builtin keys are no longer accessable in that version. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: remove bogus variableMichael Olbrich2018-09-061-1/+0
| | | | | | | The correct assignment would be '$(CRDA_SOURCE) := CRDA'. This is generated and overwrites the assignment in the makefile anyways, so just remove it. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: extend rule to download versioned regulatory.binptxdist-2018.07.0Michael Tretter2018-07-051-2/+37
| | | | | | | | | | | | | | | The crda reads the regulatory database information from regulatory.bin, which is updated upon regulatory changes and is versioned. Extend the crda.make to download a specified version of the database to document the used database version. This allows to drop the copy of the regulatory.bin from the projectroot. Still allow to override the database in a BSP projectroot if necessary. Signed-off-by: Michael Tretter <m.tretter@pengutronix.de> [mol: simplify install stage] Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* License report: unify all license listsJuergen Borleis2017-12-081-1/+1
| | | | | | | | If a package uses more than one license at a time, the keyword "AND" should illustrate this. Follow this rule for all packages with more than one license in their list. Signed-off-by: Juergen Borleis <jbe@pengutronix.de>
* crda: SBINDIR without trailing slash produces incorrect udev ruleArtur Wiebe2017-06-301-2/+2
| | | | | | | | | | | | in upstream crda Makefile: SBINDIR ?= /sbin/ UDEV_RULE_DIR?=/lib/udev/rules.d/ and the udev rule generator: KERNEL=="regulatory*", ACTION=="change", SUBSYSTEM=="platform", RUN+="$(SBINDIR)crda" Signed-off-by: Artur Wiebe <artur@4wiebe.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: /usr mergeMichael Olbrich2017-04-111-3/+6
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: fix build on all 64 bit platformsMarc Kleine-Budde2016-06-301-1/+1
| | | | | | Use PTXCONF_ARCH_LP64 instead of PTXCONF_ARCH_X86_64. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* crda: version bump to 3.18Marc Kleine-Budde2016-06-301-2/+2
| | | | | | | | This is needed in order to work with the updated regulatory.bin from: 1fdfb3fd5602 crda: update to new regulatory.bin Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* crda: update to new regulatory.binMarc Kleine-Budde2016-06-241-1/+1
| | | | | | | | This regulatory.bin was downloaded from: https://git.kernel.org/cgit/linux/kernel/git/sforshee/wireless-regdb.git/plain/regulatory.bin?id=ce069203de85ff370d23bdca6c1a2edb941def35 Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* crda: add license infoMichael Olbrich2015-10-271-1/+4
| | | | Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: fix fox x86_64Michael Olbrich2015-01-091-1/+8
| | | | | | | The pregenerated keys-ssl.c is different fox 64 bit architectures, so we need to ship a different version and choose the correct one. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: version bump 1.1.3 -> 3.13Markus Pargmann2014-05-081-4/+5
| | | | | | | | | There are some problems in the new version which get fixed by the additional patches. Signed-off-by: Markus Pargmann <mpa@pengutronix.de> [mol: patch cleanup & update] Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: version bump 1.1.2 -> 1.1.3Michael Olbrich2013-03-191-2/+2
| | | | | | also use libnl3 Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
* crda: add package (Central Regulatory Domain Agent)Jan Luebbe2012-01-301-0/+71
Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>