Fix case sensitivity: Qemu => QEMU (!1800)

This commit is contained in:
Luca Weiss 2019-07-03 23:01:56 +02:00 committed by Oliver Smith
parent fd79a60383
commit 2ad8b66ccc
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
7 changed files with 17 additions and 17 deletions

View file

@ -248,12 +248,12 @@ def ask_for_device(args):
def ask_for_qemu_native_mesa_driver(args, device, arch_native):
# Native Qemu device selected? (e.g. qemu-amd64 on x86_64)
# Native QEMU device selected? (e.g. qemu-amd64 on x86_64)
if not pmb.parse.arch.qemu_check_device(device, arch_native):
return None
drivers = pmb.config.qemu_native_mesa_drivers
logging.info("Which mesa driver do you prefer for your native Qemu device?"
logging.info("Which mesa driver do you prefer for your native QEMU device?"
" Only select something other than the default if you are"
" having graphical problems (such as glitches).")
while True:
@ -333,7 +333,7 @@ def frontend(args):
cfg["pmbootstrap"]["nonfree_firmware"] = str(nonfree["firmware"])
cfg["pmbootstrap"]["nonfree_userland"] = str(nonfree["userland"])
# Qemu mesa driver
# QEMU mesa driver
if cfg["pmbootstrap"]["device"].startswith("qemu-"):
driver = ask_for_qemu_native_mesa_driver(args, device, args.arch_native)
if driver: