Skip to content

Commit

Permalink
added pi2 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matt2005 committed Dec 9, 2021
1 parent 587d21c commit 1928de4
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/pifile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ jobs:
osname: "buster",
ostype: "Debian"
}
- {
name: "Debian Buster arm7",
basefile: "updater/base_buster_arm7",
arch: "arm7",
osname: "buster",
ostype: "Debian"
}
name: 'Build: ${{ matrix.config.name }}'
steps:
-
Expand Down Expand Up @@ -158,6 +165,13 @@ jobs:
osname: "buster",
ostype: "Debian"
}
- {
name: "Debian Buster arm7",
basefile: "updater/base_buster_arm7",
arch: "arm7",
osname: "buster",
ostype: "Debian"
}

name: 'Upload release: ${{ matrix.config.name }}'
steps:
Expand Down
21 changes: 21 additions & 0 deletions updater/base_buster_arm7.Pifile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#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/csng-alpha7.2/2021-02-09-crankshaft-ng-d5fffdd.zip
PUMP 1000M

# Update OS and sources
RUN <<EOF
apt-get update --allow-releaseinfo-change -y
apt-get update -y
DEBIAN_FRONTEND=noninteractive apt-get -y dist-upgrade
apt-get install -y sl
apt-get autoremove -y
EOF

RUN <<EOF
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
cat Qt_5151_armv7l_OpenGLES2.tar.xz* > Qt5_OpenGLES2.tar.xz
tar -xf Qt5_OpenGLES2.tar.xz -C /
EOF

0 comments on commit 1928de4

Please sign in to comment.