2001-03-16 22:47:14 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-03-16 22:47:14 +00:00
|
|
|
*
|
2006-05-19 19:29:19 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
2009-09-06 10:47:55 +00:00
|
|
|
/* After libbb.h, since it needs sys/types.h on some systems */
|
|
|
|
#include <sys/utsname.h> /* for uname(2) */
|
|
|
|
|
2001-03-16 22:47:14 +00:00
|
|
|
|
2006-05-19 11:54:02 +00:00
|
|
|
/* Returns current kernel version encoded as major*65536 + minor*256 + patch,
|
2001-03-16 22:47:14 +00:00
|
|
|
* so, for example, to check if the kernel is greater than 2.2.11:
|
2006-05-19 11:54:02 +00:00
|
|
|
*
|
|
|
|
* if (get_linux_version_code() > KERNEL_VERSION(2,2,11)) { <stuff> }
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
2008-06-27 02:52:20 +00:00
|
|
|
int FAST_FUNC get_linux_version_code(void)
|
2001-03-16 22:47:14 +00:00
|
|
|
{
|
|
|
|
struct utsname name;
|
|
|
|
char *s;
|
|
|
|
int i, r;
|
|
|
|
|
|
|
|
if (uname(&name) == -1) {
|
2009-11-13 08:08:27 +00:00
|
|
|
bb_perror_msg("can't get system information");
|
2006-10-27 15:12:50 +00:00
|
|
|
return 0;
|
2001-03-16 22:47:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
s = name.release;
|
|
|
|
r = 0;
|
2006-10-27 15:12:50 +00:00
|
|
|
for (i = 0; i < 3; i++) {
|
2001-03-16 22:47:14 +00:00
|
|
|
r = r * 256 + atoi(strtok(s, "."));
|
|
|
|
s = NULL;
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|