kernel_version.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* vi: set sw=4 ts=4: */
  2. /* find_kernel_revision for uClibc
  3. *
  4. * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
  5. * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
  6. * Written by Erik Andersen <andersen@uclibc.org>
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU Library General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but WITHOUT
  14. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
  16. * for more details.
  17. *
  18. * You should have received a copy of the GNU Library General Public License
  19. * along with this program; if not, write to the Free Software Foundation,
  20. * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. */
  22. #include <stdio.h>
  23. #include <string.h>
  24. #include <sys/utsname.h>
  25. static int __linux_kernel_version = -1;
  26. /* Returns kernel version encoded as major*65536 + minor*256 + patch,
  27. * so, for example, to check if the kernel is greater than 2.2.11:
  28. * if (get_kernel_revision() <= 2*65536+2*256+11) { <stuff> }
  29. */
  30. static int find_kernel_revision(void)
  31. {
  32. struct utsname name;
  33. int major = 0, minor = 0, patch = 0;
  34. if (uname(&name) == -1) {
  35. return (0);
  36. }
  37. sscanf(name.version, "%d.%d.%d", &major, &minor, &patch);
  38. return major * 65536 + minor * 256 + patch;
  39. }
  40. int
  41. __get_linux_kernel_version (void)
  42. {
  43. if (__linux_kernel_version != -1)
  44. return __linux_kernel_version;
  45. return find_kernel_revision ();
  46. }