I doesn't use it anymore, so feel free to adopt it.
Search Criteria
Package Details: batman-adv-v14 2013.4.0-2
Package Actions
| Package Base: | batman-adv-v14 |
|---|---|
| Description: | legacy batman kernel module (pinned to compatibility version 14) |
| Upstream URL: | http://www.open-mesh.net/ |
| Category: | kernels |
| Licenses: | |
| Submitter: | RubenKelevra |
| Maintainer: | None |
| Last Packager: | None |
| Votes: | 3 |
| First Submitted: | 2014-02-05 02:59 |
| Last Updated: | 2014-02-05 03:25 |
Dependencies (1)
Required by (0)
Sources
Latest Comments
Comment by RubenKelevra
Comment by asdil12
alloc_netdev() now wants NET_NAME_UNKNOWN as 3rd parameter
Comment by flokli
I updated the PKGBUILD to patch the source as described below:
https://dl.dropboxusercontent.com/u/4772389/batman-adv-v14.tar.gz
Note the patch directly comes from https://github.com/freifunk-gluon/batman-adv-legacy/commit/47ecb75067a558e9af429dcdb2d035bb2cbe601a
Comment by RubenKelevra
Please do not flag this packet out of date, it is the latest version of batman-adv with protocol compability version 14.
Since this version is not maintained anymore you have to build it with an older kernel. Use 'linux-lts' or update to the packet 'batman-adv'.
Comment by knirps
Hey,
ive get an error while compiling against Kerne 3.16.1
/tmp/yaourt-tmp-root/aur-batman-adv-v14/src/batman-adv-2013.4.0/soft-interface.c:629:2: error: implicit declaration of function 'SET_ETHTOOL_OPS' [-Werror=implicit-function-declaration]
SET_ETHTOOL_OPS(dev, &batadv_ethtool_ops);
^
cc1: some warnings being treated as errors
i replaced:
SET_ETHTOOL_OPS(dev, &batadv_ethtool_ops);
with
dev->ethtool_ops = &batadv_ethtool_ops;
to make it work again.