2009-10-12 14:42:17 +00:00
|
|
|
---
|
|
|
|
Makefile | 6 +++++-
|
|
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
Index: memtest86+-4.00/Makefile
|
|
|
|
===================================================================
|
|
|
|
--- memtest86+-4.00.orig/Makefile
|
|
|
|
+++ memtest86+-4.00/Makefile
|
2007-01-25 16:27:40 +00:00
|
|
|
@@ -7,6 +7,7 @@
|
|
|
|
# Path for the floppy disk device
|
|
|
|
#
|
|
|
|
FDISK=/dev/fd0
|
|
|
|
+TARGETDIR=/boot
|
|
|
|
|
2009-10-12 14:42:17 +00:00
|
|
|
AS=as -32
|
2007-01-25 16:27:40 +00:00
|
|
|
CC=gcc
|
2009-10-12 14:42:17 +00:00
|
|
|
@@ -63,7 +64,10 @@ iso:
|
|
|
|
./makeiso.sh
|
|
|
|
rm -f *.o *.s memtest.bin memtest memtest_shared memtest_shared.bin
|
2007-01-25 16:27:40 +00:00
|
|
|
|
|
|
|
-install: all
|
|
|
|
+install:
|
|
|
|
+ install -o root -g root memtest.bin $(DESTDIR)$(TARGETDIR)/
|
|
|
|
+
|
|
|
|
+install-floppy: all
|
|
|
|
dd <memtest.bin >$(FDISK) bs=8192
|
|
|
|
|
2009-10-12 14:42:17 +00:00
|
|
|
install-precomp:
|