From: Prarit Bhargava prarit@redhat.com
redhat: Force remove tmp file
If BTF is not enabled in the kernel config then .tmp_vmlinux.btf will not exist. The rpm build will throw an error because the file doesn't exist.
Use 'rm -f' to delete the .tmp_vmlinux.btf file.
Reported by: stan upaitag@zoho.com Signed-off-by: Prarit Bhargava prarit@redhat.com
diff --git a/redhat/kernel.spec.template b/redhat/kernel.spec.template index blahblah..blahblah 100755 --- a/redhat/kernel.spec.template +++ b/redhat/kernel.spec.template @@ -1683,7 +1683,7 @@ BuildKernel() { %endif
# Remove large intermediate files we no longer need to save space - rm vmlinux.o .tmp_vmlinux.btf + rm -f vmlinux.o .tmp_vmlinux.btf
# Start installing the results install -m 644 .config $RPM_BUILD_ROOT/boot/config-$KernelVer
-- https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2135
From: Patrick Talbert on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2135#note_1174313...
@prarit did you see the request by @dzickusrh here?
From: Prarit Bhargava on gitlab.com https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2135#note_1174349...
Oh I didn't. Thanks for pointing it out. I'll add a comment about zfcp.
kernel@lists.fedoraproject.org