mirror of
https://git.freebsd.org/ports.git
synced 2025-05-05 07:57:38 -04:00
- 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) Also set GCC_USE=4.8 because it did not compile with GCC 5+. There seems to be a patch for this problem which will be tested later: https://build.opensuse.org/package/view_file/Base:System/memtest86+/memtest86+-gcc5.patch?expand=1 PR: 210293 Submitted by: takefu@airport.fm Reviewed by: Andriy Gapon <avg@FreeBSD.org> (maintainer) Approved by: pi (mentor)
46 lines
1.6 KiB
Text
46 lines
1.6 KiB
Text
--- Makefile.orig 2013-08-10 02:01:58 UTC
|
|
+++ Makefile
|
|
@@ -21,21 +21,20 @@ OBJS= head.o reloc.o main.o test.o init.
|
|
|
|
|
|
all: clean memtest.bin memtest
|
|
- scp memtest.bin root@192.168.0.12:/srv/tftp/mt86plus
|
|
|
|
# Link it statically once so I know I don't have undefined
|
|
# symbols and then link it dynamically so I have full
|
|
# relocation information
|
|
memtest_shared: $(OBJS) memtest_shared.lds Makefile
|
|
- $(LD) --warn-constructors --warn-common -static -T memtest_shared.lds \
|
|
+ $(LD) --warn-constructors --warn-common -static --oformat elf32-i386-freebsd -T memtest_shared.lds \
|
|
-o $@ $(OBJS) && \
|
|
- $(LD) -shared -Bsymbolic -T memtest_shared.lds -o $@ $(OBJS)
|
|
+ $(LD) -shared -Bsymbolic --oformat elf32-i386-freebsd -T memtest_shared.lds -o $@ $(OBJS)
|
|
|
|
memtest_shared.bin: memtest_shared
|
|
objcopy -O binary $< memtest_shared.bin
|
|
|
|
memtest: memtest_shared.bin memtest.lds
|
|
- $(LD) -s -T memtest.lds -b binary memtest_shared.bin -o $@
|
|
+ $(LD) -s --oformat elf32-i386-freebsd -T memtest.lds -b binary memtest_shared.bin -o $@
|
|
|
|
head.s: head.S config.h defs.h test.h
|
|
$(CC) -E -traditional $< -o $@
|
|
@@ -47,7 +46,7 @@ setup.s: setup.S config.h defs.h
|
|
$(CC) -E -traditional $< -o $@
|
|
|
|
memtest.bin: memtest_shared.bin bootsect.o setup.o memtest.bin.lds
|
|
- $(LD) -T memtest.bin.lds bootsect.o setup.o -b binary \
|
|
+ $(LD) --oformat elf32-i386-freebsd -T memtest.bin.lds bootsect.o setup.o -b binary \
|
|
memtest_shared.bin -o memtest.bin
|
|
|
|
reloc.o: reloc.c
|
|
@@ -67,8 +66,7 @@ clean:
|
|
rm -f *.o *.s *.iso memtest.bin memtest memtest_shared \
|
|
memtest_shared.bin memtest.iso
|
|
|
|
-iso:
|
|
- make all
|
|
+iso: all
|
|
./makeiso.sh
|
|
|
|
install: all
|