* Added support for up to 2 TB of RAM on X64 CPUs * Added experimental SMT support up to 32 cores (Press F2 to enable at startup) * Added complete detection for memory controllers * Added Motherboard Manufacturer & Model reporting * Added CPU temperature reporting * Added enhanced Fail Safe Mode (Press F1 at startup) * Added support for Intel "Sandy Bridge-E" CPUs * Added support for Intel "Ivy Bridge" CPUs * Added preliminary support for Intel "Haswell" CPUs (Core 4th Gen) * Added preliminary support for Intel "Haswell-ULT" CPUs * Added support for AMD "Kabini" (K16) CPUs * Added support for AMD "Bulldozer" CPUs * Added support for AMD "Trinity" CPUs * Added support for AMD E-/C-/G-/Z- "Bobcat" CPUs * Added support for Intel Atom "Pineview" CPUs * Added support for Intel Atom "Cedar Trail" CPUs * Added SPD detection on most AMD Chipsets * Enforced Coreboot support * Optimized run time for faster memory error detection * Rewriten lots of memory timings detection cod * Corrected bugs, bugs and more bugs (some could remain) - drop memtest86+-5.01-array-size-fix.patch, memtest86+-5.01-compile-fix.patch memtest86+-gcc5.patch: upstream OBS-URL: https://build.opensuse.org/package/show/Base:System/memtest86+?expand=0&rev=34
25 lines
491 B
Plaintext
25 lines
491 B
Plaintext
Index: memtest86+-5.31b/Makefile
|
|
===================================================================
|
|
--- memtest86+-5.31b.orig/Makefile
|
|
+++ memtest86+-5.31b/Makefile
|
|
@@ -8,6 +8,7 @@
|
|
# Path for the floppy disk device
|
|
#
|
|
FDISK=/dev/fd0
|
|
+TARGETDIR=/boot
|
|
|
|
AS=as -32
|
|
CC=gcc
|
|
@@ -75,7 +76,10 @@ iso:
|
|
make all
|
|
./makeiso.sh
|
|
|
|
-install: all
|
|
+install:
|
|
+ install -o root -g root memtest.bin $(DESTDIR)$(TARGETDIR)/
|
|
+
|
|
+install-floppy: all
|
|
dd <memtest.bin >$(FDISK) bs=8192
|
|
|
|
install-precomp:
|