mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 08:21:36 +01:00 
			
		
		
		
	Add a function to display the company's logo and board information via the API from DM_VIDEO. This function can be shared by other atmel boards, so locate it in board/atmel/common folder. Signed-off-by: Wenyou Yang <wenyou.yang@microchip.com> Reviewed-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			13 lines
		
	
	
		
			253 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			253 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Copyright (C) 2017 Microchip
 | |
| #		      Wenyou Yang <wenyou.yang@microchip.com>
 | |
| #
 | |
| # SPDX-License-Identifier:	GPL-2.0+
 | |
| #
 | |
| 
 | |
| obj-y += board.o
 | |
| ifndef CONFIG_SPL_BUILD
 | |
| obj-$(CONFIG_I2C_EEPROM) += mac_eeprom.o
 | |
| obj-$(CONFIG_DM_VIDEO) += video_display.o
 | |
| endif
 |