Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c1635e6

Browse files
committed
Fixed beaglebone black identification
1 parent d9cbac7 commit c1635e6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Adafruit_GPIO/Platform.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ def platform_detect():
5555
# Linux-3.8.13-bone56-armv7l-with-Ubuntu-14.04-trusty
5656
elif plat.lower().find('armv7l-with-ubuntu') > -1:
5757
return BEAGLEBONE_BLACK
58+
elif plat.lower().find('armv7l-with-glibc2.4') > -1:
59+
return BEAGLEBONE_BLACK
5860
else:
5961
return UNKNOWN
6062

0 commit comments

Comments
 (0)