From a685a93ab4a356fcb0dbbddb2f2fc2973af2c863 Mon Sep 17 00:00:00 2001 From: Nathaniel van Diepen Date: Tue, 25 Jul 2023 01:53:13 -0600 Subject: [PATCH] Update Qt to use reMarkable's qtbase (#22) * Update Qt to 5.15.1 and use reMarkable's qt source * Fix init-repository call --- qt/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qt/Dockerfile b/qt/Dockerfile index 4bf8b69..a193143 100644 --- a/qt/Dockerfile +++ b/qt/Dockerfile @@ -13,8 +13,8 @@ RUN export DEBIAN_FRONTEND=noninteractive \ && cd /root \ && git clone https://code.qt.io/qt/qt5.git \ && cd qt5 \ - && git checkout dd11f01de7416b650b58c13e18146533d764477c \ - && perl init-repository --module-subset=essential,-qtmultimedia,-qttools,qtgraphicaleffects,qtquickcontrols2,qtsvg,qtwebsockets \ + && git checkout 0f7f776d3915ef16a9c737141994284f035aa3b1 \ + && GIT_ASKPASS="/bin/echo" perl init-repository --module-subset=essential,-qtmultimedia,-qttools,qtgraphicaleffects,qtquickcontrols2,qtsvg,qtwebsockets --mirror=https://github.com/reMarkable/ \ # Setup reMarkable mkspec && mv /linux-arm-remarkable-g++ qtbase/mkspecs/devices \ && cd .. \