This is sick.....

Arthur D. Jerijian (adj@csua1.cs.ucla.edu)
Mon, 27 Jan 1997 15:22:03 -0800 (PST)


I found the following section of code back in patch-2.1.21:

diff -u --recursive --new-file v2.1.21/linux/arch/i386/boot/compressed/misc.c linux/arch/i386/boot/compressed/misc.c
--- v2.1.21/linux/arch/i386/boot/compressed/misc.c Mon Sep 23 11:29:03 1996
+++ linux/arch/i386/boot/compressed/misc.c Sun Jan 19 15:47:24 1997
@@ -340,7 +340,11 @@

void setup_normal_output_buffer()
{
- if (EXT_MEM_K < 1024) error("Less than 2MB of memory.\n");
+#ifdef STANDARD_MEMORY_BIOS_CALL
+ if (EXT_MEM_K < 1024) error("<2M of mem\n");
+#else
+ if (EXT_MEM_K*64 < 1024) error("<2M of mem\n");
+#endif
output_data = (char *)0x100000; /* Points to 1M */
}

Can someone change the "<2M of mem" to "Less than 2MB of memory."? The
former error message is somewhat annoying to new users who wish
to run Linux on their old 386/16 with 1MB of RAM.

"<2M of mem? What THE...... No thanks, I'll take Windows! At least
it's easier to understand" :*)

--Arthur