bb503eec83
- Added depmod.cpp to scan kernel module ELF files, read .modinfo, and emit metadata files. - Implemented functionality to write binary trie indexes for libkmod/modprobe. - Introduced command-line options for module processing. - Created test script test_depmod.sh to verify help and version commands.
22 lines
310 B
Meson
22 lines
310 B
Meson
option('utils',
|
|
type : 'array',
|
|
value : ['all'],
|
|
choices : [
|
|
'all',
|
|
'patch',
|
|
'diff',
|
|
'cmp',
|
|
'diff3',
|
|
'sdiff',
|
|
'which',
|
|
'gzip',
|
|
'grep',
|
|
'find',
|
|
'xargs',
|
|
'lspci',
|
|
'setpci',
|
|
'depmod',
|
|
],
|
|
description : 'Utilities to include in vx (default: all)'
|
|
)
|