4cdcd06e6d7826bf1448204c4d9c1f430b12367e
[safe/jmp/linux-2.6] / init / main.c
1 /*
2  *  linux/init/main.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  *
6  *  GK 2/5/95  -  Changed to support mounting root fs via NFS
7  *  Added initrd & change_root: Werner Almesberger & Hans Lermen, Feb '96
8  *  Moan early if gcc is old, avoiding bogus kernels - Paul Gortmaker, May '96
9  *  Simplified starting of init:  Michael A. Griffith <grif@acm.org> 
10  */
11
12 #include <linux/types.h>
13 #include <linux/module.h>
14 #include <linux/proc_fs.h>
15 #include <linux/kernel.h>
16 #include <linux/syscalls.h>
17 #include <linux/string.h>
18 #include <linux/ctype.h>
19 #include <linux/delay.h>
20 #include <linux/utsname.h>
21 #include <linux/ioport.h>
22 #include <linux/init.h>
23 #include <linux/smp_lock.h>
24 #include <linux/initrd.h>
25 #include <linux/hdreg.h>
26 #include <linux/bootmem.h>
27 #include <linux/tty.h>
28 #include <linux/gfp.h>
29 #include <linux/percpu.h>
30 #include <linux/kmod.h>
31 #include <linux/kernel_stat.h>
32 #include <linux/start_kernel.h>
33 #include <linux/security.h>
34 #include <linux/workqueue.h>
35 #include <linux/profile.h>
36 #include <linux/rcupdate.h>
37 #include <linux/moduleparam.h>
38 #include <linux/kallsyms.h>
39 #include <linux/writeback.h>
40 #include <linux/cpu.h>
41 #include <linux/cpuset.h>
42 #include <linux/efi.h>
43 #include <linux/taskstats_kern.h>
44 #include <linux/delayacct.h>
45 #include <linux/unistd.h>
46 #include <linux/rmap.h>
47 #include <linux/mempolicy.h>
48 #include <linux/key.h>
49 #include <linux/unwind.h>
50 #include <linux/buffer_head.h>
51 #include <linux/debug_locks.h>
52 #include <linux/lockdep.h>
53 #include <linux/utsrelease.h>
54 #include <linux/compile.h>
55
56 #include <asm/io.h>
57 #include <asm/bugs.h>
58 #include <asm/setup.h>
59 #include <asm/sections.h>
60 #include <asm/cacheflush.h>
61
62 #ifdef CONFIG_X86_LOCAL_APIC
63 #include <asm/smp.h>
64 #endif
65
66 /*
67  * This is one of the first .c files built. Error out early if we have compiler
68  * trouble.
69  *
70  * Versions of gcc older than that listed below may actually compile and link
71  * okay, but the end product can have subtle run time bugs.  To avoid associated
72  * bogus bug reports, we flatly refuse to compile with a gcc that is known to be
73  * too old from the very beginning.
74  */
75 #if (__GNUC__ < 3) || (__GNUC__ == 3 && __GNUC_MINOR__ < 2)
76 #error Sorry, your GCC is too old. It builds incorrect kernels.
77 #endif
78
79 #if __GNUC__ == 4 && __GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ == 0
80 #warning gcc-4.1.0 is known to miscompile the kernel.  A different compiler version is recommended.
81 #endif
82
83 static int init(void *);
84
85 extern void init_IRQ(void);
86 extern void fork_init(unsigned long);
87 extern void mca_init(void);
88 extern void sbus_init(void);
89 extern void sysctl_init(void);
90 extern void signals_init(void);
91 extern void pidhash_init(void);
92 extern void pidmap_init(void);
93 extern void prio_tree_init(void);
94 extern void radix_tree_init(void);
95 extern void free_initmem(void);
96 extern void populate_rootfs(void);
97 extern void driver_init(void);
98 extern void prepare_namespace(void);
99 #ifdef  CONFIG_ACPI
100 extern void acpi_early_init(void);
101 #else
102 static inline void acpi_early_init(void) { }
103 #endif
104 #ifndef CONFIG_DEBUG_RODATA
105 static inline void mark_rodata_ro(void) { }
106 #endif
107
108 #ifdef CONFIG_TC
109 extern void tc_init(void);
110 #endif
111
112 enum system_states system_state;
113 EXPORT_SYMBOL(system_state);
114
115 /*
116  * Boot command-line arguments
117  */
118 #define MAX_INIT_ARGS CONFIG_INIT_ENV_ARG_LIMIT
119 #define MAX_INIT_ENVS CONFIG_INIT_ENV_ARG_LIMIT
120
121 extern void time_init(void);
122 /* Default late time init is NULL. archs can override this later. */
123 void (*late_time_init)(void);
124 extern void softirq_init(void);
125
126 /* Untouched command line (eg. for /proc) saved by arch-specific code. */
127 char saved_command_line[COMMAND_LINE_SIZE];
128
129 static char *execute_command;
130 static char *ramdisk_execute_command;
131
132 /* Setup configured maximum number of CPUs to activate */
133 static unsigned int max_cpus = NR_CPUS;
134
135 /*
136  * If set, this is an indication to the drivers that reset the underlying
137  * device before going ahead with the initialization otherwise driver might
138  * rely on the BIOS and skip the reset operation.
139  *
140  * This is useful if kernel is booting in an unreliable environment.
141  * For ex. kdump situaiton where previous kernel has crashed, BIOS has been
142  * skipped and devices will be in unknown state.
143  */
144 unsigned int reset_devices;
145 EXPORT_SYMBOL(reset_devices);
146
147 /*
148  * Setup routine for controlling SMP activation
149  *
150  * Command-line option of "nosmp" or "maxcpus=0" will disable SMP
151  * activation entirely (the MPS table probe still happens, though).
152  *
153  * Command-line option of "maxcpus=<NUM>", where <NUM> is an integer
154  * greater than 0, limits the maximum number of CPUs activated in
155  * SMP mode to <NUM>.
156  */
157 static int __init nosmp(char *str)
158 {
159         max_cpus = 0;
160         return 1;
161 }
162
163 __setup("nosmp", nosmp);
164
165 static int __init maxcpus(char *str)
166 {
167         get_option(&str, &max_cpus);
168         return 1;
169 }
170
171 __setup("maxcpus=", maxcpus);
172
173 static int __init set_reset_devices(char *str)
174 {
175         reset_devices = 1;
176         return 1;
177 }
178
179 __setup("reset_devices", set_reset_devices);
180
181 static char * argv_init[MAX_INIT_ARGS+2] = { "init", NULL, };
182 char * envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, };
183 static const char *panic_later, *panic_param;
184
185 extern struct obs_kernel_param __setup_start[], __setup_end[];
186
187 static int __init obsolete_checksetup(char *line)
188 {
189         struct obs_kernel_param *p;
190         int had_early_param = 0;
191
192         p = __setup_start;
193         do {
194                 int n = strlen(p->str);
195                 if (!strncmp(line, p->str, n)) {
196                         if (p->early) {
197                                 /* Already done in parse_early_param?
198                                  * (Needs exact match on param part).
199                                  * Keep iterating, as we can have early
200                                  * params and __setups of same names 8( */
201                                 if (line[n] == '\0' || line[n] == '=')
202                                         had_early_param = 1;
203                         } else if (!p->setup_func) {
204                                 printk(KERN_WARNING "Parameter %s is obsolete,"
205                                        " ignored\n", p->str);
206                                 return 1;
207                         } else if (p->setup_func(line + n))
208                                 return 1;
209                 }
210                 p++;
211         } while (p < __setup_end);
212
213         return had_early_param;
214 }
215
216 /*
217  * This should be approx 2 Bo*oMips to start (note initial shift), and will
218  * still work even if initially too large, it will just take slightly longer
219  */
220 unsigned long loops_per_jiffy = (1<<12);
221
222 EXPORT_SYMBOL(loops_per_jiffy);
223
224 static int __init debug_kernel(char *str)
225 {
226         if (*str)
227                 return 0;
228         console_loglevel = 10;
229         return 1;
230 }
231
232 static int __init quiet_kernel(char *str)
233 {
234         if (*str)
235                 return 0;
236         console_loglevel = 4;
237         return 1;
238 }
239
240 __setup("debug", debug_kernel);
241 __setup("quiet", quiet_kernel);
242
243 static int __init loglevel(char *str)
244 {
245         get_option(&str, &console_loglevel);
246         return 1;
247 }
248
249 __setup("loglevel=", loglevel);
250
251 /*
252  * Unknown boot options get handed to init, unless they look like
253  * failed parameters
254  */
255 static int __init unknown_bootoption(char *param, char *val)
256 {
257         /* Change NUL term back to "=", to make "param" the whole string. */
258         if (val) {
259                 /* param=val or param="val"? */
260                 if (val == param+strlen(param)+1)
261                         val[-1] = '=';
262                 else if (val == param+strlen(param)+2) {
263                         val[-2] = '=';
264                         memmove(val-1, val, strlen(val)+1);
265                         val--;
266                 } else
267                         BUG();
268         }
269
270         /* Handle obsolete-style parameters */
271         if (obsolete_checksetup(param))
272                 return 0;
273
274         /*
275          * Preemptive maintenance for "why didn't my mispelled command
276          * line work?"
277          */
278         if (strchr(param, '.') && (!val || strchr(param, '.') < val)) {
279                 printk(KERN_ERR "Unknown boot option `%s': ignoring\n", param);
280                 return 0;
281         }
282
283         if (panic_later)
284                 return 0;
285
286         if (val) {
287                 /* Environment option */
288                 unsigned int i;
289                 for (i = 0; envp_init[i]; i++) {
290                         if (i == MAX_INIT_ENVS) {
291                                 panic_later = "Too many boot env vars at `%s'";
292                                 panic_param = param;
293                         }
294                         if (!strncmp(param, envp_init[i], val - param))
295                                 break;
296                 }
297                 envp_init[i] = param;
298         } else {
299                 /* Command line option */
300                 unsigned int i;
301                 for (i = 0; argv_init[i]; i++) {
302                         if (i == MAX_INIT_ARGS) {
303                                 panic_later = "Too many boot init vars at `%s'";
304                                 panic_param = param;
305                         }
306                 }
307                 argv_init[i] = param;
308         }
309         return 0;
310 }
311
312 static int __init init_setup(char *str)
313 {
314         unsigned int i;
315
316         execute_command = str;
317         /*
318          * In case LILO is going to boot us with default command line,
319          * it prepends "auto" before the whole cmdline which makes
320          * the shell think it should execute a script with such name.
321          * So we ignore all arguments entered _before_ init=... [MJ]
322          */
323         for (i = 1; i < MAX_INIT_ARGS; i++)
324                 argv_init[i] = NULL;
325         return 1;
326 }
327 __setup("init=", init_setup);
328
329 static int __init rdinit_setup(char *str)
330 {
331         unsigned int i;
332
333         ramdisk_execute_command = str;
334         /* See "auto" comment in init_setup */
335         for (i = 1; i < MAX_INIT_ARGS; i++)
336                 argv_init[i] = NULL;
337         return 1;
338 }
339 __setup("rdinit=", rdinit_setup);
340
341 #ifndef CONFIG_SMP
342
343 #ifdef CONFIG_X86_LOCAL_APIC
344 static void __init smp_init(void)
345 {
346         APIC_init_uniprocessor();
347 }
348 #else
349 #define smp_init()      do { } while (0)
350 #endif
351
352 static inline void setup_per_cpu_areas(void) { }
353 static inline void smp_prepare_cpus(unsigned int maxcpus) { }
354
355 #else
356
357 #ifdef __GENERIC_PER_CPU
358 unsigned long __per_cpu_offset[NR_CPUS] __read_mostly;
359
360 EXPORT_SYMBOL(__per_cpu_offset);
361
362 static void __init setup_per_cpu_areas(void)
363 {
364         unsigned long size, i;
365         char *ptr;
366         unsigned long nr_possible_cpus = num_possible_cpus();
367
368         /* Copy section for each CPU (we discard the original) */
369         size = ALIGN(__per_cpu_end - __per_cpu_start, SMP_CACHE_BYTES);
370 #ifdef CONFIG_MODULES
371         if (size < PERCPU_ENOUGH_ROOM)
372                 size = PERCPU_ENOUGH_ROOM;
373 #endif
374         ptr = alloc_bootmem(size * nr_possible_cpus);
375
376         for_each_possible_cpu(i) {
377                 __per_cpu_offset[i] = ptr - __per_cpu_start;
378                 memcpy(ptr, __per_cpu_start, __per_cpu_end - __per_cpu_start);
379                 ptr += size;
380         }
381 }
382 #endif /* !__GENERIC_PER_CPU */
383
384 /* Called by boot processor to activate the rest. */
385 static void __init smp_init(void)
386 {
387         unsigned int i;
388
389         /* FIXME: This should be done in userspace --RR */
390         for_each_present_cpu(i) {
391                 if (num_online_cpus() >= max_cpus)
392                         break;
393                 if (!cpu_online(i))
394                         cpu_up(i);
395         }
396
397         /* Any cleanup work */
398         printk(KERN_INFO "Brought up %ld CPUs\n", (long)num_online_cpus());
399         smp_cpus_done(max_cpus);
400 #if 0
401         /* Get other processors into their bootup holding patterns. */
402
403         smp_commence();
404 #endif
405 }
406
407 #endif
408
409 /*
410  * We need to finalize in a non-__init function or else race conditions
411  * between the root thread and the init thread may cause start_kernel to
412  * be reaped by free_initmem before the root thread has proceeded to
413  * cpu_idle.
414  *
415  * gcc-3.4 accidentally inlines this function, so use noinline.
416  */
417
418 static void noinline rest_init(void)
419         __releases(kernel_lock)
420 {
421         kernel_thread(init, NULL, CLONE_FS | CLONE_SIGHAND);
422         numa_default_policy();
423         unlock_kernel();
424
425         /*
426          * The boot idle thread must execute schedule()
427          * at least one to get things moving:
428          */
429         preempt_enable_no_resched();
430         schedule();
431         preempt_disable();
432
433         /* Call into cpu_idle with preempt disabled */
434         cpu_idle();
435
436
437 /* Check for early params. */
438 static int __init do_early_param(char *param, char *val)
439 {
440         struct obs_kernel_param *p;
441
442         for (p = __setup_start; p < __setup_end; p++) {
443                 if (p->early && strcmp(param, p->str) == 0) {
444                         if (p->setup_func(val) != 0)
445                                 printk(KERN_WARNING
446                                        "Malformed early option '%s'\n", param);
447                 }
448         }
449         /* We accept everything at this stage. */
450         return 0;
451 }
452
453 /* Arch code calls this early on, or if not, just before other parsing. */
454 void __init parse_early_param(void)
455 {
456         static __initdata int done = 0;
457         static __initdata char tmp_cmdline[COMMAND_LINE_SIZE];
458
459         if (done)
460                 return;
461
462         /* All fall through to do_early_param. */
463         strlcpy(tmp_cmdline, saved_command_line, COMMAND_LINE_SIZE);
464         parse_args("early options", tmp_cmdline, NULL, 0, do_early_param);
465         done = 1;
466 }
467
468 /*
469  *      Activate the first processor.
470  */
471
472 static void __init boot_cpu_init(void)
473 {
474         int cpu = smp_processor_id();
475         /* Mark the boot cpu "present", "online" etc for SMP and UP case */
476         cpu_set(cpu, cpu_online_map);
477         cpu_set(cpu, cpu_present_map);
478         cpu_set(cpu, cpu_possible_map);
479 }
480
481 void __init __attribute__((weak)) smp_setup_processor_id(void)
482 {
483 }
484
485 asmlinkage void __init start_kernel(void)
486 {
487         char * command_line;
488         extern struct kernel_param __start___param[], __stop___param[];
489
490         smp_setup_processor_id();
491
492         /*
493          * Need to run as early as possible, to initialize the
494          * lockdep hash:
495          */
496         unwind_init();
497         lockdep_init();
498
499         local_irq_disable();
500         early_boot_irqs_off();
501         early_init_irq_lock_class();
502
503 /*
504  * Interrupts are still disabled. Do necessary setups, then
505  * enable them
506  */
507         lock_kernel();
508         boot_cpu_init();
509         page_address_init();
510         printk(KERN_NOTICE);
511         printk(linux_banner, UTS_RELEASE, UTS_VERSION);
512         setup_arch(&command_line);
513         unwind_setup();
514         setup_per_cpu_areas();
515         smp_prepare_boot_cpu(); /* arch-specific boot-cpu hooks */
516
517         /*
518          * Set up the scheduler prior starting any interrupts (such as the
519          * timer interrupt). Full topology setup happens at smp_init()
520          * time - but meanwhile we still have a functioning scheduler.
521          */
522         sched_init();
523         /*
524          * Disable preemption - early bootup scheduling is extremely
525          * fragile until we cpu_idle() for the first time.
526          */
527         preempt_disable();
528         build_all_zonelists();
529         page_alloc_init();
530         printk(KERN_NOTICE "Kernel command line: %s\n", saved_command_line);
531         parse_early_param();
532         parse_args("Booting kernel", command_line, __start___param,
533                    __stop___param - __start___param,
534                    &unknown_bootoption);
535         sort_main_extable();
536         trap_init();
537         rcu_init();
538         init_IRQ();
539         pidhash_init();
540         init_timers();
541         hrtimers_init();
542         softirq_init();
543         timekeeping_init();
544         time_init();
545         profile_init();
546         if (!irqs_disabled())
547                 printk("start_kernel(): bug: interrupts were enabled early\n");
548         early_boot_irqs_on();
549         local_irq_enable();
550
551         /*
552          * HACK ALERT! This is early. We're enabling the console before
553          * we've done PCI setups etc, and console_init() must be aware of
554          * this. But we do want output early, in case something goes wrong.
555          */
556         console_init();
557         if (panic_later)
558                 panic(panic_later, panic_param);
559
560         lockdep_info();
561
562         /*
563          * Need to run this when irqs are enabled, because it wants
564          * to self-test [hard/soft]-irqs on/off lock inversion bugs
565          * too:
566          */
567         locking_selftest();
568
569 #ifdef CONFIG_BLK_DEV_INITRD
570         if (initrd_start && !initrd_below_start_ok &&
571                         initrd_start < min_low_pfn << PAGE_SHIFT) {
572                 printk(KERN_CRIT "initrd overwritten (0x%08lx < 0x%08lx) - "
573                     "disabling it.\n",initrd_start,min_low_pfn << PAGE_SHIFT);
574                 initrd_start = 0;
575         }
576 #endif
577         vfs_caches_init_early();
578         cpuset_init_early();
579         mem_init();
580         kmem_cache_init();
581         setup_per_cpu_pageset();
582         numa_policy_init();
583         if (late_time_init)
584                 late_time_init();
585         calibrate_delay();
586         pidmap_init();
587         pgtable_cache_init();
588         prio_tree_init();
589         anon_vma_init();
590 #ifdef CONFIG_X86
591         if (efi_enabled)
592                 efi_enter_virtual_mode();
593 #endif
594         fork_init(num_physpages);
595         proc_caches_init();
596         buffer_init();
597         unnamed_dev_init();
598         key_init();
599         security_init();
600         vfs_caches_init(num_physpages);
601         radix_tree_init();
602         signals_init();
603         /* rootfs populating might need page-writeback */
604         page_writeback_init();
605 #ifdef CONFIG_PROC_FS
606         proc_root_init();
607 #endif
608         cpuset_init();
609         taskstats_init_early();
610         delayacct_init();
611
612         check_bugs();
613
614         acpi_early_init(); /* before LAPIC and SMP init */
615
616         /* Do the rest non-__init'ed, we're now alive */
617         rest_init();
618 }
619
620 static int __initdata initcall_debug;
621
622 static int __init initcall_debug_setup(char *str)
623 {
624         initcall_debug = 1;
625         return 1;
626 }
627 __setup("initcall_debug", initcall_debug_setup);
628
629 struct task_struct *child_reaper = &init_task;
630
631 extern initcall_t __initcall_start[], __initcall_end[];
632
633 static void __init do_initcalls(void)
634 {
635         initcall_t *call;
636         int count = preempt_count();
637
638         for (call = __initcall_start; call < __initcall_end; call++) {
639                 char *msg = NULL;
640                 char msgbuf[40];
641                 int result;
642
643                 if (initcall_debug) {
644                         printk("Calling initcall 0x%p", *call);
645                         print_fn_descriptor_symbol(": %s()",
646                                         (unsigned long) *call);
647                         printk("\n");
648                 }
649
650                 result = (*call)();
651
652                 if (result && result != -ENODEV && initcall_debug) {
653                         sprintf(msgbuf, "error code %d", result);
654                         msg = msgbuf;
655                 }
656                 if (preempt_count() != count) {
657                         msg = "preemption imbalance";
658                         preempt_count() = count;
659                 }
660                 if (irqs_disabled()) {
661                         msg = "disabled interrupts";
662                         local_irq_enable();
663                 }
664                 if (msg) {
665                         printk(KERN_WARNING "initcall at 0x%p", *call);
666                         print_fn_descriptor_symbol(": %s()",
667                                         (unsigned long) *call);
668                         printk(": returned with %s\n", msg);
669                 }
670         }
671
672         /* Make sure there is no pending stuff from the initcall sequence */
673         flush_scheduled_work();
674 }
675
676 /*
677  * Ok, the machine is now initialized. None of the devices
678  * have been touched yet, but the CPU subsystem is up and
679  * running, and memory and process management works.
680  *
681  * Now we can finally start doing some real work..
682  */
683 static void __init do_basic_setup(void)
684 {
685         /* drivers will send hotplug events */
686         init_workqueues();
687         usermodehelper_init();
688         driver_init();
689
690 #ifdef CONFIG_SYSCTL
691         sysctl_init();
692 #endif
693
694         do_initcalls();
695 }
696
697 static void do_pre_smp_initcalls(void)
698 {
699         extern int spawn_ksoftirqd(void);
700 #ifdef CONFIG_SMP
701         extern int migration_init(void);
702
703         migration_init();
704 #endif
705         spawn_ksoftirqd();
706         spawn_softlockup_task();
707 }
708
709 static void run_init_process(char *init_filename)
710 {
711         argv_init[0] = init_filename;
712         kernel_execve(init_filename, argv_init, envp_init);
713 }
714
715 static int init(void * unused)
716 {
717         lock_kernel();
718         /*
719          * init can run on any cpu.
720          */
721         set_cpus_allowed(current, CPU_MASK_ALL);
722         /*
723          * Tell the world that we're going to be the grim
724          * reaper of innocent orphaned children.
725          *
726          * We don't want people to have to make incorrect
727          * assumptions about where in the task array this
728          * can be found.
729          */
730         child_reaper = current;
731
732         cad_pid = task_pid(current);
733
734         smp_prepare_cpus(max_cpus);
735
736         do_pre_smp_initcalls();
737
738         smp_init();
739         sched_init_smp();
740
741         cpuset_init_smp();
742
743         /*
744          * Do this before initcalls, because some drivers want to access
745          * firmware files.
746          */
747         populate_rootfs();
748
749         do_basic_setup();
750
751         /*
752          * check if there is an early userspace init.  If yes, let it do all
753          * the work
754          */
755
756         if (!ramdisk_execute_command)
757                 ramdisk_execute_command = "/init";
758
759         if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) {
760                 ramdisk_execute_command = NULL;
761                 prepare_namespace();
762         }
763
764         /*
765          * Ok, we have completed the initial bootup, and
766          * we're essentially up and running. Get rid of the
767          * initmem segments and start the user-mode stuff..
768          */
769         free_initmem();
770         unlock_kernel();
771         mark_rodata_ro();
772         system_state = SYSTEM_RUNNING;
773         numa_default_policy();
774
775         if (sys_open((const char __user *) "/dev/console", O_RDWR, 0) < 0)
776                 printk(KERN_WARNING "Warning: unable to open an initial console.\n");
777
778         (void) sys_dup(0);
779         (void) sys_dup(0);
780
781         if (ramdisk_execute_command) {
782                 run_init_process(ramdisk_execute_command);
783                 printk(KERN_WARNING "Failed to execute %s\n",
784                                 ramdisk_execute_command);
785         }
786
787         /*
788          * We try each of these until one succeeds.
789          *
790          * The Bourne shell can be used instead of init if we are 
791          * trying to recover a really broken machine.
792          */
793         if (execute_command) {
794                 run_init_process(execute_command);
795                 printk(KERN_WARNING "Failed to execute %s.  Attempting "
796                                         "defaults...\n", execute_command);
797         }
798         run_init_process("/sbin/init");
799         run_init_process("/etc/init");
800         run_init_process("/bin/init");
801         run_init_process("/bin/sh");
802
803         panic("No init found.  Try passing init= option to kernel.");
804 }