1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

kernel: linux/version.h was removed in kernel 2.6.19 and is now replaced by generated/autoconf.h.

This fixes build with kernel 2.6.38.
This was only build tested.
Thank you philipp64 for reporting


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26237 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
hauke
2011-03-19 17:40:02 +00:00
parent bc39a45d02
commit 0d10d61ac3
16 changed files with 80 additions and 32 deletions

View File

@@ -36,8 +36,11 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef AUTOCONF_INCLUDED
#include <linux/config.h>
#include <linux/version.h>
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33))
#include <generated/autoconf.h>
#else
#include <linux/autoconf.h>
#endif
#include <linux/module.h>
#include <linux/list.h>