From a4e3e967a7d273421606f17768281ff562981e1b Mon Sep 17 00:00:00 2001 From: Aaron Klingaman Date: Thu, 2 Dec 2004 22:40:09 +0000 Subject: [PATCH] for backward compatibility, write a list of loaded modules to /tmp --- conf_files/pl_hwinit | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.43.0