mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 6b1566cbe3
			
		
	
	
		6b1566cbe3
		
	
	
	
	
		
			
			QEMU supports firmware names for all devices in the QEMU tree but some architectures expect some parts of firmware path names in different format. This introduces a firmware-pathname-change interface definition. If some machines needs to redefine the firmware path format, it has to add the TYPE_FW_PATH_PROVIDER interface to an object that is above the device on the QOM tree (typically /machine). Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru> Signed-off-by: Andreas Färber <afaerber@suse.de>
		
			
				
	
	
		
			16 lines
		
	
	
		
			576 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			576 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # core qdev-related obj files, also used by *-user:
 | |
| common-obj-y += qdev.o qdev-properties.o
 | |
| common-obj-y += fw-path-provider.o
 | |
| # irq.o needed for qdev GPIO handling:
 | |
| common-obj-y += irq.o
 | |
| common-obj-y += hotplug.o
 | |
| 
 | |
| common-obj-$(CONFIG_EMPTY_SLOT) += empty_slot.o
 | |
| common-obj-$(CONFIG_XILINX_AXI) += stream.o
 | |
| common-obj-$(CONFIG_PTIMER) += ptimer.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += sysbus.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += machine.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += null-machine.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += loader.o
 | |
| common-obj-$(CONFIG_SOFTMMU) += qdev-properties-system.o
 |