File tree Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,8 @@ def id(self) -> Optional[str]:
9595            board_id  =  boards .RASPBERRY_PI_PICO 
9696        elif  chip_id  ==  chips .S805 :
9797            board_id  =  boards .ODROID_C1 
98+         elif  chip_id  ==  chips .RK3568B2 :
99+             board_id  =  boards .ODROID_M1 
98100        elif  chip_id  ==  chips .S905 :
99101            board_id  =  boards .ODROID_C2 
100102        elif  chip_id  ==  chips .S905X3 :
Original file line number Diff line number Diff line change @@ -224,6 +224,9 @@ def _linux_id(self) -> Optional[str]:
224224        if  self .detector .check_dt_compatible_value ("rockchip,rk3568" ):
225225            return  chips .RK3568 
226226
227+         if  self .detector .check_dt_compatible_value ("rockchip,rk3568b2" ):
228+             return  chips .RK3568B2 
229+ 
227230        if  self .detector .check_dt_compatible_value ("rockchip,rk3588" ):
228231            return  chips .RK3588 
229232
Original file line number Diff line number Diff line change 125125ODROID_C4  =  "ODROID_C4" 
126126ODROID_N2  =  "ODROID_N2" 
127127ODROID_XU4  =  "ODROID_XU4" 
128+ ODROID_M1  =  "ODROID_M1" 
128129
129130FTDI_FT232H  =  "FTDI_FT232H" 
130131FTDI_FT2232H  =  "FTDI_FT2232H" 
314315    ODROID_C4 ,
315316    ODROID_N2 ,
316317    ODROID_XU4 ,
318+     ODROID_M1 ,
317319)
318320
319321_BEAGLEBONE_IDS  =  (
Original file line number Diff line number Diff line change 5757RK3288  =  "RK3288" 
5858RK3566  =  "RK3566" 
5959RK3568  =  "RK3568" 
60+ RK3568B2  =  "RK3568B2" 
6061RK3588  =  "RK3588" 
6162PENTIUM_N3710  =  "PENTIUM_N3710"   # SOC Braswell core 
6263STM32F405  =  "STM32F405" 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments