From 078fbee4e73036783aefef9401735f8b80e81bb2 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sat, 4 Dec 2010 19:07:15 +0000 Subject: [PATCH] appliance: Put /init in a separate supermin appliance component. --- appliance/Makefile.am | 9 +++++++++ 1 file changed, 9 insertions(+) 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. -- 1.8.3.1