Kconfig 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. config PPC_PREP
  2. bool "PowerPC Reference Platform (PReP) based machines"
  3. depends on 6xx && BROKEN
  4. select MPIC
  5. select PPC_I8259
  6. select PPC_INDIRECT_PCI
  7. select PPC_UDBG_16550
  8. select PPC_NATIVE
  9. default n
  10. config PREP_RESIDUAL
  11. bool "Support for PReP Residual Data"
  12. depends on PPC_PREP
  13. help
  14. Some PReP systems have residual data passed to the kernel by the
  15. firmware. This allows detection of memory size, devices present and
  16. other useful pieces of information. Sometimes this information is
  17. not present or incorrect, in which case it could lead to the machine
  18. behaving incorrectly. If this happens, either disable PREP_RESIDUAL
  19. or pass the 'noresidual' option to the kernel.
  20. If you are running a PReP system, say Y here, otherwise say N.
  21. config PROC_PREPRESIDUAL
  22. bool "Support for reading of PReP Residual Data in /proc"
  23. depends on PREP_RESIDUAL && PROC_FS
  24. help
  25. Enabling this option will create a /proc/residual file which allows
  26. you to get at the residual data on PReP systems. You will need a tool
  27. (lsresidual) to parse it. If you aren't on a PReP system, you don't
  28. want this.