diff -Nur linux-2.5.69-uc0/arch/m68knommu/Kconfig linux-2.5.x-develer/arch/m68knommu/Kconfig
--- linux-2.5.69-uc0/arch/m68knommu/Kconfig	2003-05-25 14:16:15.000000000 +0200
+++ linux-2.5.x-develer/arch/m68knommu/Kconfig	2003-05-06 03:06:16.000000000 +0200
@@ -695,6 +712,14 @@
 	help
 	  Use a fast secondary clock to produce profiling information.
 
+config BOOTPARAM
+	bool 'Compiled-in Kernel Boot Parameter'
+
+config BOOTPARAM_STRING 
+	string 'Kernel Boot Parameter'
+	default 'console=ttyS0,19200 root=1f02 rw'
+	depends on BOOTPARAM
+
 config DUMPTOFLASH
 	bool "Panic/Dump to FLASH"
 	depends on COLDFIRE
diff -Nur linux-2.5.69-uc0/arch/m68knommu/platform/5272/config.c linux-2.5.x-develer/arch/m68knommu/platform/5272/config.c
--- linux-2.5.69-uc0/arch/m68knommu/platform/5272/config.c	2003-05-05 01:53:09.000000000 +0200
+++ linux-2.5.x-develer/arch/m68knommu/platform/5272/config.c	2003-05-06 03:06:52.000000000 +0200
@@ -97,7 +97,10 @@
 
 	mcf_disableall();
 
-#if defined(CONFIG_NETtel)
+#if defined(CONFIG_BOOTPARAM)
+	strncpy(commandp, CONFIG_BOOTPARAM_STRING, size);
+	commandp[size-1] = 0;
+#elif defined(CONFIG_NETtel)
 	/* Copy command line from FLASH to local buffer... */
 	memcpy(commandp, (char *) 0xf0004000, size);
 	commandp[size-1] = 0;
