config-tools: Missing tqdm python package in board_inspector.deb

Added python3-tqdm depend in gen_acrn_deb.py

Tracked-On: #8155
Reviewed-by: Junjie Mao <junjie.mao@intel.com>
Signed-off-by: Ziheng Li <ziheng.li@intel.com>
This commit is contained in:
zihengL1 2022-09-29 15:08:01 +08:00 committed by acrnsi-robot
parent b287e6f8ec
commit bef352481f
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ def create_acrn_board_inspector_deb(version, build_dir):
'Architecture: amd64 \n',
'Maintainer: acrn-dev@lists.projectacrn.org \n',
'Description: ACRN board inspector tools \n',
'Depends: cpuid, msr-tools, pciutils, dmidecode, python3, python3-pip, python3-lxml \n',
'Depends: cpuid, msr-tools, pciutils, dmidecode, python3, python3-pip, python3-lxml, python3-tqdm \n',
'\n'
]
with open(deb_dir + '/DEBIAN/control', 'w', encoding='utf-8') as fr: