OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lsmod_output
(Results
1 - 2
of
2
) sorted by null
/external/ltp/testcases/commands/lsmod/
lsmod01.sh
25
lsmod_output
=$(lsmod | awk '!/Module/{print $1, $2, $3}' | sort)
26
if [ -z "$
lsmod_output
" ]; then
37
if [ "$
lsmod_output
" != "$modules_output" ]; then
40
echo "$
lsmod_output
" > temp1
/external/autotest/client/bin/
utils.py
1065
lsmod_output
= utils.system_output('/bin/lsmod').splitlines()[1:]
1066
return [line.split(None, 1)[0] for line in
lsmod_output
]
[
all
...]
Completed in 536 milliseconds