diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-04-24 12:30:31 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-04-24 12:30:31 +0000 |
commit | 317bf46798780632539aa85cb67ee794d4e8ae49 (patch) | |
tree | 25919ec5d9b43001787849e2906e62159ab4931c /target/linux | |
parent | 2189d0cffc87184b8ad79c5fd7b109b0f81e8cca (diff) | |
download | upstream-317bf46798780632539aa85cb67ee794d4e8ae49.tar.gz upstream-317bf46798780632539aa85cb67ee794d4e8ae49.tar.bz2 upstream-317bf46798780632539aa85cb67ee794d4e8ae49.zip |
2.6.27 also needs to hack the command line passed to the kernel
SVN-Revision: 15381
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/rdc/patches-2.6.27/002-cmdline_setup.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/target/linux/rdc/patches-2.6.27/002-cmdline_setup.patch b/target/linux/rdc/patches-2.6.27/002-cmdline_setup.patch new file mode 100644 index 0000000000..ee36576d2c --- /dev/null +++ b/target/linux/rdc/patches-2.6.27/002-cmdline_setup.patch @@ -0,0 +1,10 @@ +--- a/arch/x86/kernel/setup.c 2009-04-24 11:37:41.000000000 +0200 ++++ b/arch/x86/kernel/setup.c 2009-04-24 11:38:43.000000000 +0200 +@@ -701,6 +701,7 @@ + bss_resource.start = virt_to_phys(&__bss_start); + bss_resource.end = virt_to_phys(&__bss_stop)-1; + ++ strcat(boot_command_line, " init=/etc/preinit console=ttyS0,38400"); + strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE); + *cmdline_p = command_line; + |