Pierre Labastie wrote:
>> For the ALFS web page, I do not know exactly how to proceed. I do not
>> know much of html, actually, but I may try to use the existing formatting.
I can help you with that. Just ask if you are unsure.
>> About the last comment of Bruce:
>> I'll have a look. IIRC, it should not be hard to add an option for not
>> starting automatically jhalfs after make.
>> My main concern is "in which menu"?
The patch didn't work. I think it's more in menu/mconf.c. At the very end.
Index: menu/mconf.c
===================================================================
--- menu/mconf.c (revision 3673)
+++ menu/mconf.c (working copy)
@@ -969,8 +969,19 @@
conf_write(NULL);
printf("\n"
"*** End of JHALFS configuration.\n");
- } else
- printf("\n\nYour JHALFS configuration changes were NOT
saved.\n\n");
+ }
+ else
+ {
+ init_dialog();
+ do {
+ stat = dialog_yesno(NULL,
+ "Changes were NOT saved. Continue (Y/n)?", 5, 60);
+ } while (stat < 0);
+ end_dialog();
+
+ if ( stat != 0 ) exit(0);
+ //printf("\n\nYour JHALFS configuration changes were NOT
saved.\n\n");
+ }
return 0;
}
That at least shows an abort if desired.
-- Bruce
--
http://linuxfromscratch.org/mailman/listinfo/alfs-discuss
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page