aboutsummaryrefslogtreecommitdiffstats
path: root/tools/autoconf
Commit message (Expand)AuthorAgeFilesLines
* autoconf: another relocatability fix for autom4te, substitute hardcoded prefi...Jo-Philipp Wich2012-01-281-0/+13
* autoconf: make bin/autoconf relocatable as wellJo-Philipp Wich2012-01-201-0/+15
* autoconf: further relocation fixesJo-Philipp Wich2012-01-201-4/+43
* autoconf: make relocatable by searching resources relative to STAGING_DIRJo-Philipp Wich2012-01-202-1/+101
* tools/autoconf: update to version 2.68Alexandros C. Couloumbis2010-12-061-2/+2
* clean up / fix various Host/Clean templates in tools/Felix Fietkau2009-05-081-1/+1
* build system refactoring in preparation for allowing packages to do host-buil...Felix Fietkau2009-02-221-9/+9
* tools: refresh patches for tools lua, mtd-utils, ipkg-utils, squashfs, lzma, ...Hauke Mehrtens2009-02-211-7/+5
* Do not try to build autoconf emacs library, as it can fail on some systems li...Florian Fainelli2008-09-091-0/+24
* fix autoconf compilation (#3956)Felix Fietkau2008-09-081-4/+3
* add autoconf (fixes opkg build issues)Felix Fietkau2008-08-271-0/+38
} /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
--- a/init/main.c
+++ b/init/main.c
@@ -835,7 +835,8 @@ static int __ref kernel_init(void *unuse
 		printk(KERN_WARNING "Failed to execute %s.  Attempting "
 					"defaults...\n", execute_command);
 	}
-	if (!run_init_process("/sbin/init") ||
+	if (!run_init_process("/etc/preinit") ||
+	    !run_init_process("/sbin/init") ||
 	    !run_init_process("/etc/init") ||
 	    !run_init_process("/bin/init") ||
 	    !run_init_process("/bin/sh"))