commit: ce554ac9b89fe1b724b135bcc57580e9eed1273f
Author: Rick Farina (Zero_Chaos) <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 15 20:09:21 2019 +0000
Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Tue Jan 15 20:09:21 2019 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=ce554ac9
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 <AT> gentoo.org>
targets/support/functions.sh | 4 ++--
1 file 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"