mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-30 11:38:15 +00:00 
			
		
		
		
	TARGET_QEMU_ARM_64BIT and TARGET_QEMU_ARM_32BIT should be mutually exclusive. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
		
			
				
	
	
		
			29 lines
		
	
	
		
			407 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			407 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| if ARCH_QEMU
 | |
| 
 | |
| config SYS_VENDOR
 | |
| 	default "emulation"
 | |
| 
 | |
| config SYS_BOARD
 | |
| 	default "qemu-arm"
 | |
| 
 | |
| config SYS_CONFIG_NAME
 | |
| 	default "qemu-arm"
 | |
| 
 | |
| choice
 | |
| 	prompt "QEMU ARM architecture"
 | |
| 	default TARGET_QEMU_ARM_64BIT
 | |
| 
 | |
| config TARGET_QEMU_ARM_32BIT
 | |
| 	bool "ARMv7-A, 32bit"
 | |
| 	select ARCH_SUPPORT_PSCI
 | |
| 	select CPU_V7A
 | |
| 	select SYS_ARCH_TIMER
 | |
| 
 | |
| config TARGET_QEMU_ARM_64BIT
 | |
| 	bool "ARMv8, 64bit"
 | |
| 	select ARM64
 | |
| 
 | |
| endchoice
 | |
| 
 | |
| endif
 |