main.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:19k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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. #define __KERNEL_SYSCALLS__
  12. #include <linux/config.h>
  13. #include <linux/proc_fs.h>
  14. #include <linux/devfs_fs_kernel.h>
  15. #include <linux/unistd.h>
  16. #include <linux/string.h>
  17. #include <linux/ctype.h>
  18. #include <linux/delay.h>
  19. #include <linux/utsname.h>
  20. #include <linux/ioport.h>
  21. #include <linux/init.h>
  22. #include <linux/smp_lock.h>
  23. #include <linux/blk.h>
  24. #include <linux/hdreg.h>
  25. #include <linux/iobuf.h>
  26. #include <linux/bootmem.h>
  27. #include <linux/tty.h>
  28. #include <asm/io.h>
  29. #include <asm/bugs.h>
  30. #if defined(CONFIG_ARCH_S390)
  31. #include <asm/s390mach.h>
  32. #include <asm/ccwcache.h>
  33. #endif
  34. #ifdef CONFIG_PCI
  35. #include <linux/pci.h>
  36. #endif
  37. #ifdef CONFIG_DIO
  38. #include <linux/dio.h>
  39. #endif
  40. #ifdef CONFIG_ZORRO
  41. #include <linux/zorro.h>
  42. #endif
  43. #ifdef CONFIG_MTRR
  44. #  include <asm/mtrr.h>
  45. #endif
  46. #ifdef CONFIG_NUBUS
  47. #include <linux/nubus.h>
  48. #endif
  49. #ifdef CONFIG_ISAPNP
  50. #include <linux/isapnp.h>
  51. #endif
  52. #ifdef CONFIG_IRDA
  53. extern int irda_proto_init(void);
  54. extern int irda_device_init(void);
  55. #endif
  56. #ifdef CONFIG_X86_LOCAL_APIC
  57. #include <asm/smp.h>
  58. #endif
  59. /*
  60.  * Versions of gcc older than that listed below may actually compile
  61.  * and link okay, but the end product can have subtle run time bugs.
  62.  * To avoid associated bogus bug reports, we flatly refuse to compile
  63.  * with a gcc that is known to be too old from the very beginning.
  64.  */
  65. #if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 91)
  66. #error Sorry, your GCC is too old. It builds incorrect kernels.
  67. #endif
  68. extern char _stext, _etext;
  69. extern char *linux_banner;
  70. static int init(void *);
  71. extern void init_IRQ(void);
  72. extern void init_modules(void);
  73. extern void sock_init(void);
  74. extern void fork_init(unsigned long);
  75. extern void mca_init(void);
  76. extern void sbus_init(void);
  77. extern void ppc_init(void);
  78. extern void sysctl_init(void);
  79. extern void signals_init(void);
  80. extern int init_pcmcia_ds(void);
  81. extern void free_initmem(void);
  82. #ifdef CONFIG_TC
  83. extern void tc_init(void);
  84. #endif
  85. extern void ecard_init(void);
  86. #if defined(CONFIG_SYSVIPC)
  87. extern void ipc_init(void);
  88. #endif
  89. #ifdef CONFIG_PERFMON
  90. extern void perfmon_init(void);
  91. #endif
  92. /*
  93.  * Boot command-line arguments
  94.  */
  95. #define MAX_INIT_ARGS 8
  96. #define MAX_INIT_ENVS 8
  97. extern void time_init(void);
  98. extern void softirq_init(void);
  99. int rows, cols;
  100. #ifdef CONFIG_BLK_DEV_INITRD
  101. unsigned int real_root_dev; /* do_proc_dointvec cannot handle kdev_t */
  102. #endif
  103. int root_mountflags = MS_RDONLY;
  104. char *execute_command;
  105. char root_device_name[64];
  106. static char * argv_init[MAX_INIT_ARGS+2] = { "init", NULL, };
  107. static char * envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, };
  108. static int __init profile_setup(char *str)
  109. {
  110.     int par;
  111.     if (get_option(&str,&par)) prof_shift = par;
  112. return 1;
  113. }
  114. __setup("profile=", profile_setup);
  115. static struct dev_name_struct {
  116. const char *name;
  117. const int num;
  118. } root_dev_names[] __initdata = {
  119. { "nfs",     0x00ff },
  120. { "hda",     0x0300 },
  121. { "hdb",     0x0340 },
  122. { "loop",    0x0700 },
  123. { "hdc",     0x1600 },
  124. { "hdd",     0x1640 },
  125. { "hde",     0x2100 },
  126. { "hdf",     0x2140 },
  127. { "hdg",     0x2200 },
  128. { "hdh",     0x2240 },
  129. { "hdi",     0x3800 },
  130. { "hdj",     0x3840 },
  131. { "hdk",     0x3900 },
  132. { "hdl",     0x3940 },
  133. { "hdm",     0x5800 },
  134. { "hdn",     0x5840 },
  135. { "hdo",     0x5900 },
  136. { "hdp",     0x5940 },
  137. { "hdq",     0x5A00 },
  138. { "hdr",     0x5A40 },
  139. { "hds",     0x5B00 },
  140. { "hdt",     0x5B40 },
  141. { "sda",     0x0800 },
  142. { "sdb",     0x0810 },
  143. { "sdc",     0x0820 },
  144. { "sdd",     0x0830 },
  145. { "sde",     0x0840 },
  146. { "sdf",     0x0850 },
  147. { "sdg",     0x0860 },
  148. { "sdh",     0x0870 },
  149. { "sdi",     0x0880 },
  150. { "sdj",     0x0890 },
  151. { "sdk",     0x08a0 },
  152. { "sdl",     0x08b0 },
  153. { "sdm",     0x08c0 },
  154. { "sdn",     0x08d0 },
  155. { "sdo",     0x08e0 },
  156. { "sdp",     0x08f0 },
  157. { "ada",     0x1c00 },
  158. { "adb",     0x1c10 },
  159. { "adc",     0x1c20 },
  160. { "add",     0x1c30 },
  161. { "ade",     0x1c40 },
  162. { "fd",      0x0200 },
  163. { "md",      0x0900 },      
  164. { "xda",     0x0d00 },
  165. { "xdb",     0x0d40 },
  166. { "ram",     0x0100 },
  167. { "scd",     0x0b00 },
  168. { "mcd",     0x1700 },
  169. { "cdu535",  0x1800 },
  170. { "sonycd",  0x1800 },
  171. { "aztcd",   0x1d00 },
  172. { "cm206cd", 0x2000 },
  173. { "gscd",    0x1000 },
  174. { "sbpcd",   0x1900 },
  175. { "eda",     0x2400 },
  176. { "edb",     0x2440 },
  177. { "pda", 0x2d00 },
  178. { "pdb", 0x2d10 },
  179. { "pdc", 0x2d20 },
  180. { "pdd", 0x2d30 },
  181. { "pcd", 0x2e00 },
  182. { "pf", 0x2f00 },
  183. { "apblock", APBLOCK_MAJOR << 8},
  184. { "ddv", DDV_MAJOR << 8},
  185. { "jsfd",    JSFD_MAJOR << 8},
  186. #if defined(CONFIG_ARCH_S390)
  187. { "dasda", (DASD_MAJOR << MINORBITS) },
  188. { "dasdb", (DASD_MAJOR << MINORBITS) + (1 << 2) },
  189. { "dasdc", (DASD_MAJOR << MINORBITS) + (2 << 2) },
  190. { "dasdd", (DASD_MAJOR << MINORBITS) + (3 << 2) },
  191. { "dasde", (DASD_MAJOR << MINORBITS) + (4 << 2) },
  192. { "dasdf", (DASD_MAJOR << MINORBITS) + (5 << 2) },
  193. { "dasdg", (DASD_MAJOR << MINORBITS) + (6 << 2) },
  194. { "dasdh", (DASD_MAJOR << MINORBITS) + (7 << 2) },
  195. #endif
  196. #if defined(CONFIG_BLK_CPQ_DA) || defined(CONFIG_BLK_CPQ_DA_MODULE)
  197. { "ida/c0d0p",0x4800 },
  198. { "ida/c0d1p",0x4810 },
  199. { "ida/c0d2p",0x4820 },
  200. { "ida/c0d3p",0x4830 },
  201. { "ida/c0d4p",0x4840 },
  202. { "ida/c0d5p",0x4850 },
  203. { "ida/c0d6p",0x4860 },
  204. { "ida/c0d7p",0x4870 },
  205. { "ida/c0d8p",0x4880 },
  206. { "ida/c0d9p",0x4890 },
  207. { "ida/c0d10p",0x48A0 },
  208. { "ida/c0d11p",0x48B0 },
  209. { "ida/c0d12p",0x48C0 },
  210. { "ida/c0d13p",0x48D0 },
  211. { "ida/c0d14p",0x48E0 },
  212. { "ida/c0d15p",0x48F0 },
  213. #endif
  214. #if defined(CONFIG_BLK_CPQ_CISS_DA) || defined(CONFIG_BLK_CPQ_CISS_DA_MODULE)
  215. { "cciss/c0d0p",0x6800 },
  216. { "cciss/c0d1p",0x6810 },
  217. { "cciss/c0d2p",0x6820 },
  218. { "cciss/c0d3p",0x6830 },
  219. { "cciss/c0d4p",0x6840 },
  220. { "cciss/c0d5p",0x6850 },
  221. { "cciss/c0d6p",0x6860 },
  222. { "cciss/c0d7p",0x6870 },
  223. { "cciss/c0d8p",0x6880 },
  224. { "cciss/c0d9p",0x6890 },
  225. { "cciss/c0d10p",0x68A0 },
  226. { "cciss/c0d11p",0x68B0 },
  227. { "cciss/c0d12p",0x68C0 },
  228. { "cciss/c0d13p",0x68D0 },
  229. { "cciss/c0d14p",0x68E0 },
  230. { "cciss/c0d15p",0x68F0 },
  231. #endif
  232. { "nftla", 0x5d00 },
  233. { "nftlb", 0x5d10 },
  234. { "nftlc", 0x5d20 },
  235. { "nftld", 0x5d30 },
  236. { "ftla", 0x2c00 },
  237. { "ftlb", 0x2c08 },
  238. { "ftlc", 0x2c10 },
  239. { "ftld", 0x2c18 },
  240. { "mtdblock", 0x1f00 },
  241. { NULL, 0 }
  242. };
  243. kdev_t __init name_to_kdev_t(char *line)
  244. {
  245. int base = 0;
  246. if (strncmp(line,"/dev/",5) == 0) {
  247. struct dev_name_struct *dev = root_dev_names;
  248. line += 5;
  249. do {
  250. int len = strlen(dev->name);
  251. if (strncmp(line,dev->name,len) == 0) {
  252. line += len;
  253. base = dev->num;
  254. break;
  255. }
  256. dev++;
  257. } while (dev->name);
  258. }
  259. return to_kdev_t(base + simple_strtoul(line,NULL,base?10:16));
  260. }
  261. static int __init root_dev_setup(char *line)
  262. {
  263. int i;
  264. char ch;
  265. ROOT_DEV = name_to_kdev_t(line);
  266. memset (root_device_name, 0, sizeof root_device_name);
  267. if (strncmp (line, "/dev/", 5) == 0) line += 5;
  268. for (i = 0; i < sizeof root_device_name - 1; ++i)
  269. {
  270.     ch = line[i];
  271.     if ( isspace (ch) || (ch == ',') || (ch == '') ) break;
  272.     root_device_name[i] = ch;
  273. }
  274. return 1;
  275. }
  276. __setup("root=", root_dev_setup);
  277. static int __init checksetup(char *line)
  278. {
  279. struct kernel_param *p;
  280. p = &__setup_start;
  281. do {
  282. int n = strlen(p->str);
  283. if (!strncmp(line,p->str,n)) {
  284. if (p->setup_func(line+n))
  285. return 1;
  286. }
  287. p++;
  288. } while (p < &__setup_end);
  289. return 0;
  290. }
  291. /* this should be approx 2 Bo*oMips to start (note initial shift), and will
  292.    still work even if initially too large, it will just take slightly longer */
  293. unsigned long loops_per_jiffy = (1<<12);
  294. /* This is the number of bits of precision for the loops_per_jiffy.  Each
  295.    bit takes on average 1.5/HZ seconds.  This (like the original) is a little
  296.    better than 1% */
  297. #define LPS_PREC 8
  298. void __init calibrate_delay(void)
  299. {
  300. unsigned long ticks, loopbit;
  301. int lps_precision = LPS_PREC;
  302. loops_per_jiffy = (1<<12);
  303. printk("Calibrating delay loop... ");
  304. while (loops_per_jiffy <<= 1) {
  305. /* wait for "start of" clock tick */
  306. ticks = jiffies;
  307. while (ticks == jiffies)
  308. /* nothing */;
  309. /* Go .. */
  310. ticks = jiffies;
  311. __delay(loops_per_jiffy);
  312. ticks = jiffies - ticks;
  313. if (ticks)
  314. break;
  315. }
  316. /* Do a binary approximation to get loops_per_jiffy set to equal one clock
  317.    (up to lps_precision bits) */
  318. loops_per_jiffy >>= 1;
  319. loopbit = loops_per_jiffy;
  320. while ( lps_precision-- && (loopbit >>= 1) ) {
  321. loops_per_jiffy |= loopbit;
  322. ticks = jiffies;
  323. while (ticks == jiffies);
  324. ticks = jiffies;
  325. __delay(loops_per_jiffy);
  326. if (jiffies != ticks) /* longer than 1 tick */
  327. loops_per_jiffy &= ~loopbit;
  328. }
  329. /* Round the value and print it */
  330. printk("%lu.%02lu BogoMIPSn",
  331. loops_per_jiffy/(500000/HZ),
  332. (loops_per_jiffy/(5000/HZ)) % 100);
  333. }
  334. static int __init readonly(char *str)
  335. {
  336. if (*str)
  337. return 0;
  338. root_mountflags |= MS_RDONLY;
  339. return 1;
  340. }
  341. static int __init readwrite(char *str)
  342. {
  343. if (*str)
  344. return 0;
  345. root_mountflags &= ~MS_RDONLY;
  346. return 1;
  347. }
  348. static int __init debug_kernel(char *str)
  349. {
  350. if (*str)
  351. return 0;
  352. console_loglevel = 10;
  353. return 1;
  354. }
  355. static int __init quiet_kernel(char *str)
  356. {
  357. if (*str)
  358. return 0;
  359. console_loglevel = 4;
  360. return 1;
  361. }
  362. __setup("ro", readonly);
  363. __setup("rw", readwrite);
  364. __setup("debug", debug_kernel);
  365. __setup("quiet", quiet_kernel);
  366. /*
  367.  * This is a simple kernel command line parsing function: it parses
  368.  * the command line, and fills in the arguments/environment to init
  369.  * as appropriate. Any cmd-line option is taken to be an environment
  370.  * variable if it contains the character '='.
  371.  *
  372.  * This routine also checks for options meant for the kernel.
  373.  * These options are not given to init - they are for internal kernel use only.
  374.  */
  375. static void __init parse_options(char *line)
  376. {
  377. char *next,*quote;
  378. int args, envs;
  379. if (!*line)
  380. return;
  381. args = 0;
  382. envs = 1; /* TERM is set to 'linux' by default */
  383. next = line;
  384. while ((line = next) != NULL) {
  385.                 quote = strchr(line,'"');
  386.                 next = strchr(line, ' ');
  387.                 while (next != NULL && quote != NULL && quote < next) {
  388.                         /* we found a left quote before the next blank
  389.                          * now we have to find the matching right quote
  390.                          */
  391.                         next = strchr(quote+1, '"');
  392.                         if (next != NULL) {
  393.                                 quote = strchr(next+1, '"');
  394.                                 next = strchr(next+1, ' ');
  395.                         }
  396.                 }
  397.                 if (next != NULL)
  398.                         *next++ = 0;
  399. if (!strncmp(line,"init=",5)) {
  400. line += 5;
  401. execute_command = line;
  402. /* In case LILO is going to boot us with default command line,
  403.  * it prepends "auto" before the whole cmdline which makes
  404.  * the shell think it should execute a script with such name.
  405.  * So we ignore all arguments entered _before_ init=... [MJ]
  406.  */
  407. args = 0;
  408. continue;
  409. }
  410. if (checksetup(line))
  411. continue;
  412. /*
  413.  * Then check if it's an environment variable or
  414.  * an option.
  415.  */
  416. if (strchr(line,'=')) {
  417. if (envs >= MAX_INIT_ENVS)
  418. break;
  419. envp_init[++envs] = line;
  420. } else {
  421. if (args >= MAX_INIT_ARGS)
  422. break;
  423. if (*line)
  424. argv_init[++args] = line;
  425. }
  426. }
  427. argv_init[args+1] = NULL;
  428. envp_init[envs+1] = NULL;
  429. }
  430. extern void setup_arch(char **);
  431. extern void cpu_idle(void);
  432. unsigned long wait_init_idle;
  433. #ifndef CONFIG_SMP
  434. #ifdef CONFIG_X86_LOCAL_APIC
  435. static void __init smp_init(void)
  436. {
  437. APIC_init_uniprocessor();
  438. }
  439. #else
  440. #define smp_init() do { } while (0)
  441. #endif
  442. #else
  443. /* Called by boot processor to activate the rest. */
  444. static void __init smp_init(void)
  445. {
  446. /* Get other processors into their bootup holding patterns. */
  447. smp_boot_cpus();
  448. wait_init_idle = cpu_online_map;
  449. clear_bit(current->processor, &wait_init_idle); /* Don't wait on me! */
  450. smp_threads_ready=1;
  451. smp_commence();
  452. /* Wait for the other cpus to set up their idle processes */
  453. printk("Waiting on wait_init_idle (map = 0x%lx)n", wait_init_idle);
  454. while (wait_init_idle) {
  455. cpu_relax();
  456. barrier();
  457. }
  458. printk("All processors have done init_idlen");
  459. }
  460. #endif
  461. /*
  462.  * We need to finalize in a non-__init function or else race conditions
  463.  * between the root thread and the init thread may cause start_kernel to
  464.  * be reaped by free_initmem before the root thread has proceeded to
  465.  * cpu_idle.
  466.  */
  467. static void rest_init(void)
  468. {
  469. kernel_thread(init, NULL, CLONE_FS | CLONE_FILES | CLONE_SIGNAL);
  470. unlock_kernel();
  471. current->need_resched = 1;
  472.   cpu_idle();
  473. /*
  474.  * Activate the first processor.
  475.  */
  476. asmlinkage void __init start_kernel(void)
  477. {
  478. char * command_line;
  479. unsigned long mempages;
  480. extern char saved_command_line[];
  481. /*
  482.  * Interrupts are still disabled. Do necessary setups, then
  483.  * enable them
  484.  */
  485. lock_kernel();
  486. printk(linux_banner);
  487. setup_arch(&command_line);
  488. printk("Kernel command line: %sn", saved_command_line);
  489. parse_options(command_line);
  490. trap_init();
  491. init_IRQ();
  492. sched_init();
  493. softirq_init();
  494. time_init();
  495. /*
  496.  * HACK ALERT! This is early. We're enabling the console before
  497.  * we've done PCI setups etc, and console_init() must be aware of
  498.  * this. But we do want output early, in case something goes wrong.
  499.  */
  500. console_init();
  501. #ifdef CONFIG_MODULES
  502. init_modules();
  503. #endif
  504. if (prof_shift) {
  505. unsigned int size;
  506. /* only text is profiled */
  507. prof_len = (unsigned long) &_etext - (unsigned long) &_stext;
  508. prof_len >>= prof_shift;
  509. size = prof_len * sizeof(unsigned int) + PAGE_SIZE-1;
  510. prof_buffer = (unsigned int *) alloc_bootmem(size);
  511. }
  512. kmem_cache_init();
  513. sti();
  514. calibrate_delay();
  515. #ifdef CONFIG_BLK_DEV_INITRD
  516. if (initrd_start && !initrd_below_start_ok &&
  517. initrd_start < min_low_pfn << PAGE_SHIFT) {
  518. printk(KERN_CRIT "initrd overwritten (0x%08lx < 0x%08lx) - "
  519.     "disabling it.n",initrd_start,min_low_pfn << PAGE_SHIFT);
  520. initrd_start = 0;
  521. }
  522. #endif
  523. mem_init();
  524. kmem_cache_sizes_init();
  525. pgtable_cache_init();
  526. #ifdef CONFIG_PERFMON
  527. perfmon_init();
  528. #endif
  529. mempages = num_physpages;
  530. fork_init(mempages);
  531. proc_caches_init();
  532. vfs_caches_init(mempages);
  533. buffer_init(mempages);
  534. page_cache_init(mempages);
  535. #if defined(CONFIG_ARCH_S390)
  536. ccwcache_init();
  537. #endif
  538. signals_init();
  539. #ifdef CONFIG_PROC_FS
  540. proc_root_init();
  541. #endif
  542. #if defined(CONFIG_SYSVIPC)
  543. ipc_init();
  544. #endif
  545. check_bugs();
  546. printk("POSIX conformance testing by UNIFIXn");
  547. /* 
  548.  * We count on the initial thread going ok 
  549.  * Like idlers init is an unlocked kernel thread, which will
  550.  * make syscalls (and thus be locked).
  551.  */
  552. smp_init();
  553. rest_init();
  554. }
  555. #ifdef CONFIG_BLK_DEV_INITRD
  556. static int do_linuxrc(void * shell)
  557. {
  558. static char *argv[] = { "linuxrc", NULL, };
  559. close(0);close(1);close(2);
  560. setsid();
  561. (void) open("/dev/console",O_RDWR,0);
  562. (void) dup(0);
  563. (void) dup(0);
  564. return execve(shell, argv, envp_init);
  565. }
  566. #endif
  567. struct task_struct *child_reaper = &init_task;
  568. static void __init do_initcalls(void)
  569. {
  570. initcall_t *call;
  571. call = &__initcall_start;
  572. do {
  573. (*call)();
  574. call++;
  575. } while (call < &__initcall_end);
  576. /* Make sure there is no pending stuff from the initcall sequence */
  577. flush_scheduled_tasks();
  578. }
  579. /*
  580.  * Ok, the machine is now initialized. None of the devices
  581.  * have been touched yet, but the CPU subsystem is up and
  582.  * running, and memory and process management works.
  583.  *
  584.  * Now we can finally start doing some real work..
  585.  */
  586. static void __init do_basic_setup(void)
  587. {
  588. /*
  589.  * Tell the world that we're going to be the grim
  590.  * reaper of innocent orphaned children.
  591.  *
  592.  * We don't want people to have to make incorrect
  593.  * assumptions about where in the task array this
  594.  * can be found.
  595.  */
  596. child_reaper = current;
  597. #if defined(CONFIG_MTRR) /* Do this after SMP initialization */
  598. /*
  599.  * We should probably create some architecture-dependent "fixup after
  600.  * everything is up" style function where this would belong better
  601.  * than in init/main.c..
  602.  */
  603. mtrr_init();
  604. #endif
  605. #ifdef CONFIG_SYSCTL
  606. sysctl_init();
  607. #endif
  608. /*
  609.  * Ok, at this point all CPU's should be initialized, so
  610.  * we can start looking into devices..
  611.  */
  612. #if defined(CONFIG_ARCH_S390)
  613. s390_init_machine_check();
  614. #endif
  615. #ifdef CONFIG_PCI
  616. pci_init();
  617. #endif
  618. #ifdef CONFIG_SBUS
  619. sbus_init();
  620. #endif
  621. #if defined(CONFIG_PPC)
  622. ppc_init();
  623. #endif
  624. #ifdef CONFIG_MCA
  625. mca_init();
  626. #endif
  627. #ifdef CONFIG_ARCH_ACORN
  628. ecard_init();
  629. #endif
  630. #ifdef CONFIG_ZORRO
  631. zorro_init();
  632. #endif
  633. #ifdef CONFIG_DIO
  634. dio_init();
  635. #endif
  636. #ifdef CONFIG_NUBUS
  637. nubus_init();
  638. #endif
  639. #ifdef CONFIG_ISAPNP
  640. isapnp_init();
  641. #endif
  642. #ifdef CONFIG_TC
  643. tc_init();
  644. #endif
  645. /* Networking initialization needs a process context */ 
  646. sock_init();
  647. start_context_thread();
  648. do_initcalls();
  649. #ifdef CONFIG_IRDA
  650. irda_proto_init();
  651. irda_device_init(); /* Must be done after protocol initialization */
  652. #endif
  653. #ifdef CONFIG_PCMCIA
  654. init_pcmcia_ds(); /* Do this last */
  655. #endif
  656. }
  657. extern void rd_load(void);
  658. extern void initrd_load(void);
  659. /*
  660.  * Prepare the namespace - decide what/where to mount, load ramdisks, etc.
  661.  */
  662. static void prepare_namespace(void)
  663. {
  664. #ifdef CONFIG_BLK_DEV_INITRD
  665. int real_root_mountflags = root_mountflags;
  666. if (!initrd_start)
  667. mount_initrd = 0;
  668. if (mount_initrd)
  669. root_mountflags &= ~MS_RDONLY;
  670. real_root_dev = ROOT_DEV;
  671. #endif
  672. #ifdef CONFIG_BLK_DEV_RAM
  673. #ifdef CONFIG_BLK_DEV_INITRD
  674. if (mount_initrd)
  675. initrd_load();
  676. else
  677. #endif
  678. rd_load();
  679. #endif
  680. /* Mount the root filesystem.. */
  681. mount_root();
  682. mount_devfs_fs ();
  683. #ifdef CONFIG_BLK_DEV_INITRD
  684. root_mountflags = real_root_mountflags;
  685. if (mount_initrd && ROOT_DEV != real_root_dev
  686.     && MAJOR(ROOT_DEV) == RAMDISK_MAJOR && MINOR(ROOT_DEV) == 0) {
  687. int error;
  688. int i, pid;
  689. pid = kernel_thread(do_linuxrc, "/linuxrc", SIGCHLD);
  690. if (pid > 0) {
  691. while (pid != wait(&i)) {
  692. current->policy |= SCHED_YIELD;
  693. schedule();
  694. }
  695. }
  696. if (MAJOR(real_root_dev) != RAMDISK_MAJOR
  697.      || MINOR(real_root_dev) != 0) {
  698. error = change_root(real_root_dev,"/initrd");
  699. if (error)
  700. printk(KERN_ERR "Change root to /initrd: "
  701.     "error %dn",error);
  702. }
  703. }
  704. #endif
  705. }
  706. static int init(void * unused)
  707. {
  708. lock_kernel();
  709. do_basic_setup();
  710. prepare_namespace();
  711. /*
  712.  * Ok, we have completed the initial bootup, and
  713.  * we're essentially up and running. Get rid of the
  714.  * initmem segments and start the user-mode stuff..
  715.  */
  716. free_initmem();
  717. unlock_kernel();
  718. if (open("/dev/console", O_RDWR, 0) < 0)
  719. printk("Warning: unable to open an initial console.n");
  720. (void) dup(0);
  721. (void) dup(0);
  722. // The company information is shown here.
  723. printk("=============================================================================n");
  724. printk("#    Nanjing Electric Power Automation Equipment Third Factory Co., Ltd.    #n");
  725. printk("#       Homepage: http://www.njnzsc.com        E-mail: nzscxk@163.com       #n");
  726. printk("#    Tel: (025)84584588-808    Fax: (025)84646396     compiled by J.H.F.    #n");
  727. printk("=============================================================================n");
  728. /*
  729.  * We try each of these until one succeeds.
  730.  *
  731.  * The Bourne shell can be used instead of init if we are 
  732.  * trying to recover a really broken machine.
  733.  */
  734. if (execute_command)
  735. execve(execute_command,argv_init,envp_init);
  736. execve("/sbin/init",argv_init,envp_init);
  737. execve("/etc/init",argv_init,envp_init);
  738. execve("/bin/init",argv_init,envp_init);
  739. execve("/bin/sh",argv_init,envp_init);
  740. panic("No init found.  Try passing init= option to kernel.");
  741. }