diff options
-rw-r--r-- | projects/memtest86plus/configs/install | 1 | ||||
-rw-r--r-- | projects/memtest86plus/configs/targets | 2 | ||||
-rwxr-xr-x | projects/memtest86plus/memtest86plus | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/projects/memtest86plus/configs/install b/projects/memtest86plus/configs/install index 4092a417..6d1d72a2 100644 --- a/projects/memtest86plus/configs/install +++ b/projects/memtest86plus/configs/install @@ -1 +1,2 @@ memtest:memtest.elf +memtest.bin:memtest.img diff --git a/projects/memtest86plus/configs/targets b/projects/memtest86plus/configs/targets deleted file mode 100644 index f2cba0e5..00000000 --- a/projects/memtest86plus/configs/targets +++ /dev/null @@ -1,2 +0,0 @@ -grub -seabios diff --git a/projects/memtest86plus/memtest86plus b/projects/memtest86plus/memtest86plus index 1aadbf6c..c64f66a7 100755 --- a/projects/memtest86plus/memtest86plus +++ b/projects/memtest86plus/memtest86plus @@ -75,7 +75,7 @@ build() { mkdir -p "$build_path" make -C "$sources_path" -j"$TASKS" - cp "$sources_path/memtest" "$build_path" + cp "$sources_path"/{memtest,memtest.bin} "$build_path" make -C "$sources_path" 'clean' } |