docker: add aarch64 support

This commit is contained in:
Radostan Riedel 2016-12-02 12:44:32 -08:00 committed by Lukas Rusak
parent 13b8d5923d
commit 0c14cf1e26
No known key found for this signature in database
GPG Key ID: 8C310C807E7393A3
2 changed files with 5 additions and 2 deletions

View File

@ -20,7 +20,7 @@ PKG_NAME="docker"
PKG_VERSION="1.12.3"
PKG_REV="109"
PKG_ARCH="any"
PKG_ADDON_PROJECTS="Generic RPi RPi2 imx6"
PKG_ADDON_PROJECTS="Generic RPi RPi2 imx6 WeTek_Hub WeTek_Play_2 Odroid_C2"
PKG_LICENSE="ASL"
PKG_SITE="http://www.docker.com/"
PKG_URL="https://github.com/docker/docker/archive/v${PKG_VERSION}.tar.gz"
@ -57,6 +57,9 @@ configure_target() {
;;
esac
;;
aarch64)
export GOARCH=arm64
;;
esac
export GOOS=linux

View File

@ -1,2 +1,2 @@
DOCKER_DAEMON_OPTS="--graph=/storage/.kodi/userdata/addon_data/service.system.docker/docker"
DOCKER_STORAGE_OPTS="--storage-driver=overlay2"
DOCKER_STORAGE_OPTS="--storage-driver=overlay2 --storage-opt overlay2.override_kernel_check=1"