Python App/Tool/Script Utilities
Project description
Generating Kernel Modules
gen_kernel_module is tool for generation Linux Kernel Module project.
Developed in python code: 100%.
The README is used to introduce the modules and provide instructions on how to install the modules, any machine dependencies it may have and any other information that should be provided before the modules are installed.
Table of Contents
Installation
Currently there are three ways to install tool:
- Install process based on pip
- Install process based on setup.py (setuptools)
- Install process based on docker mechanism
Install using pip
Python package is located at pypi.org.
You can install by using pip
# python2
pip install gen-kernel-module
# python3
pip3 install gen-kernel-module
Install using setuptools
Navigate to release page download and extract release archive.
To install modules, locate and run setup.py with arguments
tar xvzf gen_kernel_module-x.y.z.tar.gz
cd gen_kernel_module-x.y.z/
# python2
pip install -r requirements.txt
python setup.py install_lib
python setup.py install_data
python setup.py install_egg_info
# python3
pip3 install -r requirements.txt
python3 setup.py install_lib
python3 setup.py install_data
python3 setup.py install_egg_info
Install using docker
You can use Dockerfile to create image/container.
Dependencies
gen_kernel_module requires next modules and libraries:
Generation flow
Base flow of generation process:
Tool structure
gen_kernel_module is based on Template mechanism:
Generator structure:
gen_kernel_module/
├── conf/
│ ├── gen_kernel_module.cfg
│ ├── gen_kernel_module_util.cfg
│ ├── project.yaml
│ └── template/
│ ├── lkm_block_device/
│ │ ├── lkm.template
│ │ ├── Makefile.template
│ │ └── test.template
│ ├── lkm_charachter_device/
│ │ ├── lkm.template
│ │ ├── Makefile.template
│ │ └── test.template
│ ├── lkm_network_interfaces/
│ │ ├── lkm.template
│ │ ├── Makefile.template
│ │ └── test.template
│ └── lkm_vma/
│ ├── lkm.template
│ ├── Makefile.template
│ └── test.template
├── __init__.py
├── lkm/
│ ├── config/
│ │ ├── __init__.py
│ │ └── pro_name.py
│ ├── __init__.py
│ ├── read_template.py
│ └── write_template.py
├── log/
│ └── gen_kernel_module.log
└── run/
└── gen_kernel_module_run.py
Docs
More documentation and info at:
Copyright and licence
Copyright (C) 2017 by vroncevic.github.io/gen_kernel_module
gen_kernel_module is free software; you can redistribute it and/or modify it under the same terms as Python itself, either Python version 2.x/3.x or, at your option, any later version of Python 3 you may have available.
Lets help and support PSF.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for gen_kernel_module-1.2.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46482d777aef7abec2bd4a1505e1668a70bd0112ea4381d894f8ec7a542d693a |
|
MD5 | 94bcb8ee33e4828b9bb293124b75745a |
|
BLAKE2b-256 | a97e76a0def2a35d81d68503b8a8370ec5c7ff576b07c5ea8518022f08219359 |
Hashes for gen_kernel_module-1.2.3-py2-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8c2efd1620d03bee7c23733c06cd1778684da74542fd6254ab112d1f6e91b53 |
|
MD5 | 79b80b02fdfa8784567ceedd1571a85d |
|
BLAKE2b-256 | d508751df5c233ba3217fdbca5fa6682d3891eaccd2c3b6b479b5cd53d828634 |