|
|
The following list outlines the process for determining which kernel component caused a system panic.
: for FILE in `find /etc/conf/pack.d -name '*.[oa]' -print` do strings $FILE | grep $1 && echo $FILE doneIf this script were installed as findpanic, you would run it with one argument that gives the name of the kernel routine:
This script will output something like:
routine_name /etc/conf/pack.d/foo/Driver.oThis indicates that the foo driver may have been responsible for the system panic.