X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=Makefile.am;h=d34b9429c8f4fff8a540b6fb41184dbe8863018c;hp=cbc4c598a0b61fc30742c7ee11391e820d381c1a;hb=acf9000252da7f4f3fde693ecc03461007cf0bf9;hpb=863d13ea1aadddc122ad82f4dad20e73231b48f2 diff --git a/Makefile.am b/Makefile.am index cbc4c59..d34b942 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,9 +15,25 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -SUBDIRS = src daemon examples +ACLOCAL_AMFLAGS = -I m4 -EXTRA_DIST = make-initramfs.sh +SUBDIRS = src daemon fish examples images + +if HAVE_OCAML +SUBDIRS += ocaml +endif +if HAVE_PERL +SUBDIRS += perl +endif +if HAVE_PYTHON +SUBDIRS += python +endif + +EXTRA_DIST = \ + make-initramfs.sh update-initramfs.sh \ + guestfs.pod guestfs-actions.pod guestfs-structs.pod \ + libguestfs.spec \ + HACKING # Build the root filesystem. # Currently this is arch-dependent, so it seems like putting it in @@ -26,16 +42,72 @@ EXTRA_DIST = make-initramfs.sh fsdir = $(libdir)/guestfs -fs_DATA = initramfs.$(REPO).$(host_cpu).img vmlinuz.$(REPO).$(host_cpu) +INITRAMFSIMG = initramfs.$(REPO).$(host_cpu).img +VMLINUZ = vmlinuz.$(REPO).$(host_cpu) + +fs_DATA = $(INITRAMFSIMG) $(VMLINUZ) -$(fs_DATA): make-initramfs.sh.in daemon/guestfsd - $(builddir)/make-initramfs.sh +$(INITRAMFSIMG) $(VMLINUZ): initramfs/fakeroot.log -.PHONY: daemon/guestfsd +initramfs/fakeroot.log: make-initramfs.sh.in + -mv $(INITRAMFSIMG) $(INITRAMFSIMG).bak + -mv $(VMLINUZ) $(VMLINUZ).bak + if ! bash $(builddir)/make-initramfs.sh; then rm -f $@; exit 1; fi + +$(INITRAMFSIMG): initramfs/fakeroot.log daemon/guestfsd + rm -f $@ + bash $(builddir)/update-initramfs.sh + touch $@ # Make clean. -CLEANFILES = $(fs_DATA) +CLEANFILES = $(fs_DATA) emptydisk clean-local: rm -rf initramfs + +# Manual page. +# guestfs-actions.pod and guestfs-structs are autogenerated. There is +# no include mechanism for POD, so we have to do it by hand. + +man_MANS = guestfs.3 + +guestfs.3: guestfs.pod guestfs-actions.pod guestfs-structs.pod + sed \ + -e '/@ACTIONS@/rguestfs-actions.pod' -e 's/@ACTIONS@//' \ + -e '/@STRUCTS@/rguestfs-structs.pod' -e 's/@STRUCTS@//' \ + < $< | \ + $(POD2MAN) \ + --section 3 \ + -c "Virtualization Support" \ + --name "guestfs" \ + --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \ + > $@ + +# Test-boot the image. + +test-boot: emptydisk + qemu-system-$(host_cpu) \ + -m 384 \ + -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \ + -hda emptydisk + +emptydisk: + rm -f emptydisk + dd if=/dev/zero of=emptydisk bs=1024 count=1440 + echo 0, | sfdisk -q -C 80 -H 2 -S 18 emptydisk > /dev/null + +# This is a more realistic test boot command line which better +# reflects what the library does. + +test-boot-realistic: emptydisk + qemu-system-$(host_cpu) \ + -m 384 \ + -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \ + -hda emptydisk \ + -append "console=ttyS0 guestfs=10.0.2.4:6666" \ + -nographic \ + -serial stdio \ + -net channel,6666:unix:/tmp/sock,server,nowait \ + -net user,vlan=0 \ + -net nic,vlan=0