mirror of
				https://github.com/Telecominfraproject/ols-nos.git
				synced 2025-11-04 03:57:57 +00:00 
			
		
		
		
	#### Why I did it - To build flashrom properly with dependency tracking. #### How I did it - Moved flashrom code from platform/broadcom/sonic-platform-modules-dell/tools directory to src/flashrom directory. - At the end, flashrom_0.9.7_amd64.deb package is build which will be installed in the devices. - Currently flashrom builds only for Dell S6100 platforms.
		
			
				
	
	
		
			14 lines
		
	
	
		
			231 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			231 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# flashrom package
 | 
						|
#
 | 
						|
 | 
						|
FLASHROM_VERSION_FULL = 0.9.7
 | 
						|
 | 
						|
export FLASHROM_VERSION_FULL
 | 
						|
 | 
						|
FLASHROM = flashrom_$(FLASHROM_VERSION_FULL)_amd64.deb
 | 
						|
$(FLASHROM)_SRC_PATH = $(SRC_PATH)/flashrom
 | 
						|
 | 
						|
SONIC_MAKE_DEBS += $(FLASHROM)
 | 
						|
 | 
						|
export FLASHROM
 |