diff --git a/loader/loader.c b/loader/loader.c
index 55cb0f8..c13956c 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -2036,7 +2036,37 @@ int main(int argc, char ** argv) {
logMessage(INFO, "Trying to detect vendor driver discs");
dd = findDriverDiskByLabel();
dditer = dd;
+
+ if (dd&& !loaderData.ksfile) {
+ startNewt();
+ }
+
+
while(dditer) {
+ /* If in interactive mode, ask for confirmation before loading the DD */
+ if (!loaderData.ksfile) {
+ char * buf;
+
+ checked_asprintf(&buf,
+ _("Driver disc was detected in %s. "
+ "Do you want to use it?."), dditer->data);
+
+ rc = newtWinChoice(_("Driver disc detected"), _("Use it"), _("Skip it"),
+ buf);
+ free(buf);
+ if (rc == 2) {
+ logMessage(INFO, "Skipping driver disk %s.", (char*)(dditer->data));
+
+ /* clean the device record */
+ free((char*)(dditer->data));
+ dditer->data = NULL;
+
+ /* next DD */
+ dditer = g_slist_next(dditer);
+ continue;
+ }
+ }
+
/* load the DD */
if (loadDriverDiskFromPartition(&loaderData, (char*)(dditer->data))) {
logMessage(ERROR, "Automatic driver disk loader failed for %s.", (char*)(dditer->data));
@@ -2052,6 +2082,11 @@ int main(int argc, char ** argv) {
/* next DD */
dditer = g_slist_next(dditer);
}
+
+ if (!dd&& loaderData.ksfile) {
+ stopNewt();
+ }
+
g_slist_free(dd);
}
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
06-28-2010, 01:53 PM
Martin Sivak
Add confirmation dialog when loading dlabel DDs
The condition is wrong and I will fix it..
There is a bug, but for rhel and I meant to add this to Fedora first.. I could clone it I suppose, but I'm not sure about confidentiality here..
--
Martin Sivák
msivak@redhat.com
Red Hat Czech
Anaconda team / Brno, CZ
----- "Hans de Goede" <hdegoede@redhat.com> wrote:
> Hi,
>
> The stopNewt test is different from the startNewt test, which
> does not seem right. Also is there no bug number for this issue?
>
> Not even a related one ?
>
> Regards,
>
> Hans
>
>
> On 06/28/2010 01:59 PM, Martin Sivak wrote:
> > ---
> > loader/loader.c | 35 +++++++++++++++++++++++++++++++++++
> > 1 files changed, 35 insertions(+), 0 deletions(-)
> >
> > diff --git a/loader/loader.c b/loader/loader.c
> > index 55cb0f8..c13956c 100644
> > --- a/loader/loader.c
> > +++ b/loader/loader.c
> > @@ -2036,7 +2036,37 @@ int main(int argc, char ** argv) {
> > logMessage(INFO, "Trying to detect vendor driver discs");
> > dd = findDriverDiskByLabel();
> > dditer = dd;
> > +
> > + if (dd&& !loaderData.ksfile) {
> > + startNewt();
> > + }
> > +
> > +
> > while(dditer) {
> > + /* If in interactive mode, ask for confirmation before
> loading the DD */
> > + if (!loaderData.ksfile) {
> > + char * buf;
> > +
> > + checked_asprintf(&buf,
> > + _("Driver disc was detected in %s.
> "
> > + "Do you want to use it?."),
> dditer->data);
> > +
> > + rc = newtWinChoice(_("Driver disc detected"),
> _("Use it"), _("Skip it"),
> > + buf);
> > + free(buf);
> > + if (rc == 2) {
> > + logMessage(INFO, "Skipping driver disk %s.",
> (char*)(dditer->data));
> > +
> > + /* clean the device record */
> > + free((char*)(dditer->data));
> > + dditer->data = NULL;
> > +
> > + /* next DD */
> > + dditer = g_slist_next(dditer);
> > + continue;
> > + }
> > + }
> > +
> > /* load the DD */
> > if (loadDriverDiskFromPartition(&loaderData,
> (char*)(dditer->data))) {
> > logMessage(ERROR, "Automatic driver disk loader
> failed for %s.", (char*)(dditer->data));
> > @@ -2052,6 +2082,11 @@ int main(int argc, char ** argv) {
> > /* next DD */
> > dditer = g_slist_next(dditer);
> > }
> > +
> > + if (!dd&& loaderData.ksfile) {
> > + stopNewt();
> > + }
> > +
> > g_slist_free(dd);
> > }
> >
>
> _______________________________________________
> Anaconda-devel-list mailing list
> Anaconda-devel-list@redhat.com
> https://www.redhat.com/mailman/listinfo/anaconda-devel-list
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
06-28-2010, 02:14 PM
Hans de Goede
Add confirmation dialog when loading dlabel DDs
Hi,
On 06/28/2010 03:53 PM, Martin Sivak wrote:
The condition is wrong and I will fix it..
There is a bug, but for rhel and I meant to add this to Fedora first.. I could clone it I suppose, but I'm not sure about confidentiality here..
It is perfectly fine to use rhel bz numbers in master commits
no need to clone bugs for Fedora.
Regards,
Hans
--
Martin Sivák
msivak@redhat.com
Red Hat Czech
Anaconda team / Brno, CZ
----- "Hans de Goede"<hdegoede@redhat.com> wrote:
Hi,
The stopNewt test is different from the startNewt test, which
does not seem right. Also is there no bug number for this issue?