home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
boot
/
i386
/
root
/
usr
/
share
/
YaST2
/
clients
/
inst_save_hardware_status.ycp
< prev
next >
Wrap
Text File
|
2006-11-29
|
817b
|
32 lines
/**
* File: installation/general/inst_save_hardware_status.ycp
* Module: Installation
* Summary: Save status of configured hardware
* Authors: Jiri Srain <jsrain@suse.cz>
*
* $Id: inst_save_hardware_status.ycp 27936 2006-02-13 20:01:14Z olh $
*/
{
textdomain "installation";
import "GetInstArgs";
if (GetInstArgs::going_back ()) // going backwards?
return `auto; // don't execute this once more
y2milestone ("Saving configured devices...");
map out = (map)SCR::Execute (.target.bash_output, "
hwinfo --pci --block --mouse --keyboard --isdn --save-config=all
[ -d /var/lib/hardware/udi/org/freedesktop/Hal/devices ] && \
perl -pi -e \"s/hwinfo.configured = 'new'/hwinfo.configured = 'no'/\" \
/var/lib/hardware/udi/org/freedesktop/Hal/devices/*");
y2milestone ("Result: %1", out);
return `auto;
}