Skip to content
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

kernel-6.1: exclude more object files from devel #172

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/kernel-6.1/kernel-6.1.spec
Original file line number Diff line number Diff line change
Expand Up @@ -236,20 +236,20 @@ chmod 600 System.map
\( -name module.lds -o -name vmlinux.lds.S -o -name Platform -o -name \*.tbl \) \
-print

find arch/%{_cross_karch}/{include,lib}/ -type f ! -name \*.o ! -name \*.o.d -print
find arch/%{_cross_karch}/{include,lib}/ -type f ! -name \*.o ! -name \*.o.d ! -name \*.a -print
echo arch/%{_cross_karch}/kernel/asm-offsets.s
echo lib/vdso/gettimeofday.c

for d in \
arch/%{_cross_karch}/tools \
arch/%{_cross_karch}/kernel/vdso ; do
[ -d "${d}" ] && find "${d}/" -type f -print
[ -d "${d}" ] && find "${d}/" -type f ! -name \*.o -print
done

find include -type f -print
find scripts -type f ! -name \*.l ! -name \*.y ! -name \*.o -print

find tools/{arch/%{_cross_karch},include,objtool,scripts}/ -type f ! -name \*.o -print
find tools/{arch/%{_cross_karch},include,objtool,scripts}/ -type f ! -name \*.o ! -name \*.a -print
echo tools/build/fixdep.c
find tools/lib/subcmd -type f -print
find tools/lib/{ctype,hweight,rbtree,string,str_error_r}.c
Expand Down