diff options
Diffstat (limited to 'mdk-stage1/lomount.c')
-rw-r--r-- | mdk-stage1/lomount.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mdk-stage1/lomount.c b/mdk-stage1/lomount.c index 2f80ec71c..caca48ea1 100644 --- a/mdk-stage1/lomount.c +++ b/mdk-stage1/lomount.c @@ -1,7 +1,7 @@ /* - * Guillaume Cottenceau (gc@mandrakesoft.com) + * Guillaume Cottenceau (gc) * - * Copyright 2000 Mandrakesoft + * Copyright 2000 Mandriva * * This software may be freely redistributed under the terms of the GNU * public license. @@ -165,9 +165,9 @@ lomount(char *loopfile, char *where, char **dev, int compressed) flag = MS_MGC_VAL; flag |= MS_RDONLY; - my_insmod("loop", ANY_DRIVER_TYPE, "max_loop=256", 1); + my_modprobe("loop", ANY_DRIVER_TYPE, "max_loop=256"); if (compressed) { - my_insmod("squashfs", ANY_DRIVER_TYPE, NULL, 1); + my_modprobe("squashfs", ANY_DRIVER_TYPE, NULL); } if (!(loopdev = find_free_loop())) { |