From: Aaron Klingaman Date: Thu, 2 Dec 2004 22:40:09 +0000 (+0000) Subject: for backward compatibility, write a list of loaded modules to /tmp X-Git-Tag: bootcd_3-0_beta1~13 X-Git-Url: http://git.onelab.eu/?p=bootcd.git;a=commitdiff_plain;h=a4e3e967a7d273421606f17768281ff562981e1b for backward compatibility, write a list of loaded modules to /tmp --- diff --git a/conf_files/pl_hwinit b/conf_files/pl_hwinit index 7b05290..9bf3f1f 100755 --- a/conf_files/pl_hwinit +++ b/conf_files/pl_hwinit @@ -2,8 +2,12 @@ pci_table=/etc/pl_pcitable +loaded_module_list=/tmp/loadedmodules + echo "pl_hwinit: loading applicable modules" +echo > $loaded_module_list + # this will contain lines of device_id:vendor_id (no 0x) system_devices=$(lspci -n | cut -d " " -f4) @@ -23,6 +27,7 @@ for device in $system_devices; do if [ -n "$module" ]; then echo "pl_hwinit: found and loading module $module" /sbin/modprobe $module + echo $module >> $loaded_module_list fi done done