Config.in 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. config BR2_PACKAGE_MEMTEST86
  2. bool "memtest86"
  3. depends on BR2_i386 || BR2_x86_64
  4. help
  5. Memtest86+ is a bootable standalone memory test program.
  6. Buildroot does not support packages with a '+' sign in their
  7. name, which explains why it is named memtest86 and not
  8. memtest86+.
  9. Memtest86+ is a utility designed to test whether your memory
  10. is in working order. It repeatedly writes an enormous amount
  11. of different patterns to all memory locations and reads them
  12. back again and verifies whether the result of the read is the
  13. same as what was written to memory.
  14. Memtest86+ will only work on 32-bit or 64-bit x86 targets. It
  15. boots and autodetects hardware. Refer README.md for boot
  16. options.
  17. It can be loaded and run either directly by a PC BIOS (legacy
  18. or UEFI) or via an intermediate bootloader that supports the
  19. Linux 16-bit, 32-bit, 64-bit, or EFI handover boot protocol.
  20. It can be added to the grub2 boot menu by adding the following
  21. lines to the bottom of grub.cfg
  22. Example for legacy BIOS using the Linux 16-bit boot protocol,
  23. with built-in support for USB keyboards or running on a serial
  24. line:
  25. menuentry "Start Memtest86+ (USB keyboards)" {
  26. linux16 /boot/memtest.bin keyboard=both
  27. }
  28. menuentry "Start Memtest86+ (serial line)" {
  29. linux16 /boot/memtest.bin console=ttyS0,115200
  30. }
  31. Or for UEFI BIOS using the Linux 32-bit or 64-bit boot
  32. protocols, using USB keyboard:
  33. menuentry "Start Memtest86+ (USB keyboards)" {
  34. linux /EFI/BOOT/memtest.efi keyboard=both
  35. }
  36. Other boot loaders will have similar requirements.
  37. http://www.memtest.org