Skip to content

Commit f03ec3d

Browse files
authored
Added fix for #698. (#699)
Added armv7 qt and armhf qt installs
1 parent 4e5c87e commit f03ec3d

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

.github/workflows/pifile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- {
6363
name: "Debian Buster arm7",
6464
basefile: "updater/base_buster_arm7",
65-
arch: "arm7",
65+
arch: "arm7-pi2",
6666
osname: "buster",
6767
ostype: "Debian"
6868
}

updater/base_buster_arm7.Pifile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,14 @@ wget -O /usr/local/bin/crankshaft.md5 https://github.com/opencardev/prebuilts/ra
5151
chmod 644 /usr/local/bin/crankshaft.md5
5252

5353
"
54+
55+
RUN bash -c "
56+
cd /root
57+
rm -rf /usr/local/qt5
58+
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_armv7l_OpenGLES2.tar.xz.part00
59+
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_armv7l_OpenGLES2.tar.xz.part01
60+
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_armv7l_OpenGLES2.tar.xz.part02
61+
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_armv7l_OpenGLES2.tar.xz.part03
62+
cat Qt_5151_armv7l_OpenGLES2.tar.xz* > Qt5_OpenGLES2.tar.xz
63+
tar -xf Qt5_OpenGLES2.tar.xz -C /
64+
"

updater/base_buster_armhf.Pifile

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#FROM https://downloads.raspberrypi.org/raspios_lite_armhf/images/raspios_lite_armhf-2021-05-28/2021-05-07-raspios-buster-armhf-lite.zip
2-
FROM https://github.com/opencardev/crankshaft/releases/download/v.2022.09.12.1/2022-09-11-crankshaft-ng-66525ef-pi2.zip
2+
FROM https://github.com/opencardev/crankshaft/releases/download/v.2022.09.12.1/2022-09-11-crankshaft-ng-66525ef.zip
33
PUMP 1000M
44

55
# Update OS and sources
@@ -50,4 +50,15 @@ rm -f /usr/local/bin/crankshaft.md5
5050
wget -O /usr/local/bin/crankshaft.md5 https://github.com/opencardev/prebuilts/raw/master/csmt/crankshaft.md5
5151
chmod 644 /usr/local/bin/crankshaft.md5
5252

53-
"
53+
"
54+
55+
RUN bash -c "
56+
cd /root
57+
rm -rf /usr/local/qt5
58+
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_OpenGLES2.tar.xz.part00
59+
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_OpenGLES2.tar.xz.part01
60+
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_OpenGLES2.tar.xz.part02
61+
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_OpenGLES2.tar.xz.part03
62+
cat Qt_5151_OpenGLES2.tar.xz* > Qt5_OpenGLES2.tar.xz
63+
tar -xf Qt5_OpenGLES2.tar.xz -C /
64+
"

0 commit comments

Comments
 (0)