diff -uNp --exclude='*.rej' --exclude='*.orig' --exclude='*.dmn' -r linux-2.6.10-rc3/Makefile linux-2.6.10-rc3-daconfig/Makefile --- linux-2.6.10-rc3/Makefile 2004-12-23 00:41:28.000000000 +0000 +++ linux-2.6.10-rc3-daconfig/Makefile 2004-12-23 00:43:37.000000000 +0000 @@ -355,7 +355,7 @@ AFLAGS := -D__ASSEMBLY__ export VERSION PATCHLEVEL SUBLEVEL EXTRAVERSION LOCALVERSION KERNELRELEASE \ ARCH CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC \ CPP AR NM STRIP OBJCOPY OBJDUMP MAKE AWK GENKSYMS PERL UTS_MACHINE \ - HOSTCXX HOSTCXXFLAGS LDFLAGS_MODULE CHECK CHECKFLAGS + HOSTCXX HOSTCXXFLAGS LDFLAGS_MODULE CHECK CHECKFLAGS NAME export CPPFLAGS NOSTDINC_FLAGS LINUXINCLUDE OBJCOPYFLAGS LDFLAGS export CFLAGS CFLAGS_KERNEL CFLAGS_MODULE diff -uNp --exclude='*.rej' --exclude='*.orig' --exclude='*.dmn' -r linux-2.6.10-rc3/scripts/kconfig/confdata.c linux-2.6.10-rc3-daconfig/scripts/kconfig/confdata.c --- linux-2.6.10-rc3/scripts/kconfig/confdata.c 2004-12-23 00:41:40.000000000 +0000 +++ linux-2.6.10-rc3-daconfig/scripts/kconfig/confdata.c 2004-12-23 00:46:37.000000000 +0000 @@ -314,20 +314,22 @@ int conf_write(const char *name) fprintf(out, "#\n" "# Automatically generated make config: don't edit\n" - "# Linux kernel version: %s\n" + "# Linux kernel version: %s \"%s\"\n" "%s%s" "#\n", sym_get_string_value(sym), + getenv("NAME"), use_timestamp ? "# " : "", use_timestamp ? ctime(&now) : ""); if (out_h) fprintf(out_h, "/*\n" " * Automatically generated C config: don't edit\n" - " * Linux kernel version: %s\n" + " * Linux kernel version: %s \"%s\"\n" "%s%s" " */\n" "#define AUTOCONF_INCLUDED\n", sym_get_string_value(sym), + getenv("NAME"), use_timestamp ? " * " : "", use_timestamp ? ctime(&now) : ""); diff -uNp --exclude='*.rej' --exclude='*.orig' --exclude='*.dmn' -r linux-2.6.10-rc3/scripts/kconfig/gconf.c linux-2.6.10-rc3-daconfig/scripts/kconfig/gconf.c --- linux-2.6.10-rc3/scripts/kconfig/gconf.c 2004-10-18 22:55:27.000000000 +0100 +++ linux-2.6.10-rc3-daconfig/scripts/kconfig/gconf.c 2004-12-23 00:43:37.000000000 +0000 @@ -275,8 +275,8 @@ void init_main_window(const gchar * glad /*"style", PANGO_STYLE_OBLIQUE, */ NULL); - sprintf(title, "Linux Kernel v%s Configuration", - getenv("KERNELRELEASE")); + sprintf(title, "Linux Kernel v%s \"%s\" Configuration", + getenv("KERNELRELEASE"),getenv("NAME")); gtk_window_set_title(GTK_WINDOW(main_wnd), title); gtk_widget_show(main_wnd); diff -uNp --exclude='*.rej' --exclude='*.orig' --exclude='*.dmn' -r linux-2.6.10-rc3/scripts/kconfig/mconf.c linux-2.6.10-rc3-daconfig/scripts/kconfig/mconf.c --- linux-2.6.10-rc3/scripts/kconfig/mconf.c 2004-12-23 00:41:40.000000000 +0000 +++ linux-2.6.10-rc3-daconfig/scripts/kconfig/mconf.c 2004-12-23 00:43:37.000000000 +0000 @@ -897,8 +897,8 @@ int main(int ac, char **av) sym = sym_lookup("KERNELRELEASE", 0); sym_calc_value(sym); - sprintf(menu_backtitle, "Linux Kernel v%s Configuration", - sym_get_string_value(sym)); + sprintf(menu_backtitle, "Linux Kernel v%s \"%s\" Configuration", + sym_get_string_value(sym), getenv("NAME")); mode = getenv("MENUCONFIG_MODE"); if (mode) { diff -uNp --exclude='*.rej' --exclude='*.orig' --exclude='*.dmn' -r linux-2.6.10-rc3/scripts/kconfig/qconf.cc linux-2.6.10-rc3-daconfig/scripts/kconfig/qconf.cc --- linux-2.6.10-rc3/scripts/kconfig/qconf.cc 2004-10-18 22:53:07.000000000 +0100 +++ linux-2.6.10-rc3-daconfig/scripts/kconfig/qconf.cc 2004-12-23 00:43:37.000000000 +0000 @@ -1112,14 +1112,14 @@ void ConfigMainWindow::loadConfig(void) if (s.isNull()) return; if (conf_read(s.latin1())) - QMessageBox::information(this, "qconf", "Unable to load configuration!"); + QMessageBox::information(this, "Error", "Unable to load configuration!"); ConfigView::updateListAll(); } void ConfigMainWindow::saveConfig(void) { if (conf_write(NULL)) - QMessageBox::information(this, "qconf", "Unable to save configuration!"); + QMessageBox::information(this, "Error", "Unable to save configuration!"); } void ConfigMainWindow::saveConfigAs(void) @@ -1128,7 +1128,7 @@ void ConfigMainWindow::saveConfigAs(void if (s.isNull()) return; if (conf_write(s.latin1())) - QMessageBox::information(this, "qconf", "Unable to save configuration!"); + QMessageBox::information(this, "Error", "Unable to save configuration!"); } void ConfigMainWindow::changeMenu(struct menu *menu) @@ -1264,7 +1264,7 @@ void ConfigMainWindow::closeEvent(QClose e->accept(); return; } - QMessageBox mb("qconf", "Save configuration?", QMessageBox::Warning, + QMessageBox mb("Save .config?", "Save configuration?", QMessageBox::Warning, QMessageBox::Yes | QMessageBox::Default, QMessageBox::No, QMessageBox::Cancel | QMessageBox::Escape); mb.setButtonText(QMessageBox::Yes, "&Save Changes"); mb.setButtonText(QMessageBox::No, "&Discard Changes"); @@ -1283,7 +1283,8 @@ void ConfigMainWindow::closeEvent(QClose void ConfigMainWindow::showIntro(void) { - static char str[] = "Welcome to the qconf graphical kernel configuration tool for Linux.\n\n" + static char str[1000]; + sprintf(str, "Welcome to the qconf graphical kernel configuration tool for Linux %s \"%s\".\n\n" "For each option, a blank box indicates the feature is disabled, a check\n" "indicates it is enabled, and a dot indicates that it is to be compiled\n" "as a module. Clicking on the box will cycle through the three states.\n\n" @@ -1293,9 +1294,10 @@ void ConfigMainWindow::showIntro(void) "options must be enabled to support the option you are interested in, you can\n" "still view the help of a grayed-out option.\n\n" "Toggling Show Debug Info under the Options menu will show the dependencies,\n" - "which you can then match by examining other options.\n\n"; + "which you can then match by examining other options.\n\n", + getenv("KERNELRELEASE"), getenv("NAME")); - QMessageBox::information(this, "qconf", str); + QMessageBox::information(this, "Introduction", str); } void ConfigMainWindow::showAbout(void) @@ -1303,7 +1305,7 @@ void ConfigMainWindow::showAbout(void) static char str[] = "qconf is Copyright (C) 2002 Roman Zippel .\n\n" "Bug reports and feature request can also be entered at http://bugzilla.kernel.org/\n"; - QMessageBox::information(this, "qconf", str); + QMessageBox::information(this, "About", str); } void ConfigMainWindow::saveSettings(void) @@ -1371,7 +1373,12 @@ int main(int ac, char** av) { ConfigMainWindow* v; const char *name; - + static char title[100]; + + sprintf(title,"Linux Kernel %s \"%s\" Configuration", + getenv("KERNELRELEASE"), getenv("NAME") + ); + #ifndef LKC_DIRECT_LINK kconfig_load(); #endif @@ -1397,6 +1404,7 @@ int main(int ac, char** av) v = new ConfigMainWindow(); + v->setCaption(title); //zconfdump(stdout); v->show(); configApp->connect(configApp, SIGNAL(lastWindowClosed()), SLOT(quit())); diff -uNp --exclude='*.rej' --exclude='*.orig' --exclude='*.dmn' -r linux-2.6.10-rc3/scripts/kconfig/zconf.tab.c_shipped linux-2.6.10-rc3-daconfig/scripts/kconfig/zconf.tab.c_shipped --- linux-2.6.10-rc3/scripts/kconfig/zconf.tab.c_shipped 2004-10-18 22:54:55.000000000 +0100 +++ linux-2.6.10-rc3-daconfig/scripts/kconfig/zconf.tab.c_shipped 2004-12-23 00:43:37.000000000 +0000 @@ -1919,13 +1919,16 @@ void conf_parse(const char *name) { struct symbol *sym; int i; + static char title[100]; zconf_initscan(name); + sprintf(title,"Linux Kernel %s \"%s\" Configuration", + getenv("KERNELRELEASE"), getenv("NAME")); sym_init(); menu_init(); modules_sym = sym_lookup("MODULES", 0); - rootmenu.prompt = menu_add_prop(P_MENU, "Linux Kernel Configuration", NULL, NULL); + rootmenu.prompt = menu_add_prop(P_MENU, title, NULL, NULL); //zconfdebug = 1; zconfparse();