This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
loop=true | |
while [ "$loop" = "true" ] | |
do | |
result=$(lsusb | grep -c "DFU") | |
if [ "$result" = "1" ]; then | |
loop=false | |
echo "we in dfu bois" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# User tunables | |
# Number of cores in the system | |
coreno=8 | |
# Cores in the big cluster | |
bigcluster=4 | |
# Cores in the little cluster |