Skip to content

Commit

Permalink
rpi5 (4&16k) support, various improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanfortner authored Dec 27, 2023
1 parent 776020c commit cf1972b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Package Name | Target Distro | Notes | Install Command |
| box64-android | >= Ubuntu 18.04 | Box64 built with the `-DBAD_SIGNAL=ON` flag | `sudo apt install box64-android` |
| box64-rk3588 | >= Ubuntu 20.04 | Box64 built for rk3588 cpu target. | `sudo apt install box64-rk3588` |
| box64-sd8g2 | >= Ubuntu 18.04 | Box64 built for Qualcomm SD8G2 cpu target. | `sudo apt install box64-SD8G2` |
| box64-rpi5arm64 | >= Ubuntu 20.04 | Built for Raspberry Pi 5 (4K page size) | `sudo apt install box64-rpi5arm64` |
| box64-rpi5arm64ps16k | >= Ubuntu 20.04 | Built for Raspberry Pi 5 (16K page size) | `sudo apt install box64-rpi5arm64ps16k` |

Want me to build for more platforms? Open an issue.

Expand Down
4 changes: 2 additions & 2 deletions create-deb-bionic.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ echo "Box64 is not the latest version, compiling now."
echo $commit > $DIRECTORY/commit-bionic.txt
echo "Wrote commit to commit-bionic.txt file for use during the next compilation."

targets=(ARM64 ANDROID RPI4ARM64 RPI3ARM64 TEGRAX1 RK3399)
targets=(ARM64 ANDROID RPI4ARM64 RPI3ARM64 TEGRAX1 RK3399 SD8G2)

# Update this var with each added target in the repo.
# Ensures that no two builds can be installed together.
alltargets=(ARM64 ANDROID RPI4ARM64 RPI3ARM64 TEGRAX1 RK3399 RK3588 SD8G2)
alltargets=(ARM64 ANDROID RPI4ARM64 RPI3ARM64 TEGRAX1 RK3399 RK3588 SD8G2 RPI5ARM64 RPI5ARM64PS16K)

for target in ${targets[@]}; do
echo "Building $target"
Expand Down
4 changes: 2 additions & 2 deletions create-deb-focal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ echo "Box64 is not the latest version, compiling now."
echo $commit > $DIRECTORY/commit-focal.txt
echo "Wrote commit to commit-focal.txt file for use during the next compilation."

targets=(RK3588)
targets=(RK3588 RPI5ARM64 RPI5ARM64PS16K)

# Update this var with each added target in the repo.
# Ensures that no two builds can be installed together.
alltargets=(ARM64 ANDROID RPI4ARM64 RPI3ARM64 TEGRAX1 RK3399 RK3588)
alltargets=(ARM64 ANDROID RPI4ARM64 RPI3ARM64 TEGRAX1 RK3399 RK3588 SD8G2 RPI5ARM64 RPI5ARM64PS16K)

for target in ${targets[@]}; do
echo "Building $target"
Expand Down

0 comments on commit cf1972b

Please sign in to comment.