Skip to content

Commit 9c6f6e1

Browse files
authored
Merge pull request #2 from linuxserver/9.1.1
update to 9.1.1, switch to new debian package and bin naming scheme
2 parents 9e9b5fa + 1bf179c commit 9c6f6e1

8 files changed

Lines changed: 14 additions & 12 deletions

File tree

.github/workflows/external_trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
2424
echo "> External trigger running off of master branch. To disable this trigger, add \`qemu-static_master\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY
2525
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
26-
EXT_RELEASE=$(echo 9.0.2+ds-1~bpo12+1)
26+
EXT_RELEASE=$(echo 9.1.1+ds-2~bpo12+1)
2727
echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY
2828
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
2929
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
FROM debian:bookworm AS buildstage
44

5-
ARG QEMU_VERSION="9.0.2+ds-1~bpo12+1"
5+
ARG QEMU_VERSION="9.1.1+ds-2~bpo12+1"
66

77
RUN \
88
echo "**** install build deps ****" && \
@@ -17,8 +17,8 @@ RUN \
1717
/build-out/usr/bin \
1818
/tmp/qemu && \
1919
curl -o \
20-
/tmp/qemu.deb -L \
21-
"http://ftp.de.debian.org/debian/pool/main/q/qemu/qemu-user-static_${QEMU_VERSION}_amd64.deb" && \
20+
/tmp/qemu.deb -L \
21+
"http://ftp.de.debian.org/debian/pool/main/q/qemu/qemu-user_${QEMU_VERSION}_amd64.deb" && \
2222
cd /tmp && \
2323
dpkg-deb -R \
2424
qemu.deb \
@@ -27,7 +27,7 @@ RUN \
2727
/tmp/qemu/usr/bin/* \
2828
/build-out/qemu && \
2929
curl -o \
30-
/build-out/usr/bin/qemu-binfmt-conf -L \
30+
/build-out/usr/bin/qemu-binfmt-conf -L \
3131
"https://raw.githubusercontent.com/qemu/qemu/refs/heads/master/scripts/qemu-binfmt-conf.sh" && \
3232
chmod +x /build-out/usr/bin/qemu-binfmt-conf
3333

Dockerfile.aarch64

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
FROM debian:bookworm AS buildstage
44

5-
ARG QEMU_VERSION="9.0.2+ds-1~bpo12+1"
5+
ARG QEMU_VERSION="9.1.1+ds-2~bpo12+1"
66

77
RUN \
88
echo "**** install build deps ****" && \
@@ -17,8 +17,8 @@ RUN \
1717
/build-out/usr/bin \
1818
/tmp/qemu && \
1919
curl -o \
20-
/tmp/qemu.deb -L \
21-
"http://ftp.de.debian.org/debian/pool/main/q/qemu/qemu-user-static_${QEMU_VERSION}_arm64.deb" && \
20+
/tmp/qemu.deb -L \
21+
"http://ftp.de.debian.org/debian/pool/main/q/qemu/qemu-user_${QEMU_VERSION}_arm64.deb" && \
2222
cd /tmp && \
2323
dpkg-deb -R \
2424
qemu.deb \
@@ -27,7 +27,7 @@ RUN \
2727
/tmp/qemu/usr/bin/* \
2828
/build-out/qemu && \
2929
curl -o \
30-
/build-out/usr/bin/qemu-binfmt-conf -L \
30+
/build-out/usr/bin/qemu-binfmt-conf -L \
3131
"https://raw.githubusercontent.com/qemu/qemu/refs/heads/master/scripts/qemu-binfmt-conf.sh" && \
3232
chmod +x /build-out/usr/bin/qemu-binfmt-conf
3333

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ pipeline {
124124
steps{
125125
script{
126126
env.EXT_RELEASE = sh(
127-
script: ''' echo 9.0.2+ds-1~bpo12+1 ''',
127+
script: ''' echo 9.1.1+ds-2~bpo12+1 ''',
128128
returnStdout: true).trim()
129129
env.RELEASE_LINK = 'custom_command'
130130
}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,5 @@ docker run --rm -it \
6767
```
6868
## Versions
6969

70+
* **07.11.24:** - Upgrade to 9.1.1, switch to new debian package and bin naming scheme.
7071
* **14.10.24:** - Initial release.

jenkins-vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# jenkins variables
44
project_name: docker-qemu-static
55
external_type: na
6-
custom_version_command: "echo 9.0.2+ds-1~bpo12+1"
6+
custom_version_command: "echo 9.1.1+ds-2~bpo12+1"
77
release_type: stable
88
release_tag: latest
99
ls_branch: master

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,6 @@ full_custom_readme: |
7171
```
7272
## Versions
7373
74+
* **07.11.24:** - Upgrade to 9.1.1, switch to new debian package and bin naming scheme.
7475
* **14.10.24:** - Initial release.
7576
{%- endraw %}

root/register

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ if [ "${1}" = "--reset" ]; then
1515
find /proc/sys/fs/binfmt_misc -type f -name 'qemu-*' -exec sh -c 'echo -1 > {}' \;
1616
fi
1717

18-
exec qemu-binfmt-conf --qemu-suffix "-static" --qemu-path "/qemu" $@
18+
exec qemu-binfmt-conf --qemu-path "/qemu" $@

0 commit comments

Comments
 (0)