Sign in
gfiber
/
buildroot
/
745a4ec1e5c3a621aa04a29f4dc994721af23ceb
/
.
/
fs
/
skeleton
/
bin
/
is-qca83xx-present
blob: cfd032f0164b5ef7c83d448345d0a42b24a46080 [
file
] [
log
] [
blame
]
#!/usr/bin/python
import
sys
try
:
import
qca83xx
if
qca83xx
.
IsQCA83xx
():
sys
.
exit
(
0
)
except
ImportError
:
pass
except
qca83xx
.
SdkError
:
pass
sys
.
exit
(
1
)