forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge zfs-2.2.3-staging into stable/dragonfish
Signed-off-by: Ameer Hamza <[email protected]>
- Loading branch information
Showing
76 changed files
with
1,943 additions
and
651 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
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 |
---|---|---|
|
@@ -52,6 +52,7 @@ | |
!configure.ac | ||
!copy-builtin | ||
!COPYRIGHT | ||
!Dockerfile | ||
!LICENSE | ||
!Makefile.am | ||
!META | ||
|
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,27 @@ | ||
FROM debian:bullseye-slim | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get update | ||
|
||
RUN apt-get install -y \ | ||
debhelper-compat \ | ||
devscripts | ||
|
||
ENV WORK_DIR /zfs_app/zfs | ||
WORKDIR ${WORK_DIR} | ||
|
||
ADD . ${WORK_DIR}/ | ||
|
||
RUN mk-build-deps --build-dep contrib/debian/control | ||
RUN apt install -y ./*.deb | ||
RUN sh autogen.sh | ||
RUN ./configure | ||
RUN cp -a contrib/debian debian | ||
RUN sed 's/@CFGOPTS@/--enable-debuginfo/g' debian/rules.in > debian/rules | ||
RUN chmod +x debian/rules | ||
RUN dch -b -M --force-distribution --distribution bullseye-truenas-unstable "Tagged from ixsystems/zfs CI" | ||
RUN debuild -us -uc -b | ||
RUN rm ../openzfs-zfs-dracut_*.deb | ||
RUN rm ../openzfs-zfs-initramfs_*.deb | ||
RUN apt-get install -y ../*.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
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
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
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
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
Oops, something went wrong.