diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-10 15:10:24 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-10 15:10:24 -0500 |
commit | b6444bd0a18eb47343e16749ce80a6ebd521f124 (patch) | |
tree | 989881a237552dbe3fb36df45b4eda6dbd5fc09f /arch/x86/boot/compressed/Makefile | |
parent | 9d0cf6f56454c8a71e0aa2c3b9c6cbe470eb2788 (diff) | |
parent | 97b67ae559947f1e208439a1bf6a734da3087006 (diff) |
Merge branch 'x86-boot-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 boot and percpu updates from Ingo Molnar:
"This tree contains a bootable images documentation update plus three
slightly misplaced x86/asm percpu changes/optimizations"
* 'x86-boot-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86-64: Use RIP-relative addressing for most per-CPU accesses
x86-64: Handle PC-relative relocations on per-CPU data
x86: Convert a few more per-CPU items to read-mostly ones
x86, boot: Document intermediates more clearly
Diffstat (limited to 'arch/x86/boot/compressed/Makefile')
-rw-r--r-- | arch/x86/boot/compressed/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/x86/boot/compressed/Makefile b/arch/x86/boot/compressed/Makefile index 45abc363dd3e..65516ab0cabe 100644 --- a/arch/x86/boot/compressed/Makefile +++ b/arch/x86/boot/compressed/Makefile | |||
@@ -3,6 +3,18 @@ | |||
3 | # | 3 | # |
4 | # create a compressed vmlinux image from the original vmlinux | 4 | # create a compressed vmlinux image from the original vmlinux |
5 | # | 5 | # |
6 | # vmlinuz is: | ||
7 | # decompression code (*.o) | ||
8 | # asm globals (piggy.S), including: | ||
9 | # vmlinux.bin.(gz|bz2|lzma|...) | ||
10 | # | ||
11 | # vmlinux.bin is: | ||
12 | # vmlinux stripped of debugging and comments | ||
13 | # vmlinux.bin.all is: | ||
14 | # vmlinux.bin + vmlinux.relocs | ||
15 | # vmlinux.bin.(gz|bz2|lzma|...) is: | ||
16 | # (see scripts/Makefile.lib size_append) | ||
17 | # compressed vmlinux.bin.all + u32 size of vmlinux.bin.all | ||
6 | 18 | ||
7 | targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \ | 19 | targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \ |
8 | vmlinux.bin.xz vmlinux.bin.lzo vmlinux.bin.lz4 | 20 | vmlinux.bin.xz vmlinux.bin.lzo vmlinux.bin.lz4 |