aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/Makefile
diff options
context:
space:
mode:
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2003-10-15 09:31:04 +0000
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2003-10-15 09:31:04 +0000
commitd47201cc4f2bc9cbaae0bfab32cf8a1b917f153d (patch)
tree9fba304138611ee59cb6fc18f1e2a8bdef56e562 /extras/mini-os/Makefile
parent6841936e92562a7b2587f9c167e4c6483bfe1150 (diff)
downloadxen-d47201cc4f2bc9cbaae0bfab32cf8a1b917f153d.tar.gz
xen-d47201cc4f2bc9cbaae0bfab32cf8a1b917f153d.tar.bz2
xen-d47201cc4f2bc9cbaae0bfab32cf8a1b917f153d.zip
bitkeeper revision 1.520 (3f8d13d8qVVqxcYD--4cXYs5egqNyg)
Many files: Fix the minos license so that it is usable for XP and BSD ports. minios.lds: Rename: extras/mini-os/vmlinux.lds -> extras/mini-os/minios.lds .del-list.h~d612a8726e8d42e: Delete: extras/mini-os/h/list.h .del-COPYING~1f9753354580bd13: Delete: extras/mini-os/COPYING
Diffstat (limited to 'extras/mini-os/Makefile')
-rw-r--r--extras/mini-os/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/mini-os/Makefile b/extras/mini-os/Makefile
index 18ae585db7..c0b977080b 100644
--- a/extras/mini-os/Makefile
+++ b/extras/mini-os/Makefile
@@ -21,7 +21,7 @@ hypervisor-ifs:
$(TARGET): hypervisor-ifs head.o $(OBJS)
# Image will load at 0xC0000000. First bytes from head.o
#$(LD) -N -Ttext 0xC0000000 head.o $(OBJS) -o $@.elf
- $(LD) -N -T vmlinux.lds head.o $(OBJS) -o $@.elf
+ $(LD) -N -T minios.lds head.o $(OBJS) -o $@.elf
# Guest OS header -- first 8 bytes are identifier 'XenoGues'.
echo -e -n 'XenoGues' >$@
# Guest OS header -- next 4 bytes are load address (0xC0000000).