File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,8 @@ def _linux_id(self):
137
137
vendor_id = self .detector .get_cpuinfo_field ("vendor_id" )
138
138
if vendor_id == "AuthenticAMD" :
139
139
model_name = self .detector .get_cpuinfo_field ("model name" ).upper ()
140
+ if "RYZEN EMBEDDED V1202B" in model_name :
141
+ linux_id = chips .RYZEN_V1202B
140
142
if "RYZEN EMBEDDED V1605B" in model_name :
141
143
linux_id = chips .RYZEN_V1605B
142
144
else :
Original file line number Diff line number Diff line change 95
95
ROCK_PI_S = "ROCK_PI_S"
96
96
97
97
GREATFET_ONE = "GREATFET_ONE"
98
- UDOO_BOLT = "UDOO_BOLT"
98
+ UDOO_BOLT_V3 = "UDOO_BOLT_V3"
99
+ UDOO_BOLT_V8 = "UDOO_BOLT_V8"
99
100
100
101
# pylint: enable=bad-whitespace
101
102
345
346
_PINE64_DEV_IDS = (PINE64 , PINEBOOK , PINEPHONE )
346
347
347
348
# UDOO
348
- _UDOO_BOARD_IDS = {UDOO_BOLT : ("SC40-2000-0000-C0|C" ,)}
349
+ _UDOO_BOARD_IDS = {UDOO_BOLT_V8 : ("SC40-2000-0000-C0|C" ,)}
Original file line number Diff line number Diff line change 4
4
BCM2XXX = "BCM2XXX"
5
5
ESP8266 = "ESP8266"
6
6
EXYNOS5422 = "EXYNOS5422"
7
+ RYZEN_V1202B = "RYZEN_V1202B"
7
8
RYZEN_V1605B = "RYZEN_V1605B"
8
9
SAMD21 = "SAMD21"
9
10
STM32 = "STM32"
You can’t perform that action at this time.
0 commit comments