Skip to content

Commit

Permalink
Fix ARM64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRemote committed Oct 1, 2023
1 parent 48b0422 commit a9ff4f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ See the following links:<br>

<h2>Update History</h2>
<ul>
<li>October 1st 2023</li>
<ul>
<li>Fix gpg key import for ARM64 builds</li>
</ul>
<li>January 14th 2023</li>
<ul>
<li>Change connectivity check from google.com to minecraft.net to prevent blocking in some countries</li>
Expand Down
4 changes: 2 additions & 2 deletions SetupMinecraft.sh
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ Check_Architecture() {
# ARM architecture detected -- download QEMU and dependency libraries
echo "aarch64 platform detected -- installing box64..."
GetList=$(sudo curl -k -L -o /etc/apt/sources.list.d/box64.list https://ryanfortner.github.io/box64-debs/box64.list)
GetKey=$(sudo curl -k -L https://ryanfortner.github.io/box64-debs/KEY.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/box64-debs-archive-keyring.gpg)
sudo DEBIAN_FRONTEND=noninteractive apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get install box64 -y
GetKey=$(sudo curl -k -L https://ryanfortner.github.io/box64-debs/KEY.gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/box64-debs-archive-keyring.gpg)
sudo DEBIAN_FRONTEND=noninteractive apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get install box64-rpi4arm64 -y

if [ -n "$(which box64)" ]; then
echo "box64 installed successfully"
Expand Down

0 comments on commit a9ff4f9

Please sign in to comment.