aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Farina (Zero_Chaos) <zerochaos@gentoo.org>2019-01-15 15:09:21 -0500
committerRick Farina (Zero_Chaos) <zerochaos@gentoo.org>2019-01-15 15:09:21 -0500
commitce554ac9b89fe1b724b135bcc57580e9eed1273f (patch)
tree13a054c0b35324684521c952db37023385ded28d
parentsimplify bootloader handling for amd64/x86 (diff)
downloadcatalyst-ce554ac9b89fe1b724b135bcc57580e9eed1273f.tar.gz
catalyst-ce554ac9b89fe1b724b135bcc57580e9eed1273f.tar.bz2
catalyst-ce554ac9b89fe1b724b135bcc57580e9eed1273f.zip
fix memtest86 for legacy
the cdtar replacement code appears to be copying the wrong memtest file per testing from iamben Signed-off-by: Rick Farina (Zero_Chaos) <zerochaos@gentoo.org>
-rwxr-xr-xtargets/support/functions.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/targets/support/functions.sh b/targets/support/functions.sh
index 54455210..836dc9cc 100755
--- a/targets/support/functions.sh
+++ b/targets/support/functions.sh
@@ -94,9 +94,9 @@ create_bootloader() {
fi
#memtest goes under isolinux since it doesn't work for uefi right now
if [ -f /usr/share/memtest86+/memtest ]; then
- cp /usr/share/memtest86+/memtest isolinux/memtest86
+ cp /usr/share/memtest86+/memtest.bin isolinux/memtest86
else
- echo "Missing /usr/share/memtest86+/memtest, this livecd will not have memtest86+ support. Enable USE=system-bootloader on catalyst to pull in the correct deps"
+ echo "Missing /usr/share/memtest86+/memtest.bin, this livecd will not have memtest86+ support. Enable USE=system-bootloader on catalyst to pull in the correct deps"
fi
else
echo "Missing /usr/share/syslinux/isolinux.bin, this livecd will not bios boot. Enable USE=system-bootloader on catalyst to pull in the correct deps"