

Code: Select all
roy@NeddySeagoon_SSD ~ $ cd /usr/src/linux
roy@NeddySeagoon_SSD /usr/src/linux $ grep -R DecompressingCode: Select all
Documentation/xz.txt: is used in single-call mode. Decompressing the kernel itself is an
arch/alpha/boot/bootpz.c: srm_printk("Decompressing the kernel...\n"
Binary file arch/x86/boot/compressed/misc.o matches
arch/x86/boot/compressed/misc.c: debug_putstr("\nDecompressing Linux... ");
Binary file arch/x86/boot/compressed/vmlinux matches
Binary file arch/x86/boot/vmlinux.bin matches
Binary file arch/x86/boot/bzImage matches
Binary file arch/x86_64/boot/bzImage matches
arch/m32r/boot/compressed/misc.c: puts("\nDecompressing Linux... ");Code: Select all
arch/alpha/boot/bootpz.c: srm_printk("Decompressing the kernel...\n"
arch/x86/boot/compressed/misc.c: debug_putstr("\nDecompressing Linux... ");
arch/m32r/boot/compressed/misc.c: puts("\nDecompressing Linux... ");
Code: Select all
nano -w arch/x86/boot/compressed/misc.cCode: Select all
DecompressingCode: Select all
debug_putstr("\nDecompressing Linux... ");
decompress(input_data, input_len, NULL, NULL, output, NULL, error);
parse_elf(output);
debug_putstr("done.\nBooting the kernel.\n");
return;Code: Select all
debug_putstr("\nDecompressing Linux... "); Code: Select all
debug_putstr("done.\nBooting the kernel.\n");
Code: Select all
/* debug_putstr("\nDecompressing Linux... "); */
decompress(input_data, input_len, NULL, NULL, output, NULL, error);
parse_elf(output);
/* debug_putstr("done.\nBooting the kernel.\n"); */
return;

Code: Select all
man patch