bootstr.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: bootstr.c,v 1.20 2000/02/08 20:24:23 davem Exp $
  2.  * bootstr.c:  Boot string/argument acquisition from the PROM.
  3.  *
  4.  * Copyright(C) 1995 David S. Miller (davem@caip.rutgers.edu)
  5.  */
  6. #include <linux/string.h>
  7. #include <asm/oplib.h>
  8. #include <asm/sun4prom.h>
  9. #include <linux/init.h>
  10. #define BARG_LEN  256
  11. static char barg_buf[BARG_LEN] = { 0 };
  12. static char fetched __initdata = 0;
  13. extern linux_sun4_romvec *sun4_romvec;
  14. char * __init
  15. prom_getbootargs(void)
  16. {
  17. int iter;
  18. char *cp, *arg;
  19. /* This check saves us from a panic when bootfd patches args. */
  20. if (fetched) {
  21. return barg_buf;
  22. }
  23. switch(prom_vers) {
  24. case PROM_V0:
  25. case PROM_SUN4:
  26. cp = barg_buf;
  27. /* Start from 1 and go over fd(0,0,0)kernel */
  28. for(iter = 1; iter < 8; iter++) {
  29. arg = (*(romvec->pv_v0bootargs))->argv[iter];
  30. if(arg == 0) break;
  31. while(*arg != 0) {
  32. /* Leave place for space and null. */
  33. if(cp >= barg_buf + BARG_LEN-2){
  34. /* We might issue a warning here. */
  35. break;
  36. }
  37. *cp++ = *arg++;
  38. }
  39. *cp++ = ' ';
  40. }
  41. *cp = 0;
  42. break;
  43. case PROM_V2:
  44. case PROM_V3:
  45. /*
  46.  * V3 PROM cannot supply as with more than 128 bytes
  47.  * of an argument. But a smart bootstrap loader can.
  48.  */
  49. strncpy(barg_buf, *romvec->pv_v2bootargs.bootargs, BARG_LEN-1);
  50. break;
  51. default:
  52. break;
  53. }
  54. fetched = 1;
  55. return barg_buf;
  56. }