7054ea84b8fc5a019bf176b5ffc929e9176e587f
[libguestfs.git] / Makefile.am
1 # libguestfs
2 # Copyright (C) 2009 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 ACLOCAL_AMFLAGS = -I m4
19
20 SUBDIRS = src daemon examples
21
22 EXTRA_DIST = make-initramfs.sh
23
24 # Build the root filesystem.
25 # Currently this is arch-dependent, so it seems like putting it in
26 # $(libdir) is best.  When we build cross-architecture filesystems we
27 # should probably move them to $(datadir).
28
29 fsdir = $(libdir)/guestfs
30
31 INITRAMFSIMG = initramfs.$(REPO).$(host_cpu).img
32 VMLINUZ = vmlinuz.$(REPO).$(host_cpu)
33
34 fs_DATA =  $(INITRAMFSIMG) $(VMLINUZ)
35
36 $(VMLINUZ) $(INITRAMFSIMG): initramfs.timestamp
37
38 initramfs.timestamp: make-initramfs.sh.in daemon/guestfsd
39         rm -f $@
40         $(builddir)/make-initramfs.sh
41         touch $@
42
43 .PHONY: daemon/guestfsd
44
45 # Make clean.
46
47 CLEANFILES = $(fs_DATA) initramfs.timestamp emptydisk
48
49 clean-local:
50         rm -rf initramfs
51
52 # Test-boot the image.
53
54 test-boot: emptydisk
55         qemu-system-$(host_cpu) \
56           -m 384 \
57           -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \
58           -hda emptydisk
59
60 emptydisk:
61         rm -f emptydisk
62         dd if=/dev/zero of=emptydisk bs=1024 count=1440
63         echo 0, | sfdisk -q -C 80 -H 2 -S 18 emptydisk > /dev/null
64
65 # This is a more realistic test boot command line which better
66 # reflects what the library does.
67
68 test-boot-realistic: emptydisk
69         qemu-system-$(host_cpu) \
70           -m 384 \
71           -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \
72           -hda emptydisk \
73           -append "console=ttyS0 guestfs=10.0.2.4:6666" \
74           -nographic \
75           -serial stdio \
76           -net channel,6666:unix:/tmp/sock,server,nowait \
77           -net user,vlan=0 \
78           -net nic,vlan=0