mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	This contains just enough to bring up the serial UART. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Bin Meng <bmeng.cn@gmail.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			258 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			258 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2015 Google, Inc
 | |
|  *
 | |
|  * SPDX-License-Identifier:	GPL-2.0+
 | |
|  */
 | |
| 
 | |
| /dts-v1/;
 | |
| 
 | |
| /include/ "skeleton.dtsi"
 | |
| 
 | |
| / {
 | |
| 	model = "EFI";
 | |
| 	compatible = "efi,app";
 | |
| 
 | |
| 	chosen {
 | |
| 		stdout-path = &serial;
 | |
| 	};
 | |
| 
 | |
| 	serial: serial {
 | |
| 		compatible = "efi,uart";
 | |
| 	};
 | |
| };
 |