forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/gi…
…t/mmarek/kbuild Pull kbuild updates from Michal Marek: "Just a few kbuild core commits this time: - kallsyms fix for CONFIG_XIP_KERNEL - bashisms in scripts/link-vmlinux.sh fixed - workaround to make DEBUG_INFO_REDUCED more useful yet still space efficient - clang is not wrongly detected when cross-compiling" * 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild: kbuild: include core debug info when DEBUG_INFO_REDUCED scripts: link-vmlinux: Don't pass page offset to kallsyms if XIP Kernel scripts: fix link-vmlinux.sh bash-ism Makefile: Fix detection of clang when cross-compiling
- Loading branch information
Showing
4 changed files
with
52 additions
and
12 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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* This file exists solely to ensure debug information for some core | ||
* data structures is included in the final image even for | ||
* CONFIG_DEBUG_INFO_REDUCED. Please do not add actual code. However, | ||
* adding appropriate #includes is fine. | ||
*/ | ||
#include <stdarg.h> | ||
|
||
#include <linux/cred.h> | ||
#include <linux/crypto.h> | ||
#include <linux/dcache.h> | ||
#include <linux/device.h> | ||
#include <linux/fs.h> | ||
#include <linux/fscache-cache.h> | ||
#include <linux/io.h> | ||
#include <linux/kallsyms.h> | ||
#include <linux/kernel.h> | ||
#include <linux/kobject.h> | ||
#include <linux/mm.h> | ||
#include <linux/module.h> | ||
#include <linux/net.h> | ||
#include <linux/sched.h> | ||
#include <linux/slab.h> | ||
#include <linux/types.h> | ||
#include <net/addrconf.h> | ||
#include <net/sock.h> | ||
#include <net/tcp.h> |
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