From 8dcb6d97b279ad752732d2880b7ef7a65887e401 Mon Sep 17 00:00:00 2001 From: Hilko Bengen Date: Tue, 31 May 2011 00:14:11 +0200 Subject: [PATCH] Force creation of /lib/modules directory. After adding a line containing "/lib/modules" to hostfiles solved the immediate problem for me -- febootstrap-supermin-helper finished its run. The attached patch makes sure that febootstrap-supermin-helper always creates this directory. --- helper/appliance.c | 1 + 1 file changed, 1 insertion(+) diff --git a/helper/appliance.c b/helper/appliance.c index 85efd75..50d1d78 100644 --- a/helper/appliance.c +++ b/helper/appliance.c @@ -77,6 +77,7 @@ create_appliance (const char *hostcpu, iterate_inputs (inputs, nr_inputs, writer); + writer->wr_file ("/lib/modules"); /* Kernel modules (3). */ add_kernel_modules (whitelist, modpath, writer); -- 1.8.3.1