aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/linux/modules/wpan.mk
Commit message (Collapse)AuthorAgeFilesLines
* kernel: wpan: Add kmod-ca8210Hauke Mehrtens2020-08-211-0/+16
| | | | | | This device is found on the pistachio marduk board. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* kernel: wpan: Add missing AUTOLOAD to load kernel moduleHauke Mehrtens2020-08-211-0/+3
| | | | | | | These kernel modules were not loaded automatically, fix this by adding the AUTOLOAD definition. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* kernel: avoid underscore in *6lowpan package namesEneas U de Queiroz2020-02-191-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | Packages kmod-bluetooth_6lowpan and kmod-ieee802154_6lowpan contain an underscore in the package name. This causes problems in package/install because when building a list of package files to install offline using opkg, it uses a wildcard of the form $(dir)/$(pkg)_*.ipk. If you were to select kmod-bluetooth=y, but kmod-bluetooth_6lowpan=m, the latter would be picked up by that wildcard, and make package/install would fail: Collected errors: * satisfy_dependencies_for: Cannot satisfy the following dependencies * for kmod-bluetooth_6lowpan: * kmod-6lowpan * opkg_install_cmd: Cannot install package kmod-bluetooth_6lowpan. Changing the wildcard pattern is not trivial, and there may be other places in the build system making this assumption about the package name format. Using a dash in place of the underscore avoids the issue. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* kernel: remove obsolete kernel version switchesAdrian Schmutzler2020-01-121-3/+2
| | | | | | | | | After kernel 4.9 has been removed, this removes all (now obsolete) kernel version switches that deal with versions before 4.14. Package kmod-crypto-iv is empty now and thus removed entirely. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
* kernel: add package for atusb wpan moduleSebastian Meiling2019-06-061-0/+11
| | | | | | | | This adds a new package for the kernel module of the ATUSB WPAN driver. Signed-off-by: Sebastian Meiling <s@mlng.net> [fixed SoB: and From: mismatch] Signed-off-by: Petr Štetiar <ynezz@true.cz>
* kernel: Remove support for kernel 3.18Hauke Mehrtens2019-05-031-4/+3
| | | | | | | | | | No target is using kernel 3.18 anymore, remove all the generic support for kernel 3.18. The removed packages are depending on kernel 3.18 only and are not used on any recent kernel. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* kernel: Build: Split kmod-regmapHauke Mehrtens2019-01-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | | This reduces the needed modifications to the mainline Linux kernel and also makes the regmap package work with an out of tree kernel which does not have these modifications. The regmap-core is only added when it is really build as a module. The regmap-core is normally bool so it cannot be built as a module in an unmodified kernel. When it is selected by on other kernel module it will always be selected as build in and it also does not show up in $(LINUX_DIR)/modules.builtin as it is not supposed to be a kernel module. When it is not in $(LINUX_DIR)/modules.builtin the build system expects it to be built as a .ko file. Just check if the module is really there and only add it in that case. This splits the regmap package into multiple packages, one for each bus type. This way only the bus maps which are really needed have to be added. This also splits the I2C, SPI and MMIO regmap into separate packages to not require all these subsystems to build them, on an unmodified upstream kernel this also causes problems in some situations. Signed-off-by: Hauke Mehrtens <hauke.mehrtens@intel.com>
* kernel: wpan: mrf24j40 depends on regmap-spiFelix Fietkau2016-01-251-1/+1
| | | | | | | | | | | | | kmod-mrf24j40 select REGMAP_SPI since 4.3, thus add dependency to kmod-regmap. Found by buildbot: Package kmod-mrf24j40 is missing dependencies for the following libraries: regmap-spi.ko Signed-off-by: Daniel Golle <daniel@makrotopia.org> SVN-Revision: 48484
* package: kernel: update dependencies for 4.4Jonas Gorski2015-12-021-1/+3
| | | | | | | | | Update dependencies for linux 4.4 and mark as broken where source code needs updating. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 47700
* kernel: fix dependecy of kmod-ieee802154_6lowpanHauke Mehrtens2015-07-171-1/+1
| | | | | | | | This module also depends on kmod-ieee802154 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 46407
* kernel: wpan: at86rf230 depends on regmap-spiJonas Gorski2015-07-161-1/+1
| | | | | | | | | | | | | | | kmod-at86rf230 select REGMAP_SPI since 3.17, so add a dependency to kmod-regmap. Fixes the following error: Package kmod-at86rf230 is missing dependencies for the following libraries: regmap-core.ko regmap-spi.ko Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 46387
* kernel: modules: activate wpan on kernel 4.1Hauke Mehrtens2015-07-081-4/+4
| | | | | | | | | Make wpan depend on not kernel 3.18 so it will get activated on all other kernel versions like 4.0 and 4.1. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 46276
* kernel: move wpan to separate menuJohn Crispin2015-07-071-1/+1
| | | | | | | | bluetooth is separate from 802.11 entries too Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de> SVN-Revision: 46242
* wpan: remove duplicate DEPENDSJohn Crispin2015-04-211-2/+1
| | | | | | Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de> SVN-Revision: 45532
* wpan: rework bluetooth / wpan and 6lowpan dependenciesJohn Crispin2015-04-211-3/+5
| | | | | | | | | | - remove/rename of 6lowpan-iphc upstream change in 3.17: 6lowpan: introduce new net/6lowpan directory id: 2c6bed7cfcd3f594ed9e4d6919fa2ebea2243d19 Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de> SVN-Revision: 45529
* wpan: remove duplicate DEPENDSLuka Perkov2015-04-131-1/+0
| | | | | | Signed-off-by: Varka Bhadram <varkab@cdac.in> SVN-Revision: 45409
* modules: more wpan fixesJohn Crispin2015-04-101-23/+7
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 45365
* modules: add missing wpan fakehard driverJohn Crispin2015-04-101-1/+17
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 45364
* kernel: fix kmod-ieee802154_6lowpan config symbolJonas Gorski2015-04-101-1/+1
| | | | | | | | | | | | | | | | Fixes build failure caught by buildbot: IEEE Std 802.15.4 Low-Rate Wireless Personal Area Networks support (IEEE802154) [M/n/y/?] m 6lowpan support over IEEE 802.15.4 (IEEE802154_6LOWPAN) [N/m/?] (NEW) aborted! Console input/output is redirected. Run 'make oldconfig' to update configuration. make[6]: *** [silentoldconfig] Error 1 make[5]: *** [silentoldconfig] Error 2 Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 45357
* kernel: adds wpan related packagesJohn Crispin2015-04-101-0/+122
This patch adds the IEEE-802.15.4 and 6LoWPAN related packages. Signed-off-by: Varka Bhadram <varkab@cdac.in> SVN-Revision: 45348