Skip to content

Commit

Permalink
Fix equality operator
Browse files Browse the repository at this point in the history
  • Loading branch information
dkulp committed Jan 10, 2025
1 parent c534575 commit f857af3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/non-gpl/BBB48String/compileWS2811x.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cd /tmp

ARMV=$(uname -m)

if [ "$ARMV" == "aarch64" ]; then
if [ "$ARMV" = "aarch64" ]; then
#for now, we only support PRUSS, need a better way to figure out the types, core speeds, etc...
CPPFLAG="-DAM62X"
ENTRY="AM62x_PRU1.cmd"
Expand Down

0 comments on commit f857af3

Please sign in to comment.