mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-13 18:04:32 +00:00
The generic-y is redundant under the following condition: - arch has its own implementation - the same header is added to generated-y - the same header is added to mandatory-y If a redundant generic-y is found, the warning like follows is displayed: scripts/Makefile.asm-generic:20: redundant generic-y found in arch/arm/include/asm/Kbuild: timex.h I fixed up arch Kbuild files found by this. Suggested-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
26 lines
644 B
Makefile
26 lines
644 B
Makefile
generated-y += syscall_table_32.h
|
|
generated-y += syscall_table_64.h
|
|
generated-y += syscall_table_c32.h
|
|
generic-y += current.h
|
|
generic-y += device.h
|
|
generic-y += div64.h
|
|
generic-y += emergency-restart.h
|
|
generic-y += exec.h
|
|
generic-y += hw_irq.h
|
|
generic-y += irq_regs.h
|
|
generic-y += irq_work.h
|
|
generic-y += kdebug.h
|
|
generic-y += kprobes.h
|
|
generic-y += local.h
|
|
generic-y += local64.h
|
|
generic-y += mcs_spinlock.h
|
|
generic-y += mm-arch-hooks.h
|
|
generic-y += percpu.h
|
|
generic-y += preempt.h
|
|
generic-y += seccomp.h
|
|
generic-y += segment.h
|
|
generic-y += trace_clock.h
|
|
generic-y += user.h
|
|
generic-y += vga.h
|
|
generic-y += word-at-a-time.h
|
|
generic-y += xor.h
|