* 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
72 lines
2.0 KiB
RPMSpec
72 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package memtest86+
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: memtest86+
|
|
Version: 5.31b
|
|
Release: 0
|
|
Summary: Memory Testing Image for x86 Architecture
|
|
License: BSD-3-Clause
|
|
Group: System/Boot
|
|
URL: https://www.memtest.org
|
|
Source: https://www.memtest.org/download/%{version}/memtest86+-%{version}.tar.gz
|
|
Patch0: fix-destdir
|
|
Patch1: memtest86+-5.01-no-optimization.patch
|
|
#!BuildIgnore: gcc-PIE
|
|
Requires(pre): /sbin/update-bootloader
|
|
Requires(pre): perl
|
|
Provides: lilo:/boot/memtest.bin
|
|
Obsoletes: memtest86 <= 3.2
|
|
Provides: memtest86 > 3.2
|
|
ExclusiveArch: %{ix86} x86_64
|
|
%ifarch x86_64
|
|
BuildRequires: glibc-devel-32bit
|
|
%endif
|
|
|
|
%description
|
|
Memtest86 is an image that can be booted instead of a real OS. Once booted,
|
|
it can be used to test the computer's memory.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
|
|
%build
|
|
# dependencies are broken for the package and it should not be built in parallel
|
|
make
|
|
|
|
%install
|
|
install -Dpm 0644 memtest.bin \
|
|
%{buildroot}/boot/memtest.bin
|
|
|
|
%post
|
|
if [ "$YAST_IS_RUNNING" != instsys -a $1 = 1 -a \
|
|
-x /sbin/update-bootloader ]; then
|
|
/sbin/update-bootloader --add --image /boot/memtest.bin --name "Memory Test (memtest86+)"
|
|
fi
|
|
true
|
|
|
|
%postun
|
|
test -x /sbin/update-bootloader && /sbin/update-bootloader --remove --force --image /boot/memtest.bin || true
|
|
|
|
%files
|
|
/boot/memtest.bin
|
|
%doc README* changelog FAQ
|
|
|
|
%changelog
|