Copy from Base:System/memtest86+ based on submit request 22270 from user coolo OBS-URL: https://build.opensuse.org/request/show/22270 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/memtest86+?expand=0&rev=9
29 lines
624 B
Plaintext
29 lines
624 B
Plaintext
---
|
|
Makefile | 6 +++++-
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
Index: memtest86+-4.00/Makefile
|
|
===================================================================
|
|
--- memtest86+-4.00.orig/Makefile
|
|
+++ memtest86+-4.00/Makefile
|
|
@@ -7,6 +7,7 @@
|
|
# Path for the floppy disk device
|
|
#
|
|
FDISK=/dev/fd0
|
|
+TARGETDIR=/boot
|
|
|
|
AS=as -32
|
|
CC=gcc
|
|
@@ -63,7 +64,10 @@ iso:
|
|
./makeiso.sh
|
|
rm -f *.o *.s memtest.bin memtest memtest_shared memtest_shared.bin
|
|
|
|
-install: all
|
|
+install:
|
|
+ install -o root -g root memtest.bin $(DESTDIR)$(TARGETDIR)/
|
|
+
|
|
+install-floppy: all
|
|
dd <memtest.bin >$(FDISK) bs=8192
|
|
|
|
install-precomp:
|