-
Notifications
You must be signed in to change notification settings - Fork 253
upgrade base image to debian 13 #1557
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,34 +1,36 @@ | ||
| base-files 12.4+deb12u13 | ||
| coreutils 9.1-1 | ||
| e2fsprogs 1.47.0-2+b2 | ||
| fdisk 2.38.1-5+deb12u3 | ||
| grep 3.8-5 | ||
| libblkid1 2.38.1-5+deb12u3 | ||
| libc6 2.36-9+deb12u13 | ||
| libcom-err2 1.47.0-2+b2 | ||
| libext2fs2 1.47.0-2+b2 | ||
| libfdisk1 2.38.1-5+deb12u3 | ||
| libgssapi-krb5-2 1.20.1-2+deb12u4 | ||
| libinih1 55-1 | ||
| libk5crypto3 1.20.1-2+deb12u4 | ||
| libkeyutils1 1.6.3-2 | ||
| libkrb5-3 1.20.1-2+deb12u4 | ||
| libkrb5support0 1.20.1-2+deb12u4 | ||
| libmount1 2.38.1-5+deb12u3 | ||
| libpcre2-8-0 10.42-1 | ||
| libreadline8 8.2-1.3 | ||
| libselinux1 3.4-1+b6 | ||
| libsmartcols1 2.38.1-5+deb12u3 | ||
| libssl3 3.0.18-1~deb12u2 | ||
| libtinfo6 6.4-4 | ||
| libtirpc-common 1.3.3+ds-1 | ||
| libtirpc3 1.3.3+ds-1 | ||
| liburcu8 0.13.2-1 | ||
| libuuid1 2.38.1-5+deb12u3 | ||
| media-types 10.0.0 | ||
| mount 2.38.1-5+deb12u3 | ||
| netbase 6.4 | ||
| nfs-common 1:2.6.2-4+deb12u1 | ||
| tzdata 2025b-0+deb12u2 | ||
| util-linux 2.38.1-5+deb12u3 | ||
| xfsprogs 6.1.0-1 | ||
| base-files 13.8+deb13u3 | ||
| coreutils 9.7-3 | ||
| e2fsprogs 1.47.2-3+b7 | ||
| fdisk 2.41-5 | ||
| grep 3.11-4 | ||
| libblkid1 2.41-5 | ||
| libc6 2.41-12+deb13u1 | ||
| libcom-err2 1.47.2-3+b7 | ||
| libext2fs2t64 1.47.2-3+b7 | ||
| libfdisk1 2.41-5 | ||
| libgssapi-krb5-2 1.21.3-5 | ||
| libinih1 59-1 | ||
| libk5crypto3 1.21.3-5 | ||
| libkeyutils1 1.6.3-6 | ||
| libkrb5-3 1.21.3-5 | ||
| libkrb5support0 1.21.3-5 | ||
| libmount1 2.41-5 | ||
| libpcre2-8-0 10.46-1~deb13u1 | ||
| libreadline8t64 8.2-6 | ||
| libselinux1 3.8.1-1 | ||
| libsmartcols1 2.41-5 | ||
| libssl3t64 3.5.4-1~deb13u2 | ||
| libtinfo6 6.5+20250216-2 | ||
| libtirpc-common 1.3.6+ds-1 | ||
| libtirpc3t64 1.3.6+ds-1 | ||
| liburcu8t64 0.15.2-2 | ||
| libuuid1 2.41-5 | ||
| libzstd1 1.5.7+dfsg-1 | ||
| media-types 13.0.0 | ||
| mount 2.41-5 | ||
| netbase 6.5 | ||
| nfs-common 1:2.8.3-1 | ||
| tzdata 2025b-4+deb13u1 | ||
| util-linux 2.41-5 | ||
| xfsprogs 6.13.0-2+b1 | ||
| zlib1g 1:1.3.dfsg+really1.3.1-1+b1 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -648,6 +648,7 @@ func mkfsDefaultArgs(fstype, source string) (args []string) { | |
| } else if fstype == "xfs" { | ||
| args = []string{ | ||
| "-f", | ||
| "-i", "nrext64=0", // This requires kernel v5.19, so disable for now. | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. another reason to hold this. We will need to replace ASI dockerfile before merge. Old mkfs.xfs will not understand this flag.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The comment says |
||
| source, | ||
| } | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch updating paths from
/sbin/to/usr/sbin/for Debian 13 (which no longer uses the/sbinsymlink split). Verify that/usr/sbin/mount.nfsand/usr/sbin/umount.nfsactually exist in trixie — historically NFS mount helpers may be in different locations depending on the nfs-common package version.