Mailinglist Archive: yast-commit (190 mails)
| < Previous | Next > |
[yast-commit] r38056 - in /branches/tmp/lslezak/cd-creator: package/yast2-product-creator.changes src/ProductCreator.ycp src/dialogs.ycp
- From: lslezak@xxxxxxxxxxxxxxxx
- Date: Mon, 21 May 2007 09:31:46 -0000
- Message-id: <20070521093146.805F547FB0@xxxxxxxxxxxxxxxx>
Author: lslezak
Date: Mon May 21 11:31:46 2007
New Revision: 38056
URL: http://svn.opensuse.org/viewcvs/yast?rev=38056&view=rev
Log:
- always store isolinux.cfg into the config file, even if there
is no change (#275914)
Modified:
branches/tmp/lslezak/cd-creator/package/yast2-product-creator.changes
branches/tmp/lslezak/cd-creator/src/ProductCreator.ycp
branches/tmp/lslezak/cd-creator/src/dialogs.ycp
Modified: branches/tmp/lslezak/cd-creator/package/yast2-product-creator.changes
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/lslezak/cd-creator/package/yast2-product-creator.changes?rev=38056&r1=38055&r2=38056&view=diff
==============================================================================
--- branches/tmp/lslezak/cd-creator/package/yast2-product-creator.changes (original)
+++ branches/tmp/lslezak/cd-creator/package/yast2-product-creator.changes Mon May 21 11:31:46 2007
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Mon May 21 11:10:16 CEST 2007 - lslezak@xxxxxxx
+
+- always store isolinux.cfg into the config file, even if there
+ is no change (#275914)
+
+-------------------------------------------------------------------
Wed May 16 14:23:57 CEST 2007 - jsuchome@xxxxxxx
- added widgets for 'root' and 'config' directory editation
Modified: branches/tmp/lslezak/cd-creator/src/ProductCreator.ycp
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/lslezak/cd-creator/src/ProductCreator.ycp?rev=38056&r1=38055&r2=38056&view=diff
==============================================================================
--- branches/tmp/lslezak/cd-creator/src/ProductCreator.ycp (original)
+++ branches/tmp/lslezak/cd-creator/src/ProductCreator.ycp Mon May 21 11:31:46 2007
@@ -1719,11 +1719,6 @@
: sformat("%1/boot/loader/isolinux.cfg", skel_root);
SCR::Write(.target.string, fname, Config["bootconfig"]:"" );
- /*
- string cpCmd = sformat("cp %1/product-creator/isolinux.cfg %2/boot/loader",
- Directory::datadir, skel_root);
- SCR::Execute (.target.bash, cpCmd);
- */
}
cpCmd = (Config["code10"]:false)
? sformat("cp %1/product-creator/message %2/boot/%3/loader", Directory::datadir, skel_root, arch)
Modified: branches/tmp/lslezak/cd-creator/src/dialogs.ycp
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/lslezak/cd-creator/src/dialogs.ycp?rev=38056&r1=38055&r2=38056&view=diff
==============================================================================
--- branches/tmp/lslezak/cd-creator/src/dialogs.ycp (original)
+++ branches/tmp/lslezak/cd-creator/src/dialogs.ycp Mon May 21 11:31:46 2007
@@ -649,11 +649,8 @@
}
else if(ret == `next) {
string isolinux_new = (string)UI::QueryWidget(`id(`isolinux), `Value);
- if (isolinux_new != isolinux)
- {
- ProductCreator::Config["bootconfig"] = isolinux_new;
- }
-
+ ProductCreator::Config["bootconfig"] = isolinux_new;
+ y2milestone("Isolinux config: %1", isolinux_new);
break;
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Mon May 21 11:31:46 2007
New Revision: 38056
URL: http://svn.opensuse.org/viewcvs/yast?rev=38056&view=rev
Log:
- always store isolinux.cfg into the config file, even if there
is no change (#275914)
Modified:
branches/tmp/lslezak/cd-creator/package/yast2-product-creator.changes
branches/tmp/lslezak/cd-creator/src/ProductCreator.ycp
branches/tmp/lslezak/cd-creator/src/dialogs.ycp
Modified: branches/tmp/lslezak/cd-creator/package/yast2-product-creator.changes
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/lslezak/cd-creator/package/yast2-product-creator.changes?rev=38056&r1=38055&r2=38056&view=diff
==============================================================================
--- branches/tmp/lslezak/cd-creator/package/yast2-product-creator.changes (original)
+++ branches/tmp/lslezak/cd-creator/package/yast2-product-creator.changes Mon May 21 11:31:46 2007
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Mon May 21 11:10:16 CEST 2007 - lslezak@xxxxxxx
+
+- always store isolinux.cfg into the config file, even if there
+ is no change (#275914)
+
+-------------------------------------------------------------------
Wed May 16 14:23:57 CEST 2007 - jsuchome@xxxxxxx
- added widgets for 'root' and 'config' directory editation
Modified: branches/tmp/lslezak/cd-creator/src/ProductCreator.ycp
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/lslezak/cd-creator/src/ProductCreator.ycp?rev=38056&r1=38055&r2=38056&view=diff
==============================================================================
--- branches/tmp/lslezak/cd-creator/src/ProductCreator.ycp (original)
+++ branches/tmp/lslezak/cd-creator/src/ProductCreator.ycp Mon May 21 11:31:46 2007
@@ -1719,11 +1719,6 @@
: sformat("%1/boot/loader/isolinux.cfg", skel_root);
SCR::Write(.target.string, fname, Config["bootconfig"]:"" );
- /*
- string cpCmd = sformat("cp %1/product-creator/isolinux.cfg %2/boot/loader",
- Directory::datadir, skel_root);
- SCR::Execute (.target.bash, cpCmd);
- */
}
cpCmd = (Config["code10"]:false)
? sformat("cp %1/product-creator/message %2/boot/%3/loader", Directory::datadir, skel_root, arch)
Modified: branches/tmp/lslezak/cd-creator/src/dialogs.ycp
URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/lslezak/cd-creator/src/dialogs.ycp?rev=38056&r1=38055&r2=38056&view=diff
==============================================================================
--- branches/tmp/lslezak/cd-creator/src/dialogs.ycp (original)
+++ branches/tmp/lslezak/cd-creator/src/dialogs.ycp Mon May 21 11:31:46 2007
@@ -649,11 +649,8 @@
}
else if(ret == `next) {
string isolinux_new = (string)UI::QueryWidget(`id(`isolinux), `Value);
- if (isolinux_new != isolinux)
- {
- ProductCreator::Config["bootconfig"] = isolinux_new;
- }
-
+ ProductCreator::Config["bootconfig"] = isolinux_new;
+ y2milestone("Isolinux config: %1", isolinux_new);
break;
}
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |