All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Pedantry.
@ 2001-07-12  9:21 David Woodhouse
  2001-07-12 14:04 ` Jamie Lokier
  2001-07-12 15:46 ` Jonathan Lundell
  0 siblings, 2 replies; 7+ messages in thread
From: David Woodhouse @ 2001-07-12  9:21 UTC (permalink / raw)
  To: torvalds; +Cc: alan, linux-kernel

AFAIK "Uncompressing" is not a real word even in American.
Please apply this correction.
(Yes, I'm bored today :)

Index: ./arch/arm/boot/compressed/misc.c
===================================================================
RCS file: /inst/cvs/linux/arch/arm/boot/compressed/misc.c,v
retrieving revision 1.1.1.1.2.1
diff -u -r1.1.1.1.2.1 misc.c
--- ./arch/arm/boot/compressed/misc.c	2000/12/04 15:57:41	1.1.1.1.2.1
+++ ./arch/arm/boot/compressed/misc.c	2001/07/12 09:17:30
@@ -293,7 +293,7 @@
 	arch_decomp_setup();
 
 	makecrc();
-	puts("Uncompressing Linux...");
+	puts("Decompressing Linux...");
 	gunzip();
 	puts(" done, booting the kernel.\n");
 	return output_ptr;
@@ -307,7 +307,7 @@
 	output_data = output_buffer;
 
 	makecrc();
-	puts("Uncompressing Linux...");
+	puts("Decompressing Linux...");
 	gunzip();
 	puts("done.\n");
 	return 0;
Index: ./arch/i386/boot/compressed/misc.c
===================================================================
RCS file: /inst/cvs/linux/arch/i386/boot/compressed/misc.c,v
retrieving revision 1.1.1.1.2.7
diff -u -r1.1.1.1.2.7 misc.c
--- ./arch/i386/boot/compressed/misc.c	2001/02/24 19:12:22	1.1.1.1.2.7
+++ ./arch/i386/boot/compressed/misc.c	2001/07/12 09:17:30
@@ -361,7 +361,7 @@
 	else setup_output_buffer_if_we_run_high(mv);
 
 	makecrc();
-	puts("Uncompressing Linux... ");
+	puts("Decompressing Linux... ");
 	gunzip();
 	puts("Ok, booting the kernel.\n");
 	if (high_loaded) close_output_buffer_if_we_run_high(mv);
Index: ./arch/ppc/boot/common/misc-simple.c
===================================================================
RCS file: /inst/cvs/linux/arch/ppc/boot/common/Attic/misc-simple.c,v
retrieving revision 1.1.2.1
diff -u -r1.1.2.1 misc-simple.c
--- ./arch/ppc/boot/common/misc-simple.c	2001/06/02 16:27:52	1.1.2.1
+++ ./arch/ppc/boot/common/misc-simple.c	2001/07/12 09:17:30
@@ -173,7 +173,7 @@
 	if ( initrd_start > (16<<20))
 		puts("initrd_start located > 16M\n");
        
-	puts("Uncompressing Linux...");
+	puts("Decompressing Linux...");
 
 	gunzip(0, 0x400000, zimage_start, &zimage_size);
 	puts("done.\n");
Index: ./arch/ppc/boot/mbx/misc.c
===================================================================
RCS file: /inst/cvs/linux/arch/ppc/boot/mbx/Attic/misc.c,v
retrieving revision 1.1.2.1
diff -u -r1.1.2.1 misc.c
--- ./arch/ppc/boot/mbx/misc.c	2001/06/02 16:27:52	1.1.2.1
+++ ./arch/ppc/boot/mbx/misc.c	2001/07/12 09:17:30
@@ -258,7 +258,7 @@
 		udelay(1000);  /* 1 msec */
 	}
 	*cp = 0;
-	puts("\nUncompressing Linux...");
+	puts("\nDecompressing Linux...");
 
 	gunzip(0, 0x400000, zimage_start, &zimage_size);
 	puts("done.\n");
Index: ./arch/ppc/boot/prep/misc.c
===================================================================
RCS file: /inst/cvs/linux/arch/ppc/boot/prep/Attic/misc.c,v
retrieving revision 1.1.2.3
diff -u -r1.1.2.3 misc.c
--- ./arch/ppc/boot/prep/misc.c	2001/07/03 09:34:19	1.1.2.3
+++ ./arch/ppc/boot/prep/misc.c	2001/07/12 09:17:30
@@ -397,7 +397,7 @@
 	if ( initrd_start > (16<<20))
 		puts("initrd_start located > 16M\n");
 
-	puts("Uncompressing Linux...");
+	puts("Decompressing Linux...");
 	
 	gunzip(0, 0x400000, zimage_start, &zimage_size);
 	puts("done.\n");
Index: ./arch/sh/boot/compressed/misc.c
===================================================================
RCS file: /inst/cvs/linux/arch/sh/boot/compressed/Attic/misc.c,v
retrieving revision 1.1.2.2
diff -u -r1.1.2.2 misc.c
--- ./arch/sh/boot/compressed/misc.c	2000/12/05 10:39:22	1.1.2.2
+++ ./arch/sh/boot/compressed/misc.c	2001/07/12 09:17:30
@@ -232,7 +232,7 @@
 	free_mem_end_ptr = free_mem_ptr + HEAP_SIZE;
 
 	makecrc();
-	puts("Uncompressing Linux... ");
+	puts("Decompressing Linux... ");
 	gunzip();
 	puts("Ok, booting the kernel.\n");
 }
Index: ./arch/cris/boot/compressed/misc.c
===================================================================
RCS file: /inst/cvs/linux/arch/cris/boot/compressed/Attic/misc.c,v
retrieving revision 1.1.2.4
diff -u -r1.1.2.4 misc.c
--- ./arch/cris/boot/compressed/misc.c	2001/05/14 10:36:05	1.1.2.4
+++ ./arch/cris/boot/compressed/misc.c	2001/07/12 09:17:30
@@ -267,7 +267,7 @@
 		while(1);
 	}
 
-	puts("Uncompressing Linux...\n");
+	puts("Decompressing Linux...\n");
 	gunzip();
 	puts("Done. Now booting the kernel.\n");
 }

--
dwmw2



^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Pedantry.
  2001-07-12  9:21 David Woodhouse
@ 2001-07-12 14:04 ` Jamie Lokier
  2001-07-12 15:46 ` Jonathan Lundell
  1 sibling, 0 replies; 7+ messages in thread
From: Jamie Lokier @ 2001-07-12 14:04 UTC (permalink / raw)
  To: David Woodhouse; +Cc: torvalds, alan, linux-kernel

David Woodhouse wrote:
> AFAIK "Uncompressing" is not a real word even in American.

Depends how you parse it.  With uncompress-ing, the word "uncompress" is
actually a pronoun -- it is the name of the traditional uncompress
program.  Being a name, it does not have to be a real word. :-)

Now really, the kernel is not "compress"-ed per se, it's "zipped".

So may I suggest:


  Unzipping linux.... done <grin>


cheers,
-- Jamie

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Pedantry.
       [not found] ` <fa.g522o4v.26i737@ifi.uio.no>
@ 2001-07-12 15:15   ` Giacomo Catenazzi
  2001-07-12 15:21     ` Alan Shutko
  2001-07-12 15:49     ` Jamie Lokier
  0 siblings, 2 replies; 7+ messages in thread
From: Giacomo Catenazzi @ 2001-07-12 15:15 UTC (permalink / raw)
  To: linux-kernel


Jamie Lokier wrote:

> 
> So may I suggest:
> 
> 
>   Unzipping linux.... done <grin>
> 
> 

Better:
Creating Linux from (nearly) random bits.........born

(compressed file is a nearly random bits file)


	giacomo

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Pedantry.
  2001-07-12 15:15   ` [PATCH] Pedantry Giacomo Catenazzi
@ 2001-07-12 15:21     ` Alan Shutko
  2001-07-13  8:58       ` Joerg Schmitz-Linneweber
  2001-07-12 15:49     ` Jamie Lokier
  1 sibling, 1 reply; 7+ messages in thread
From: Alan Shutko @ 2001-07-12 15:21 UTC (permalink / raw)
  To: Giacomo Catenazzi; +Cc: linux-kernel

Giacomo Catenazzi <cate@debian.org> writes:

> Better:
> Creating Linux from (nearly) random bits.........born

"Generating redundancy... done done"?

-- 
Alan Shutko <ats@acm.org> - In a variety of flavors!
HOLY MACRO!

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Pedantry.
  2001-07-12  9:21 David Woodhouse
  2001-07-12 14:04 ` Jamie Lokier
@ 2001-07-12 15:46 ` Jonathan Lundell
  1 sibling, 0 replies; 7+ messages in thread
From: Jonathan Lundell @ 2001-07-12 15:46 UTC (permalink / raw)
  To: David Woodhouse, torvalds; +Cc: alan, linux-kernel

At 10:21 AM +0100 2001-07-12, David Woodhouse wrote:
>AFAIK "Uncompressing" is not a real word even in American.

Sure it is, on the grounds of established usage, and on the grounds 
of reasonable analogies (undo, unwrap, &c).
-- 
/Jonathan Lundell.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Pedantry.
  2001-07-12 15:15   ` [PATCH] Pedantry Giacomo Catenazzi
  2001-07-12 15:21     ` Alan Shutko
@ 2001-07-12 15:49     ` Jamie Lokier
  1 sibling, 0 replies; 7+ messages in thread
From: Jamie Lokier @ 2001-07-12 15:49 UTC (permalink / raw)
  To: Giacomo Catenazzi; +Cc: linux-kernel

Giacomo Catenazzi wrote:
> >   Unzipping linux.... done <grin>
> 
> Better:
> Creating Linux from (nearly) random bits.........born
> 
> (compressed file is a nearly random bits file)


Ah, I guess there are two categories of hacker.  Those that see innuendo
wherever they look and those that don't ;-)

-- Jamie

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Pedantry.
  2001-07-12 15:21     ` Alan Shutko
@ 2001-07-13  8:58       ` Joerg Schmitz-Linneweber
  0 siblings, 0 replies; 7+ messages in thread
From: Joerg Schmitz-Linneweber @ 2001-07-13  8:58 UTC (permalink / raw)
  To: Alan Shutko; +Cc: linux-kernel

Hi!

I think I'll vote for your (redundancy) version.
Anyone setting up a "web voter" for first Linux message?

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2001-07-13  8:58 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <fa.e8u67sv.rgkc2a@ifi.uio.no>
     [not found] ` <fa.g522o4v.26i737@ifi.uio.no>
2001-07-12 15:15   ` [PATCH] Pedantry Giacomo Catenazzi
2001-07-12 15:21     ` Alan Shutko
2001-07-13  8:58       ` Joerg Schmitz-Linneweber
2001-07-12 15:49     ` Jamie Lokier
2001-07-12  9:21 David Woodhouse
2001-07-12 14:04 ` Jamie Lokier
2001-07-12 15:46 ` Jonathan Lundell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.