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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: bootstr.c,v 1.6 1999/08/31 06:55:01 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.  * Copyright(C) 1996,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  6.  */
  7. #include <linux/string.h>
  8. #include <linux/init.h>
  9. #include <asm/oplib.h>
  10. #define BARG_LEN  256
  11. int bootstr_len = BARG_LEN;
  12. static int bootstr_valid = 0;
  13. static char bootstr_buf[BARG_LEN] = { 0 };
  14. char * __init
  15. prom_getbootargs(void)
  16. {
  17. /* This check saves us from a panic when bootfd patches args. */
  18. if (bootstr_valid) return bootstr_buf;
  19. prom_getstring(prom_chosen_node, "bootargs", bootstr_buf, BARG_LEN);
  20. bootstr_valid = 1;
  21. return bootstr_buf;
  22. }