diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-22 11:14:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-22 11:14:27 +0000 |
commit | 615e5dc0d6aff344c9eada8bd1bc616c6675b4f8 (patch) | |
tree | deb5deb2a1832579d3cfcabaeeddc968f7e030b4 /kernel | |
parent | f6ad9c5a8824f7932815facae24f38eb51a937cc (diff) | |
download | drakx-615e5dc0d6aff344c9eada8bd1bc616c6675b4f8.tar drakx-615e5dc0d6aff344c9eada8bd1bc616c6675b4f8.tar.gz drakx-615e5dc0d6aff344c9eada8bd1bc616c6675b4f8.tar.bz2 drakx-615e5dc0d6aff344c9eada8bd1bc616c6675b4f8.tar.xz drakx-615e5dc0d6aff344c9eada8bd1bc616c6675b4f8.zip |
use the list of modules (eg: cdrom, all, pcmcia) given by modules.pl
Diffstat (limited to 'kernel')
-rwxr-xr-x | kernel/update_kernel | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/update_kernel b/kernel/update_kernel index 965029e4f..990c8b655 100755 --- a/kernel/update_kernel +++ b/kernel/update_kernel @@ -68,7 +68,7 @@ function create_modules_mar() { echo "done" mv modules.cz ../modules.cz-$kern fi - for i in network network_gigabit_usb network_gigabit network_usb cdrom hd hdcdrom_usb pcmcia all; do + 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 |