-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport 8.052.01-1 to Debian 12 for Proxmox VE 12 Kernel compatibility
- Loading branch information
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: 'Build .deb' | ||
description: 'Build latest .deb for rtl8168-dkms' | ||
jobs: | ||
package: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
- name: Build container image | ||
run: docker build . | ||
- name: Package rtl8168-dkms | ||
run: docker run --rm -v build:/usr/src-v $(pwd):/usr/src/rtl8168 -w /usr/src/rtl8168 -it $(docker build -q .) dpkg-buildpackage -us -uc --no-sign -A | ||
- name: Archive .deb files | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: deb | ||
path: build/*.deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM debian:bookworm | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN sed -i 's#Types: deb#Types: deb deb-src#g' /etc/apt/sources.list.d/debian.sources && \ | ||
sed -i 's#Components: main#Components: main non-free#g' /etc/apt/sources.list.d/debian.sources && \ | ||
apt-get update && \ | ||
apt-get build-dep -y r8168-dkms |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
r8168 (8.052.01-1-bpo12) unstable; urgency=low | ||
|
||
* Backport 8.052.01-1 to Debian 12 for Proxmox VE 12 Kernel compatibility | ||
|
||
-- Nathan-J. Hirschauer <[email protected]> Sun, 24 Mar 2024 19:34:04 +0100 | ||
|
||
r8168 (8.052.01-1) unstable; urgency=medium | ||
|
||
* New upstream release 8.052.01 (2023-09-28). | ||
|