Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cpu2006express.sh
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ ARCH=$(uname -m | sed 's/x86_//;s/i[3-6]86/32/')
############################################################
# If it is an ARM system
############################################################
if [[ $ARCH == *'aarch64'* || $ARCH == *'arm'*]]; then
if [[ $ARCH == *'aarch64'* || $ARCH == *'arm'* ]]; then
# Get the ARM version number
ARM_V=$(echo "$ARCH" | sed 's/armv//g' | sed 's/[^0-9]*//g')
# If ARMv8 or greater, set to 62 bit
Expand Down