/* This file is used for a trick to determine the version of the kernel * build tree. Simply grepping doesn't work, since * some distributions have multiple UTS_RELEASE definitions in that * file. * Taken from the lm_sensors project. * * $Id$ */ #include #ifndef UTS_RELEASE #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,33) /* Linux 2.6.33+ uses */ #include #else /* Linux 2.6.18 - 2.6.32 uses */ #include #endif #endif char *uts_release = UTS_RELEASE;