-
Notifications
You must be signed in to change notification settings - Fork 171
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
packit: replace EPEL 9 with centos-stream+epel-next-9 and c9s-build #399
Conversation
Based on your Packit configuration the settings of the @meta/drgn Copr project would need to be updated as follows:
Diff of chroots: +centos-stream+epel-next-9-aarch64
+centos-stream+epel-next-9-s390x
+centos-stream+epel-next-9-ppc64le
+centos-stream+epel-next-9-x86_64 Packit was unable to update the settings above as it is missing To fix this you can do one of the following:
Please retrigger the build, once the issue above is fixed. |
9166f02
to
66e690a
Compare
Based on your Packit configuration the settings of the @meta/drgn Copr project would need to be updated as follows:
Packit was unable to update the settings above as it is missing To fix this you can do one of the following:
Please retrigger the build, once the issue above is fixed. |
`drgn` no longer builds in EPEL 9 because `libkdumpfile-devel` is in RHEL 9 but not pushed out to CRB: https://issues.redhat.com/browse/RHEL-38224 Instead, let's make sure it still builds on CentOS Stream 9 + EPEL Next 9, with the `c9s-build` repo enabled, since that repo is accessible from COPR. Fixes: osandov#395 Signed-off-by: Michel Lind <[email protected]>
66e690a
to
11e9acd
Compare
For live kernel debugging, you usually have a properly installed kernel that has run depmod. However, for core dumps, it's common to get an archive containing all of the kernel module files and no depmod metadata. Peter Collingbourne also reported that the depmod situation on Android is complicated: Android doesn't have a modules.dep.bin file, and modules are split among different images. Let's add support for walking kernel module directories if modules.dep.bin isn't found and a debug info option for controlling whether depmod, walking, or both are tried. We default to using depmod if it is available and walking if not. Closes #399. Signed-off-by: Omar Sandoval <[email protected]>
drgn
no longer builds in EPEL 9 becauselibkdumpfile-devel
is in RHEL 9 but not pushed out to CRB: https://issues.redhat.com/browse/RHEL-38224Instead, let's make sure it still builds on CentOS Stream 9 + EPEL Next 9, with the
c9s-build
repo enabled, since that repo is accessible from COPR.Fixes: #395