mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 10:26:10 +01:00 
			
		
		
		
	This commit introduces the initial U-Boot support for QEMU x86 targets. U-Boot can boot from coreboot as a payload, or directly without coreboot. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org> Tested-by: Simon Glass <sjg@chromium.org> Merged in patch 'x86: qemu: Add CMD_NET to qemu-x86_defconfig https://patchwork.ozlabs.org/patch/479745/
		
			
				
	
	
		
			25 lines
		
	
	
		
			341 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			341 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| if TARGET_QEMU_X86
 | |
| 
 | |
| config SYS_BOARD
 | |
| 	default "qemu-x86"
 | |
| 
 | |
| config SYS_VENDOR
 | |
| 	default "emulation"
 | |
| 
 | |
| config SYS_SOC
 | |
| 	default "qemu"
 | |
| 
 | |
| config SYS_CONFIG_NAME
 | |
| 	default "qemu-x86"
 | |
| 
 | |
| config SYS_TEXT_BASE
 | |
| 	default 0xfff00000
 | |
| 
 | |
| config BOARD_SPECIFIC_OPTIONS # dummy
 | |
| 	def_bool y
 | |
| 	select X86_RESET_VECTOR
 | |
| 	select QEMU
 | |
| 	select BOARD_ROMSIZE_KB_1024
 | |
| 
 | |
| endif
 |