bootstr_64.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  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. /* WARNING: The boot loader knows that these next three variables come one right
  11. * after another in the .data section. Do not move this stuff into
  12. * the .bss section or it will break things.
  13. */
  14. /* We limit BARG_LEN to 1024 because this is the size of the
  15. * 'barg_out' command line buffer in the SILO bootloader.
  16. */
  17. #define BARG_LEN 1024
  18. struct {
  19. int bootstr_len;
  20. int bootstr_valid;
  21. char bootstr_buf[BARG_LEN];
  22. } bootstr_info = {
  23. .bootstr_len = BARG_LEN,
  24. #ifdef CONFIG_CMDLINE
  25. .bootstr_valid = 1,
  26. .bootstr_buf = CONFIG_CMDLINE,
  27. #endif
  28. };
  29. char * __init
  30. prom_getbootargs(void)
  31. {
  32. /* This check saves us from a panic when bootfd patches args. */
  33. if (bootstr_info.bootstr_valid)
  34. return bootstr_info.bootstr_buf;
  35. prom_getstring(prom_chosen_node, "bootargs",
  36. bootstr_info.bootstr_buf, BARG_LEN);
  37. bootstr_info.bootstr_valid = 1;
  38. return bootstr_info.bootstr_buf;
  39. }