aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-04-29 14:15:39 -0400
committerGitHub <noreply@github.com>2024-04-29 14:15:39 -0400
commitb7777041f21f7ed178992590184d0237a0a7238e (patch)
treecec00413b7e81f7eddb5b23d90e7f8d55558236d
parentEnable build for Ubuntu 24.04 (diff)
parentUpdate gcc on noble and mali (diff)
downloadjellyfin-packaging-b7777041f21f7ed178992590184d0237a0a7238e.tar.gz
jellyfin-packaging-b7777041f21f7ed178992590184d0237a0a7238e.tar.bz2
jellyfin-packaging-b7777041f21f7ed178992590184d0237a0a7238e.zip
Merge pull request #18 from Gauvino/patch
Update gcc on noble and mali
-rw-r--r--build.yaml2
-rw-r--r--docker/Dockerfile2
2 files changed, 2 insertions, 2 deletions
diff --git a/build.yaml b/build.yaml
index 22b0992..e363b3f 100644
--- a/build.yaml
+++ b/build.yaml
@@ -34,7 +34,7 @@ ubuntu:
cross-gcc:
focal: '10'
jammy: '12'
- noble: '12'
+ noble: '13'
build_function: build_package_deb
dockerfile: debian/docker/Dockerfile
imagename: jellyfin-builder-ubuntu
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 6969dd2..3a06f3d 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -16,7 +16,7 @@ ARG LEVEL_ZERO_VERSION=1.3.29138.7
# https://github.com/tsukumijima/libmali-rockchip
ARG MALI_PKG_VER=1.9-1_arm64
-ARG MALI_PKG_TAG=v1.9-1-b5d7972
+ARG MALI_PKG_TAG=v1.9-1-55611b0
ARG MALI_PKG_CFG=valhall-g610-g13p0-gbm
# Debian architecture (amd64, arm64, armhf), set by build script
bgstack15