search for: supermin_helper

Displaying 5 results from an estimated 5 matches for "supermin_helper".

2013 Sep 06
1
[PATCH] arm: appliance: Add support for device trees (dtb's).
This is the libguestfs companion patch to: https://www.redhat.com/archives/libguestfs/2013-September/msg00045.html Rich.
2013 May 31
2
[PATCH] Change fallback name for external supermin helper
...100644 --- a/configure.ac +++ b/configure.ac @@ -442,9 +442,9 @@ AC_SUBST([ENABLE_APPLIANCE]) dnl Check for supermin >= 4.1.0 or febootstrap >= 3.20. AC_CHECK_PROGS([SUPERMIN], - [supermin febootstrap],[no]) + [supermin febootstrap],[supermin]) AC_CHECK_PROGS([SUPERMIN_HELPER], - [supermin-helper febootstrap-supermin-helper],[no]) + [supermin-helper febootstrap-supermin-helper],[supermin-helper]) dnl Pass supermin --packager-config option. dnl
2013 Aug 22
1
Re: --disable-appliance creates supermin.d files
...t causes startup > > failures if the resulting binary packages are started on a host that > > happens to have supermin installed. What happens is that ext2_lookup fails for me. The package is build with env \ QEMU=/usr/bin/qemu-kvm \ SUPERMIN=supermin \ SUPERMIN_HELPER=supermin-helper \ ./configure --disable-appliance So the question is: should --disable-appliance just not create the appliance during "make", or should it also remove all supermin support from the resulting binaries (by not creating supermin.d)? Olaf olaf@probook:~ $ virt-rescu...
2013 May 31
0
Re: [PATCH] Change fallback name for external supermin helper
...ater code in configure.ac checks if "x$SUPERMIN" = "xno" and gives an error. That error would be broken/ineffective after this change. Also it does a version check on $SUPERMIN to make sure it's not the ancient febootstrap 2.x which doesn't work. > AC_CHECK_PROGS([SUPERMIN_HELPER], > - [supermin-helper febootstrap-supermin-helper],[no]) > + [supermin-helper febootstrap-supermin-helper],[supermin-helper]) This part of the change OTOH seems OK. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my...
2013 Aug 22
2
--disable-appliance creates supermin.d files
Why does the toplevel Makefile process appliance/, and creates supermin.d during make install, whith configure --disable-appliance? I have to double check what actually happens, it seems it causes startup failures if the resulting binary packages are started on a host that happens to have supermin installed. Olaf