mirror of
				https://github.com/Telecominfraproject/ols-nos.git
				synced 2025-11-04 03:57:57 +00:00 
			
		
		
		
	This patch set implements the following: - Fixes the conflicts in chassis.py / platform.py in sonic_platfrom - Consolidating the common library files in sonic_platform - Moving QFX5210 specific drivers to qfx5210/modules - Moving Juniper common fpga drivers to common/modules - Cleaning up the platform driver files - Bug fixes in QFX5210 platform monitor & initialiazation script - Fixing the bugs in QFX5210 eeprom parsing Signed-off-by: Ciju Rajan K <crajank@juniper.net>
		
			
				
	
	
		
			17 lines
		
	
	
		
			285 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			285 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
import os
 | 
						|
import sys
 | 
						|
from setuptools import setup
 | 
						|
os.listdir
 | 
						|
 | 
						|
setup(
 | 
						|
   name='sonic_platform',
 | 
						|
   version='1.0',
 | 
						|
   description='Module to initialize Juniper platforms',
 | 
						|
   
 | 
						|
   packages=['sonic_platform'],
 | 
						|
   package_dir={'sonic_platform': 'sonic_platform'},
 | 
						|
)
 | 
						|
 |