31cb6e3a22c15b0cd7a189097078b3e305ac8b1b
[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 initramfs.timestamp: make-initramfs.sh.in
40         rm -f $@
41         bash $(builddir)/make-initramfs.sh
42         touch $@
43
44 # Make clean.
45
46 CLEANFILES = $(fs_DATA) initramfs.timestamp emptydisk
47
48 clean-local:
49         rm -rf initramfs
50
51 # Test-boot the image.
52
53 test-boot: emptydisk
54         qemu-system-$(host_cpu) \
55           -m 384 \
56           -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \
57           -hda emptydisk
58
59 emptydisk:
60         rm -f emptydisk
61         dd if=/dev/zero of=emptydisk bs=1024 count=1440
62         echo 0, | sfdisk -q -C 80 -H 2 -S 18 emptydisk > /dev/null
63
64 # This is a more realistic test boot command line which better
65 # reflects what the library does.
66
67 test-boot-realistic: emptydisk
68         qemu-system-$(host_cpu) \
69           -m 384 \
70           -kernel $(VMLINUZ) -initrd $(INITRAMFSIMG) \
71           -hda emptydisk \
72           -append "console=ttyS0 guestfs=10.0.2.4:6666" \
73           -nographic \
74           -serial stdio \
75           -net channel,6666:unix:/tmp/sock,server,nowait \
76           -net user,vlan=0 \
77           -net nic,vlan=0