forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hexagon: move generic-y of exported headers to uapi/asm/Kbuild
Since commit fcc8487 ("uapi: export all headers under uapi directories"), all (and only) headers under uapi directories are exported, but asm-generic wrappers are still exceptions. To complete de-coupling the uapi from kernel headers, move generic-y of exported headers to uapi/asm/Kbuild. With this change, "make headers_install" will just need to parse uapi/asm/Kbuild to build up exported headers. Also, move "generic-y += kprobes.h" up in order to keep the entries sorted. Signed-off-by: Masahiro Yamada <[email protected]>
- Loading branch information
Showing
2 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,26 @@ | ||
# UAPI Header export list | ||
include include/uapi/asm-generic/Kbuild.asm | ||
|
||
generic-y += auxvec.h | ||
generic-y += errno.h | ||
generic-y += fcntl.h | ||
generic-y += ioctl.h | ||
generic-y += ioctls.h | ||
generic-y += ipcbuf.h | ||
generic-y += mman.h | ||
generic-y += msgbuf.h | ||
generic-y += poll.h | ||
generic-y += posix_types.h | ||
generic-y += resource.h | ||
generic-y += sembuf.h | ||
generic-y += shmbuf.h | ||
generic-y += shmparam.h | ||
generic-y += siginfo.h | ||
generic-y += socket.h | ||
generic-y += sockios.h | ||
generic-y += stat.h | ||
generic-y += statfs.h | ||
generic-y += termbits.h | ||
generic-y += termios.h | ||
generic-y += types.h | ||
generic-y += ucontext.h |