blob: 2b8006fe85b5602dd637f42063b393809ed31b55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-License-Identifier: GPL-2.0
#include <generated/utsrelease.h>
#include <linux/module.h>
/* WARNING userspace tools like batctl were relying on
* /sys/module/batman_adv/version to check if the module was loaded. If it
* isn't present, they usually error out before finishing setup of the batadv
* interface. It should be kept until it is unlikely that there are active
* installations of these "broken" versions of these tools with recent kernels.
*/
MODULE_VERSION(UTS_RELEASE);
|