diff options
author | Mirko Vogt <mirko@openwrt.org> | 2009-07-07 18:29:40 +0000 |
---|---|---|
committer | Mirko Vogt <mirko@openwrt.org> | 2009-07-07 18:29:40 +0000 |
commit | 7d5525a5be6aaf5884a7a0bef63e673f180aa3ed (patch) | |
tree | 5d7c86a62bd138525ff5e2b0bdd10c631abea035 | |
parent | a6e3c605bc0e7d96b28758ee642388f10df8f1f4 (diff) | |
download | upstream-7d5525a5be6aaf5884a7a0bef63e673f180aa3ed.tar.gz upstream-7d5525a5be6aaf5884a7a0bef63e673f180aa3ed.tar.bz2 upstream-7d5525a5be6aaf5884a7a0bef63e673f180aa3ed.zip |
do not allow overriding the init argument by bootloaders
SVN-Revision: 16738
-rw-r--r-- | target/linux/s3c24xx/patches-2.6.30/150-ignore-init-argument.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.30/150-ignore-init-argument.patch b/target/linux/s3c24xx/patches-2.6.30/150-ignore-init-argument.patch new file mode 100644 index 0000000000..a6edb85140 --- /dev/null +++ b/target/linux/s3c24xx/patches-2.6.30/150-ignore-init-argument.patch @@ -0,0 +1,19 @@ +--- linux-2.6.30.1/init/main.c.orig 2009-07-07 19:35:25.000000000 +0200 ++++ linux-2.6.30.1/init/main.c 2009-07-07 19:35:39.000000000 +0200 +@@ -830,11 +830,11 @@ + * The Bourne shell can be used instead of init if we are + * trying to recover a really broken machine. + */ +- if (execute_command) { +- run_init_process(execute_command); +- printk(KERN_WARNING "Failed to execute %s. Attempting " +- "defaults...\n", execute_command); +- } ++ //if (execute_command) { ++ // run_init_process(execute_command); ++ // printk(KERN_WARNING "Failed to execute %s. Attempting " ++ // "defaults...\n", execute_command); ++ //} + run_init_process("/etc/preinit"); + + panic("No init found. Try passing init= option to kernel."); |