aboutsummaryrefslogtreecommitdiffstats
path: root/old/xenolinux-2.4.16-sparse/arch/xeno/boot/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'old/xenolinux-2.4.16-sparse/arch/xeno/boot/Makefile')
-rw-r--r--old/xenolinux-2.4.16-sparse/arch/xeno/boot/Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/old/xenolinux-2.4.16-sparse/arch/xeno/boot/Makefile b/old/xenolinux-2.4.16-sparse/arch/xeno/boot/Makefile
deleted file mode 100644
index 252daf50bf..0000000000
--- a/old/xenolinux-2.4.16-sparse/arch/xeno/boot/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# arch/xeno/boot/Makefile
-#
-
-image.gz: image
- gzip -f -9 < $< > $@
-
-image: $(TOPDIR)/vmlinux
- # Guest OS header -- first 8 bytes are identifier 'XenoGues'.
- echo -e -n 'XenoGues' >$@
- # Guest OS header -- next 4 bytes are load address (0xC0000000).
- echo -e -n '\000\000\000\300' >>$@
- $(OBJCOPY) $< image.body
- # Guest OS header is immediately followed by raw OS image.
- # Start address must be at byte 0.
- cat image.body >>$@
- rm -f image.body
-
-dep:
-
-clean:
- rm -f image image.gz