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 / driver_update1_finish.ycp < prev    next >
Text File  |  2006-11-29  |  1KB  |  65 lines

  1. /**
  2.  * File:
  3.  *  driver_update1_finish.ycp
  4.  *
  5.  * Module:
  6.  *  Step of base installation finish
  7.  *
  8.  * Authors:
  9.  *  Jiri Srain <jsrain@suse.cz>
  10.  *
  11.  * $Id: driver_update1_finish.ycp 27936 2006-02-13 20:01:14Z olh $
  12.  *
  13.  */
  14.  
  15. {
  16.  
  17. textdomain "installation";
  18.  
  19. import "Vendor";
  20. import "Directory";
  21.  
  22. any ret = nil;
  23. string func = "";
  24. map param = $[];
  25.  
  26. /* Check arguments */
  27. if(size(WFM::Args()) > 0 && is(WFM::Args(0), string)) {
  28.     func = (string)WFM::Args(0);
  29.     if(size(WFM::Args()) > 1 && is(WFM::Args(1), map))
  30.     param = (map)WFM::Args(1);
  31. }
  32.  
  33. y2milestone ("starting driver_update1_finish");
  34. y2debug("func=%1", func);
  35. y2debug("param=%1", param);
  36.  
  37. if (func == "Info")
  38. {
  39.     return (any)$[
  40.     "steps" : 0,
  41.     "when" : [ `installation, `update, `autoinst ],
  42.     ];
  43. }
  44. else if (func == "Write")
  45. {
  46.     string update_dir = (string) SCR::Read (.etc.install_inf.UpdateDir);
  47.     if (update_dir != nil)
  48.     {
  49.     SCR::Write (.target.string, Directory::vardir + "/vendor_update", update_dir);
  50.     }
  51.     Vendor::DriverUpdate1 ();
  52. }
  53. else
  54. {
  55.     y2error ("unknown function: %1", func);
  56.     ret = nil;
  57. }
  58.  
  59. y2debug("ret=%1", ret);
  60. y2milestone("driver_update1_finish finished");
  61. return ret;
  62.  
  63.  
  64. } /* EOF */
  65.