Skip to content

Commit

Permalink
Added fix for #698. (#699)
Browse files Browse the repository at this point in the history
Added armv7 qt and armhf qt installs
  • Loading branch information
matt2005 authored Jan 5, 2025
1 parent 4e5c87e commit f03ec3d
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pifile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- {
name: "Debian Buster arm7",
basefile: "updater/base_buster_arm7",
arch: "arm7",
arch: "arm7-pi2",
osname: "buster",
ostype: "Debian"
}
Expand Down
11 changes: 11 additions & 0 deletions updater/base_buster_arm7.Pifile
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,14 @@ wget -O /usr/local/bin/crankshaft.md5 https://github.com/opencardev/prebuilts/ra
chmod 644 /usr/local/bin/crankshaft.md5

"

RUN bash -c "
cd /root
rm -rf /usr/local/qt5
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_armv7l_OpenGLES2.tar.xz.part00
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_armv7l_OpenGLES2.tar.xz.part01
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_armv7l_OpenGLES2.tar.xz.part02
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_armv7l_OpenGLES2.tar.xz.part03
cat Qt_5151_armv7l_OpenGLES2.tar.xz* > Qt5_OpenGLES2.tar.xz
tar -xf Qt5_OpenGLES2.tar.xz -C /
"
15 changes: 13 additions & 2 deletions updater/base_buster_armhf.Pifile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#FROM https://downloads.raspberrypi.org/raspios_lite_armhf/images/raspios_lite_armhf-2021-05-28/2021-05-07-raspios-buster-armhf-lite.zip
FROM https://github.com/opencardev/crankshaft/releases/download/v.2022.09.12.1/2022-09-11-crankshaft-ng-66525ef-pi2.zip
FROM https://github.com/opencardev/crankshaft/releases/download/v.2022.09.12.1/2022-09-11-crankshaft-ng-66525ef.zip
PUMP 1000M

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

"
"

RUN bash -c "
cd /root
rm -rf /usr/local/qt5
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_OpenGLES2.tar.xz.part00
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_OpenGLES2.tar.xz.part01
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_OpenGLES2.tar.xz.part02
wget https://github.com/opencardev/prebuilts/raw/master/qt5/Qt_5151_OpenGLES2.tar.xz.part03
cat Qt_5151_OpenGLES2.tar.xz* > Qt5_OpenGLES2.tar.xz
tar -xf Qt5_OpenGLES2.tar.xz -C /
"

0 comments on commit f03ec3d

Please sign in to comment.