summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--resources/memtest86plus/patch/COPYING (renamed from resources/memtest86/patch/COPYING)0
-rw-r--r--resources/memtest86plus/patch/Makefile (renamed from resources/memtest86/patch/Makefile)0
-rw-r--r--resources/memtest86plus/patch/config.h (renamed from resources/memtest86/patch/config.h)0
-rwxr-xr-xresources/scripts/helpers/build/module/memtest86plus2
-rwxr-xr-xresources/scripts/helpers/download/memtest86plus10
5 files changed, 8 insertions, 4 deletions
diff --git a/resources/memtest86/patch/COPYING b/resources/memtest86plus/patch/COPYING
index b3d325f..b3d325f 100644
--- a/resources/memtest86/patch/COPYING
+++ b/resources/memtest86plus/patch/COPYING
diff --git a/resources/memtest86/patch/Makefile b/resources/memtest86plus/patch/Makefile
index 1a187b6..1a187b6 100644
--- a/resources/memtest86/patch/Makefile
+++ b/resources/memtest86plus/patch/Makefile
diff --git a/resources/memtest86/patch/config.h b/resources/memtest86plus/patch/config.h
index 10ac525..10ac525 100644
--- a/resources/memtest86/patch/config.h
+++ b/resources/memtest86plus/patch/config.h
diff --git a/resources/scripts/helpers/build/module/memtest86plus b/resources/scripts/helpers/build/module/memtest86plus
index ca9c7b7..f5c8f65 100755
--- a/resources/scripts/helpers/build/module/memtest86plus
+++ b/resources/scripts/helpers/build/module/memtest86plus
@@ -30,7 +30,7 @@ set -u -e
printf "Building MemTest86+\n"
-cd "memtest86+-5.01/"
+cd "memtest86plus/1"
# clean it first
make clean
diff --git a/resources/scripts/helpers/download/memtest86plus b/resources/scripts/helpers/download/memtest86plus
index 7d231b9..cd2cb86 100755
--- a/resources/scripts/helpers/download/memtest86plus
+++ b/resources/scripts/helpers/download/memtest86plus
@@ -4,6 +4,7 @@
#
# Copyright (C) 2014, 2015 Francis Rowe <info@gluglug.org.uk>
# Copyright (C) 2015 Joseph Michael Thompson <jmt@josepht.me>
+# Copyright (C) 2015 Klemens Nanni <contact@autoboot.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -54,19 +55,22 @@ tar -xzf "memtest86+-5.01.tar.gz"
# delete the tar file (no longer needed)
rm -f "memtest86+-5.01.tar.gz"
+# make direcotory name consistent
+mv "memtest86+-5.01" "memtest86plus"
+
# there are modifications required
-cd "memtest86+-5.01/"
+cd "memtest86plus/"
# Apply necessary patches
# ------------------------------------------------------------------------------
# place the right config
rm -f "config.h"
-cp "../resources/memtest86/patch/config.h" .
+cp "../resources/memtest86plus/patch/config.h" .
# place the right Makefile
rm -f "Makefile"
-cp "../resources/memtest86/patch/Makefile" .
+cp "../resources/memtest86plus/patch/Makefile" .
# (diff them with defaults to see what changed)