From: Richard W.M. Jones Date: Sat, 4 Dec 2010 19:07:15 +0000 (+0000) Subject: appliance: Put /init in a separate supermin appliance component. X-Git-Tag: 1.7.19~3 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=078fbee4e73036783aefef9401735f8b80e81bb2;ds=sidebyside appliance: Put /init in a separate supermin appliance component. --- diff --git a/appliance/Makefile.am b/appliance/Makefile.am index 0abd698..dec1c15 100644 --- a/appliance/Makefile.am +++ b/appliance/Makefile.am @@ -43,6 +43,7 @@ fs_DATA += kmod.whitelist superminfs_DATA = \ supermin.d/base.img \ supermin.d/daemon.img \ + supermin.d/init.img \ supermin.d/hostfiles endif @@ -101,6 +102,14 @@ supermin.d/daemon.img: $(INITRAMFSIMG) (cd $(top_builddir)/initramfs && \ echo -e "sbin\nsbin/guestfsd" | cpio --quiet -o -H newc ) > $@-t mv $@-t $@ + +supermin.d/init.img: $(INITRAMFSIMG) + mkdir -p supermin.d + rm -f $@ $@-t + (cd $(top_builddir)/initramfs && \ + echo -e "init\n" | cpio --quiet -o -H newc ) > $@-t + mv $@-t $@ + endif # Extra symlinks needed by the Debian appliance.