mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
22 lines
536 B
Python
Executable File
22 lines
536 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import lkmc.import_path
|
|
|
|
test_user_mode = lkmc.import_path.import_path_relative_root('test-executables')
|
|
|
|
class Main(test_user_mode.Main):
|
|
def __init__(self):
|
|
super().__init__(
|
|
description='''\
|
|
https://cirosantilli.com/linux-kernel-module-cheat#userland-setup-getting-started-natively
|
|
''',
|
|
defaults={
|
|
'emulators': ['native'],
|
|
'in_tree': True,
|
|
'tests': ['.'],
|
|
}
|
|
)
|
|
|
|
if __name__ == '__main__':
|
|
Main().cli()
|