diff options
author | Klemens Nanni <contact@autoboot.org> | 2015-08-27 18:20:49 +0200 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-29 19:02:33 +0100 |
commit | d406f8beccb29e2eff4b62fae2dca59fa571ca44 (patch) | |
tree | b8c7c2a1863394279fb5fb96a5c4aebc84986bb4 /resources/scripts/helpers/download | |
parent | 7c25df4580a8fcd763497214ee66c9e2e192a757 (diff) | |
download | librebootfr-d406f8beccb29e2eff4b62fae2dca59fa571ca44.tar.gz librebootfr-d406f8beccb29e2eff4b62fae2dca59fa571ca44.zip |
Make memtest86plus be named consistently
Conflicts:
resources/utilities/grub-assemble/gen.sh
Diffstat (limited to 'resources/scripts/helpers/download')
-rwxr-xr-x | resources/scripts/helpers/download/memtest86plus | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/resources/scripts/helpers/download/memtest86plus b/resources/scripts/helpers/download/memtest86plus index 7d231b98..cd2cb866 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) |