kmod.inc 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Copyright (C) 2012 Khem Raj <raj.khem@gmail.com>
  2. # Released under the MIT license (see COPYING.MIT for the terms)
  3. SUMMARY = "Tools for managing Linux kernel modules"
  4. DESCRIPTION = "kmod is a set of tools to handle common tasks with Linux kernel modules like \
  5. insert, remove, list, check properties, resolve dependencies and aliases."
  6. HOMEPAGE = "http://kernel.org/pub/linux/utils/kernel/kmod/"
  7. LICENSE = "GPL-2.0+ & LGPL-2.1+"
  8. LICENSE_libkmod = "LGPL-2.1+"
  9. SECTION = "base"
  10. LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
  11. file://libkmod/COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
  12. file://tools/COPYING;md5=751419260aa954499f7abaabaa882bbe \
  13. "
  14. inherit autotools gtk-doc pkgconfig manpages
  15. SRCREV = "819a125ca756003dce2d11624035b7fb605a8e99"
  16. # Lookout for PV bump too when SRCREV is changed
  17. PV = "27"
  18. SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \
  19. file://depmod-search.conf \
  20. file://avoid_parallel_tests.patch \
  21. "
  22. S = "${WORKDIR}/git"
  23. EXTRA_AUTORECONF += "--install --symlink"
  24. EXTRA_OECONF +=" --enable-tools --with-zlib"
  25. PACKAGECONFIG[debug] = "--enable-debug,--disable-debug"
  26. PACKAGECONFIG[logging] = " --enable-logging,--disable-logging"
  27. PACKAGECONFIG[manpages] = "--enable-manpages, --disable-manpages, libxslt-native xmlto-native"
  28. PACKAGECONFIG[xz] = "--with-xz,--without-xz,xz"
  29. PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl"
  30. GTKDOC_DOCDIR = "${S}/libkmod/docs"