Merge codebases of cavstool.py and acetool.py as the two have a lot of duplicated code. To ease with transition, keep acetool.py around with implementation imported from cavstool.py. This will help to keep any automated testing flows working that assume both tools exist. Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
13 lines
286 B
Python
Executable File
13 lines
286 B
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright(c) 2022 Intel Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import asyncio
|
|
import cavstool
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
asyncio.run(cavstool.main())
|
|
except KeyboardInterrupt:
|
|
start_output = False
|