X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=appliance%2FMakefile.am;h=bec2b4896f2be98bf4643ef744af289325734009;hp=5dd6521ec9987f804d6ea7bdfb0ced0b187bd286;hb=09a7545649e6cac0de2c4421cb64b659164174ee;hpb=161c7cd7f9c9d1099c35db20f78d7e5a20ea6517 diff --git a/appliance/Makefile.am b/appliance/Makefile.am index 5dd6521..bec2b48 100644 --- a/appliance/Makefile.am +++ b/appliance/Makefile.am @@ -15,68 +15,69 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -EXTRA_DIST = \ - make.sh update.sh +include $(top_srcdir)/subdir-rules.mk -# Build the root filesystem (appliance). -# Currently this is arch-dependent, so it seems like putting it in -# $(libdir) is best. When we build cross-architecture filesystems we -# should probably move them to $(datadir). +EXTRA_DIST = \ + packagelist.in \ + excludelist.in \ + init \ + make.sh.in fsdir = $(libdir)/guestfs - -INITRAMFSIMG = initramfs.$(REPO).$(host_cpu).img -VMLINUZ = vmlinuz.$(REPO).$(host_cpu) - -fs_DATA = $(INITRAMFSIMG) $(VMLINUZ) - -$(INITRAMFSIMG) $(VMLINUZ): $(top_builddir)/initramfs/fakeroot.log - -$(top_builddir)/initramfs/fakeroot.log: make.sh kmod.whitelist - -mv $(INITRAMFSIMG) $(INITRAMFSIMG).bak - -mv $(VMLINUZ) $(VMLINUZ).bak - if ! bash make.sh; then rm -f $@; exit 1; fi - -$(INITRAMFSIMG): $(top_builddir)/initramfs/fakeroot.log $(top_builddir)/daemon/guestfsd - rm -f $@ - bash update.sh - touch $@ - +superminfsdir = $(libdir)/guestfs/supermin.d + +fs_DATA = +superminfs_DATA = \ + supermin.d/base.img \ + supermin.d/daemon.img \ + supermin.d/init.img \ + supermin.d/hostfiles + +# This used to be a configure-generated file (as is update.sh still). +# However config.status always touches the destination file, which +# means the appliance got rebuilt too often. make.sh: make.sh.in - cd .. && ./config.status appliance/$@ - -# 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. + cd $(top_builddir) && \ + ./config.status --file=appliance/$@-t:appliance/$< + chmod +x $@-t + mv $@-t $@ + +packagelist: packagelist.in + cpp -undef -D$(DISTRO)=1 < $< | \ + grep -v '^[[:space:]]*$$' | grep -v '^#' > $@-t + mv $@-t $@ + +excludelist: excludelist.in + cpp -undef -D$(DISTRO)=1 < $< | \ + grep -v '^[[:space:]]*$$' | grep -v '^#' > $@-t + mv $@-t $@ + +supermin.d/base.img supermin.d/hostfiles: stamp-supermin +stamp-supermin: make.sh packagelist excludelist + mkdir -p supermin.d + rm -f $@ supermin.d/base.img supermin.d/hostfiles + ./make.sh + touch $@ -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,model=virtio,vlan=0 +supermin.d/daemon.img: ../daemon/guestfsd + mkdir -p supermin.d + rm -f $@ $@-t + mkdir sbin + cd sbin && ln ../../daemon/guestfsd + echo -e "sbin\nsbin/guestfsd" | cpio --quiet -o -H newc > $@-t + rm -r sbin + mv $@-t $@ + +supermin.d/init.img: init + cmp -s $(srcdir)/init $(builddir)/init || cp $(srcdir)/init $(builddir)/init + mkdir -p supermin.d + rm -f $@ $@-t + echo "init" | cpio --quiet -o -H newc > $@-t + mv $@-t $@ # Make clean. -CLEANFILES = $(fs_DATA) +CLEANFILES = packagelist excludelist clean-local: - rm -rf $(top_builddir)/initramfs - + rm -rf supermin.d