bugfix: 解决了xhci驱动程序无法在真机上获取设备描述符的bug

This commit is contained in:
fslongjin
2022-09-04 20:57:00 +08:00
parent 2551e0a8c9
commit 94c960ae89
7 changed files with 106 additions and 102 deletions

7
run.sh
View File

@ -11,6 +11,13 @@ IA32_USE_QEMU=1
bochsrc="./bochsrc"
ARCH="x86_64"
for i in "$@"
do
if [ $i == "--no-qemu" ];then
IA32_USE_QEMU=0
fi
done
if [ ${IA32_USE_QEMU} == "1" ];then
export EMULATOR=__QEMU_EMULATION__
else