diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2010-02-27 00:37:53 +0300 |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2010-02-27 00:37:33 +0300 |
commit | 1844c9bc0b2fed3023551c1affe033ab38e90b9a (patch) | |
tree | b9aca066ec58a0b211a4931032b74093fdb6ff49 /arch/s390/boot/compressed/vmlinux.scr | |
parent | 73bfa5f2f71efcdcaad8d18cbed96b9d7ed86948 (diff) | |
download | linux-1844c9bc0b2fed3023551c1affe033ab38e90b9a.tar.xz |
[S390] add support for compressed kernels
Add the "bzImage" compile target and the necessary code to generate
compressed kernel images. The old style uncompressed "image" target
is preserved, a simple make will build them both.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/boot/compressed/vmlinux.scr')
-rw-r--r-- | arch/s390/boot/compressed/vmlinux.scr | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/s390/boot/compressed/vmlinux.scr b/arch/s390/boot/compressed/vmlinux.scr new file mode 100644 index 000000000000..f02382ae5c48 --- /dev/null +++ b/arch/s390/boot/compressed/vmlinux.scr @@ -0,0 +1,10 @@ +SECTIONS +{ + .rodata.compressed : { + input_len = .; + LONG(input_data_end - input_data) input_data = .; + *(.data) + output_len = . - 4; + input_data_end = .; + } +} |