X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fbuild%2FMakefile;h=77de4e72961252294886f7c733af43d586866356;hb=1cc11b811dd67e1023f9a4584853f516b7a61a41;hp=41e56522f7730f27e52f4de2dbbb6d032b370e6f;hpb=df58bd3c484a52b1e166dc28e7b9b6fd94e5a023;p=palacios.git diff --git a/palacios/build/Makefile b/palacios/build/Makefile index 41e5652..77de4e7 100644 --- a/palacios/build/Makefile +++ b/palacios/build/Makefile @@ -1,6 +1,6 @@ # Makefile for GeekOS kernel, userspace, and tools # Copyright (c) 2004,2005 David H. Hovemeyer -# $Revision: 1.26 $ +# $Revision: 1.29 $ # This is free software. You are permitted to use, # redistribute, and modify it as specified in the file "COPYING". @@ -72,7 +72,7 @@ endif # List of targets to build by default. # These targets encompass everything needed to boot # and run GeekOS. -ALL_TARGETS := fd.img vm_kernel +ALL_TARGETS := vmm.img vm_kernel # Kernel source files @@ -134,7 +134,7 @@ VMM_C_OBJS := $(VMM_C_SRCS:%.c=palacios/%.o) VMM_OBJS := $(VMM_C_OBJS) $(VMM_ASM_OBJS) -DEVICE_C_SRCS := nvram.c timer.c +DEVICE_C_SRCS := nvram.c timer.c simple_pic.c 8259a.c DEVICE_C_OBJS := $(DEVICE_C_SRCS:%.c=devices/%.o) @@ -290,10 +290,13 @@ fd.img : geekos/fd_boot.bin geekos/setup.bin geekos/kernel.bin vm_kernel $(PAD) _temp 512 cat _temp vm_kernel > $@ +vmm.img : fd.img + cp fd.img vmm.img + $(PAD) vmm.img 1474560 + # make ready to boot over PXE -pxe: fd.img - cp fd.img /tftpboot/vmm.img - $(PAD) /tftpboot/vmm.img 1474560 +pxe: vmm.img + cp vmm.img /tftpboot/vmm.img