summaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/list_modules.pm2
-rwxr-xr-xkernel/update_kernel3
2 files changed, 2 insertions, 3 deletions
diff --git a/kernel/list_modules.pm b/kernel/list_modules.pm
index 2521e72fb..613b220d7 100644
--- a/kernel/list_modules.pm
+++ b/kernel/list_modules.pm
@@ -112,7 +112,7 @@ our %l = (
{
network => [ qw(af_packet nfs lockd sunrpc) ],
cdrom => [ qw(isofs) ],
- loopback => [ qw(isofs loop) ],
+ loopback => [ qw(isofs loop), if_($ENV{MOVE}, qw(cryptoloop gzloop supermount)) ],
local => [
if_(arch() =~ /^i.86|x86_64/, qw(vfat fat)),
if_(arch() =~ /^ppc/, qw(hfs)),
diff --git a/kernel/update_kernel b/kernel/update_kernel
index 772dd4a55..5da807e71 100755
--- a/kernel/update_kernel
+++ b/kernel/update_kernel
@@ -79,7 +79,6 @@ function create_modules_mar() {
for i in $images; do
eval "modules=\$${i}_modules_raw"
modules_with_deps=`perl -I $GIBASEDIR/kernel $GIBASEDIR/kernel/dependencies.pl $version modules.dep $modules`
- if [ -n "$MOVE" ]; then modules_with_deps="change_loop.o gzloop.o isofs.o zlib_inflate.o supermount.o $modules_with_deps"; fi
eval "create_marfile ${i}_modules.mar $modules_with_deps"
done
echo
@@ -164,7 +163,7 @@ for i in $ALL_KERNELS/*; do
done
cp -f all.modules/$main/modules.description .
-l=`perl modules.pl images` || exit 1
+l=`MOVE=$MOVE perl modules.pl images` || exit 1
eval $l
for i in $ALL_KERNELS/*; do