dfd0ad737720d7a8ce66d0ea56cb31cb1cef75fd
[openwrt/staging/chunkeey.git] / target / linux / pxa / patches-2.6.21 / 029-disable-uncompress-message.patch
1 --- a/arch/arm/boot/compressed/misc.c
2 +++ b/arch/arm/boot/compressed/misc.c
3 @@ -322,7 +322,6 @@ void flush_window(void)
4 bytes_out += (ulg)outcnt;
5 output_ptr += (ulg)outcnt;
6 outcnt = 0;
7 - putstr(".");
8 }
9
10 #ifndef arch_error
11 @@ -354,9 +353,7 @@ decompress_kernel(ulg output_start, ulg
12 arch_decomp_setup();
13
14 makecrc();
15 - putstr("Uncompressing Linux...");
16 gunzip();
17 - putstr(" done, booting the kernel.\n");
18 return output_ptr;
19 }
20 #else
21 @@ -368,9 +365,7 @@ int main()
22 output_data = output_buffer;
23
24 makecrc();
25 - putstr("Uncompressing Linux...");
26 gunzip();
27 - putstr("done.\n");
28 return 0;
29 }
30 #endif