mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-04 14:08:38 +00:00
we're still going to need this for arm...
This commit is contained in:
parent
ebb490a71e
commit
8b2315b230
1 changed files with 11 additions and 1 deletions
|
|
@ -27,7 +27,17 @@ apt-get update
|
|||
apt-get -y install auto-apt-proxy
|
||||
apt-get -y install --no-install-recommends $STATIC_PACKAGES $BUILD_PACKAGES
|
||||
|
||||
PLATFORM=$(uname -m)
|
||||
case `uname -m` in
|
||||
arm*)
|
||||
PLATFORM=armhf
|
||||
;;
|
||||
aarch64*)
|
||||
PLATFORM=aarch64
|
||||
;;
|
||||
x86_64*)
|
||||
PLATFORM=x86_64
|
||||
;;
|
||||
esac
|
||||
|
||||
wget https://github.com/just-containers/s6-overlay/releases/download/v3.1.5.0/s6-overlay-noarch.tar.xz
|
||||
tar -Jxpf /tmp/s6-overlay-noarch.tar.xz -C /
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue