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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * init.c: PROM library initialisation code.
  3.  *
  4.  * Copyright (C) 1998 Gleb Raiko & Vladimir Roganov 
  5.  */
  6. #include <linux/init.h>
  7. #include <asm/addrspace.h>
  8. #include <asm/bootinfo.h>
  9. char arcs_cmdline[CL_SIZE];
  10. const char *get_system_type(void)
  11. {
  12. /* Should probably return one of "BT23-201", "BT23-202" */
  13. return "Baget";
  14. }
  15. void __init prom_init(unsigned int mem_upper)
  16. {
  17. mem_upper = PHYSADDR(mem_upper);
  18. mips_machgroup  = MACH_GROUP_UNKNOWN;
  19. mips_machtype   = MACH_UNKNOWN;
  20. arcs_cmdline[0] = 0;
  21. vac_memory_upper = mem_upper;
  22. add_memory_region(0, mem_upper, BOOT_MEM_RAM);
  23. }
  24. void prom_free_prom_memory (void)
  25. {
  26. }