mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	Commit 02be57caf730 ("riscv: qemu: Enable usb keyboard as an input
device") adds PCI xHCI support to QEMU RISC-V virtual machines and
enables using a USB keyboard as one of the input devices. Similarly,
enable those for ARM virtual machines as well.
Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng@tinylab.org>
		
	
			
		
			
				
	
	
		
			16 lines
		
	
	
		
			363 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			363 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| 
 | |
| /* environment for qemu-arm and qemu-arm64 */
 | |
| 
 | |
| stdin=serial,usbkbd
 | |
| stdout=serial,vidconsole
 | |
| stderr=serial,vidconsole
 | |
| fdt_high=0xffffffff
 | |
| initrd_high=0xffffffff
 | |
| fdt_addr=0x40000000
 | |
| scriptaddr=0x40200000
 | |
| pxefile_addr_r=0x40300000
 | |
| kernel_addr_r=0x40400000
 | |
| ramdisk_addr_r=0x44000000
 | |
| boot_targets=qfw usb scsi virtio nvme dhcp
 |