Skip to content
This repository has been archived by the owner on Dec 7, 2024. It is now read-only.

Commit

Permalink
Add x86 and x64 binary files
Browse files Browse the repository at this point in the history
  • Loading branch information
changhuapeng committed Jul 5, 2024
1 parent d6d5913 commit 7095941
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions META-INF/com/google/android/update-binary
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,10 @@ if echo "$ABI" | grep -q "armeabi"; then
ARCH="arm"
elif echo "$ABI" | grep -q "arm64"; then
ARCH="arm64"
else
{ [ "$ARCH" = "arm" ] || [ "$ARCH" = "arm64" ]; } || abort "ERROR: $ABI not supported"
elif [ "$ABI" = "x86" ]; then
ARCH="x86"
elif [ "$ABI" = "x64" ] || [ "$ABI" = "x86_64" ]; then
ARCH="x64"
fi

#Ensure Temp directory
Expand Down
Binary file added META-INF/zbin/x64/bash
Binary file not shown.
Binary file added META-INF/zbin/x64/bin
Binary file not shown.
Binary file added META-INF/zbin/x64/busybox
Binary file not shown.
Binary file added META-INF/zbin/x86/bash
Binary file not shown.
Binary file added META-INF/zbin/x86/bin
Binary file not shown.
Binary file added META-INF/zbin/x86/busybox
Binary file not shown.

0 comments on commit 7095941

Please sign in to comment.