summaryrefslogtreecommitdiffstats
path: root/system/memtest86+/memtest86+.SlackBuild
blob: 0e95f2a425c8de504a8fe2d5384b06458a1dedf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#!/bin/bash

# Slackware build script for memtest86+

# Copyright 2013-2022 Kyle Guinn <elyk03@gmail.com>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
#
#  THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
#  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
#  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
#  EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
#  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
#  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
#  OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
#  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
#  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
#  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

cd $(dirname $0) ; CWD=$(pwd)

PRGNAM=memtest86+
VERSION=${VERSION:-5.01}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}

# i486 only.  Modify the Makefile at your own risk :-)
ARCH=i486

# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
  echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
  exit 0
fi

TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM-$VERSION
OUTPUT=${OUTPUT:-/tmp}

DOCS="FAQ README* changelog"

set -e

rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go-w,a+rX-st .

# Upstream is dead.  Lots of patches courtesy of Debian and Gentoo.
# If these get out-of-hand, consider switching to coreboot's fork:
# https://review.coreboot.org/cgit/memtest86plus.git/

# https://sources.debian.org/patches/memtest86+/5.01-3/
# Last 3 are covered or made unnecessary by Gentoo's patches.
# Multiboot is disabled due to it being experimental and
# possibly not working correctly:  https://bugs.debian.org/568176
# Note that we aren't installing the multiboot image (memtest_shared).
# Note that patches multiboot and memtest86+-5.01-hardcoded_cc.patch conflict.
patch -p1 < $CWD/patches/doc-serialconsole
#patch -p1 < $CWD/patches/multiboot
#patch -p1 < $CWD/patches/memtest86+-5.01-O0.patch
#patch -p1 < $CWD/patches/memtest86+-5.01-array-size.patch
#patch -p1 < $CWD/patches/gcc-5

# https://gitweb.gentoo.org/repo/gentoo.git/tree/sys-apps/memtest86+/files
patch -p1 < $CWD/patches/memtest86+-5.01-gcc-473.patch
patch -p1 < $CWD/patches/memtest86+-5.01-hardcoded_cc.patch
patch -p1 < $CWD/patches/memtest86+-5.01-no-scp.patch
patch -p1 < $CWD/patches/memtest86+-5.01-io-extern-inline.patch
patch -p1 < $CWD/patches/memtest86+-5.01-reboot-def.patch
patch -p1 < $CWD/patches/memtest86+-5.01-no-clean.patch
patch -p1 < $CWD/patches/memtest86+-5.01-no-C-headers.patch
patch -p1 < $CWD/patches/memtest86+-5.01-test-random-cflags.patch

# More CFLAGS/CPPFLAGS cleanup, inspired by the previous patch.
patch -p1 < $CWD/patches/makefile.diff

# https://bugs.debian.org/795421
patch -p1 < $CWD/patches/memtest86+-test-7-smp.patch

# https://bugs.debian.org/629506
patch -p1 < $CWD/patches/bug_629506_message_15.mbox

# https://bugzilla.opensuse.org/show_bug.cgi?id=1185272
patch -p1 < $CWD/patches/discard-note_gnu_property.patch

make
install -D -m 0755 memtest $PKG/boot/$PRGNAM-$VERSION
install -D -m 0644 memtest.bin $PKG/boot/$PRGNAM-$VERSION.bin
ln -s $PRGNAM-$VERSION $PKG/boot/$PRGNAM
ln -s $PRGNAM-$VERSION.bin $PKG/boot/$PRGNAM.bin

mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild

mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc

cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE