| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | build-sys: add hooks to build python bindingspython | Lucas De Marchi | 2014-03-24 | 2 | -1/+2 |
| | | | | | | | Add --enable-python configure switch so we build the python bindings. We also pass version.py through SED_PROCESS macro, so the version is kept in sync with kmod. | ||||
| * | python: Remove unused files from import | Lucas De Marchi | 2014-03-20 | 10 | -964/+0 |
| | | |||||
| * | python: Issue #15: resovled by using setuptools_cython | Guy Rozendorn | 2014-03-20 | 1 | -9/+7 |
| | | |||||
| * | python: Issue #15: Cython needs to be in setup_requires | Guy Rozendorn | 2014-03-20 | 1 | -1/+1 |
| | | | | | | We need Cython BEFORE installing kmod (done with setup_requires), and AFTER installation - during runtime (done with install_requires) | ||||
| * | python: Issue #15 Cython is now a dependency | Guy Rozendorn | 2014-03-20 | 1 | -3/+9 |
| | | |||||
| * | python: update version to 0.9.1 | Andy Grover | 2014-03-20 | 1 | -1/+1 |
| | | |||||
| * | python: Issue #13 skipping building extensions on non-Linux platforms | Guy Rozendorn | 2014-03-20 | 2 | -10/+16 |
| | | |||||
| * | python: Make kmod.modprobe() raise an error if no modules found | Andy Grover | 2014-03-20 | 1 | -2/+12 |
| | | | | | | | Add 'quiet' option to override. Add docstring. | ||||
| * | python: Add self as maintainer to setup.py | Andy Grover | 2014-03-20 | 1 | -0/+2 |
| | | |||||
| * | python: Correct building for python 2.6 | Andy Grover | 2014-03-20 | 1 | -1/+1 |
| | | | | | Reported-by: Oz Nahum Tiram <nahumoz@gmail.com> | ||||
| * | python: add docstring to insert and remove methods | Oz | 2014-03-20 | 1 | -0/+14 |
| | | |||||
| * | python: add docstring to rmmod | Oz | 2014-03-20 | 1 | -0/+4 |
| | | |||||
| * | python: update version to 0.9 | Andy Grover | 2014-03-20 | 1 | -1/+1 |
| | | |||||
| * | python: Update README | Andy Grover | 2014-03-20 | 1 | -4/+4 |
| | | | | | | | Last update changed API slightly: * loaded_modules renamed to modules * returns a module object instead of (name, size) | ||||
| * | python: MANIFEST.in: add AUTHORS to distibuted source files. | W. Trevor King | 2014-03-20 | 1 | -0/+1 |
| | | |||||
| * | python: Ran update-copyright.py. | W. Trevor King | 2014-03-20 | 14 | -93/+161 |
| | | |||||
| * | python: .update-copyright.conf: update to pipe separators. | W. Trevor King | 2014-03-20 | 1 | -2/+2 |
| | | | | | | | | | | | | This brings the config file up to speed with the following update-copyright commit: commit 3c68a1a48419d8b2bbc2ce0e7f1700b996ec30e9 Author: W. Trevor King <wking@tremily.us> Date: Fri Oct 19 21:52:48 2012 -0400 project: for consistency, also separate ignored paths with pipes. | ||||
| * | python: .update-copyright.conf: add MANIFEST.in to ignored files. | W. Trevor King | 2014-03-20 | 1 | -2/+5 |
| | | |||||
| * | python: .update-copyright.conf: add Red Hat alias for Andy Grover. | W. Trevor King | 2014-03-20 | 1 | -0/+3 |
| | | | | | | | He seems to be assigning copyright of files he writes to Red Hat. Avoiding .mailmap so the git log will still attribute changes to him. I'm not sure which name should go in the AUTHORS file. | ||||
| * | python: .update-copyright.conf: add README.rst to ignored files. | W. Trevor King | 2014-03-20 | 1 | -1/+2 |
| | | |||||
| * | python: .mailmap: consolidate Andy Grover email addresses. | W. Trevor King | 2014-03-20 | 1 | -0/+1 |
| | | |||||
| * | python: .update-copyright.conf: add copyright configuration. | W. Trevor King | 2014-03-20 | 1 | -0/+18 |
| | | | | | | | Use my external update-copyright package to maintain copyright blurbs. http://pypi.python.org/pypi/update-copyright/ | ||||
| * | python: module: fix versions -> info typo in Module._info_get() error message. | W. Trevor King | 2014-03-20 | 1 | -1/+1 |
| | | |||||
| * | python: Initialize Kmod.mod_dir to None in __cinit__(). | W. Trevor King | 2014-03-20 | 1 | -0/+1 |
| | | |||||
| * | python: Use an OrderedDict for Module.info (preserving modinfo ordering). | W. Trevor King | 2014-03-20 | 1 | -1/+3 |
| | | |||||
| * | python: Add Module.info attribute. | W. Trevor King | 2014-03-20 | 2 | -0/+26 |
| | | |||||
| * | python: Use Cython's libc.errno for EEXIST. | W. Trevor King | 2014-03-20 | 2 | -5/+3 |
| | | |||||
| * | python: Add Module.versions attribute. | W. Trevor King | 2014-03-20 | 2 | -0/+29 |
| | | |||||
| * | python: README.rst: add .rst symlink for GitHub. | W. Trevor King | 2014-03-20 | 1 | -0/+1 |
| | | |||||
| * | python: README: mention Cython dependency. | W. Trevor King | 2014-03-20 | 1 | -1/+1 |
| | | |||||
| * | python: README: cleanup reStructuredText syntax. | W. Trevor King | 2014-03-20 | 1 | -20/+13 |
| | | |||||
| * | python: Add missing copyright blurbs. | W. Trevor King | 2014-03-20 | 11 | -0/+122 |
| | | |||||
| * | python: Add docstrings to kmod.kmod and kmod.kmod.Kmod. | W. Trevor King | 2014-03-20 | 1 | -0/+3 |
| | | |||||
| * | python: MANIFEST.in: add missing source to the sdist tarball. | W. Trevor King | 2014-03-20 | 2 | -0/+4 |
| | | |||||
| * | python: Add additional out Module attributes (path, refcnt, ...). | W. Trevor King | 2014-03-20 | 4 | -8/+52 |
| | | |||||
| * | python: Convert to Cython. | W. Trevor King | 2014-03-20 | 13 | -277/+356 |
| | | | | | With Cython we get easier memory handling and Python 3 compatibility. | ||||
| * | python: update FSF address in COPYING and COPYING.LESSER | Andy Grover | 2014-03-20 | 2 | -2/+2 |
| | | | | | Please FSF, never move again. | ||||
| * | python: whitespace | Andy Grover | 2014-03-20 | 1 | -31/+30 |
| | | |||||
| * | python: add proper error handling to loaded_modules() | Andy Grover | 2014-03-20 | 1 | -2/+19 |
| | | | | | | We need to check the result of basically all Py* calls and cleanup properly if they fail. | ||||
| * | python: Improve README's description of kmod | Andy Grover | 2014-03-20 | 1 | -3/+6 |
| | | | | | Based on text from kmod's README. | ||||
| * | python: Make setup.py version match version in .c | Andy Grover | 2014-03-20 | 1 | -1/+1 |
| | | |||||
| * | python: Add README | Andy Grover | 2014-03-20 | 1 | -0/+44 |
| | | |||||
| * | python: More cleanup and renaming of stuff. Add docstrings. | Andy Grover | 2014-03-20 | 1 | -27/+40 |
| | | |||||
| * | python: Add support for listing loaded modules, modprobe, rmmod | Andy Grover | 2014-03-20 | 2 | -25/+140 |
| | | | | | And other misc. cleanups and changes. | ||||
| * | python: use c99 init for struct init | Andy Grover | 2014-03-20 | 1 | -52/+25 |
| | | | | | | move casts of pyobject -> kmodobject to the functions from the struct init. | ||||
| * | python: a skeleton that compiles | Andy Grover | 2014-03-20 | 1 | -183/+3 |
| | | |||||
| * | python: initial checkin | Andy Grover | 2014-03-20 | 4 | -0/+1190 |
| | | |||||
| * | libkmod-elf: Fix check by class in get_modversions() | Lucas De Marchi | 2014-03-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | Commit 51c409b ("Cache the offset of crc") unintentinally changed the comparison "if (elf->class & KMOD_ELF_32)" to "if (elf->class == KMOD_ELF_32)". This has been reported by Serge Voilokov <serge0x76@gmail.com>: On Raspberry PI elf->class equals KMOD_ELF_32|KMOD_ELF_LSB so valid condition should be (elf->class & KMOD_ELF_32) instead of (elf->class == KMOD_ELF_32). This fixes "modprobe --dump-modversions" failing on 32b systems. | ||||
| * | build-sys: add small redirecting Makefiles | Lucas De Marchi | 2014-03-06 | 2 | -0/+15 |
| | | | | | | | | These redirecting makefiles simplifies compiling from some editors and when CWD is not the root of the source tree. This is similar to what was introduced in systemd in 340d89e ("build-sys: add small redirecting Makefiles to simplify compilation from within emacs") | ||||
| * | libkmod-config: Only match dot before '=' in /proc/cmdline | Michal Marek | 2014-03-05 | 1 | -3/+8 |
| | | | | | | | | | | Otherwise, we also parse strings like BOOT_IMAGE=/boot/vmlinuz-3.12.12-57.g5f654cf-default In practice, this is not a problem, because there is no module named BOOT_IMAGE=/boot/vmlinuz-3. It just disturbs in modprobe -c output. | ||||
