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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 1999,2000 MIPS Technologies, Inc.  All rights reserved.
  4.  *
  5.  * This program is free software; you can distribute it and/or modify it
  6.  * under the terms of the GNU General Public License (Version 2) as
  7.  * published by the Free Software Foundation.
  8.  *
  9.  * This program is distributed in the hope it will be useful, but WITHOUT
  10.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12.  * for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License along
  15.  * with this program; if not, write to the Free Software Foundation, Inc.,
  16.  * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  17.  *
  18.  * Kernel command line creation using the prom monitor (YAMON) argc/argv.
  19.  */
  20. #include <linux/config.h>
  21. #include <linux/init.h>
  22. #include <linux/string.h>
  23. #include <asm/bootinfo.h>
  24. extern int prom_argc;
  25. extern char **prom_argv;
  26. char arcs_cmdline[COMMAND_LINE_SIZE];
  27. char * __init prom_getcmdline(void)
  28. {
  29. return &(arcs_cmdline[0]);
  30. }
  31. void  __init prom_init_cmdline(void)
  32. {
  33. char *cp;
  34. int actr;
  35. actr = 1; /* Always ignore argv[0] */
  36. cp = &(arcs_cmdline[0]);
  37. while(actr < prom_argc) {
  38.         strcpy(cp, prom_argv[actr]);
  39. cp += strlen(prom_argv[actr]);
  40. *cp++ = ' ';
  41. actr++;
  42. }
  43. if (cp != &(arcs_cmdline[0])) /* get rid of trailing space */
  44. --cp;
  45. *cp = '';
  46. }