2
1

01-kconfig-kernel-to-buildroot.patch 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. ---
  2. confdata.c | 4 ++--
  3. gconf.glade | 2 +-
  4. mconf.c | 4 ++--
  5. zconf.tab.c_shipped | 2 +-
  6. zconf.y | 2 +-
  7. 5 files changed, 7 insertions(+), 7 deletions(-)
  8. Index: b/gconf.glade
  9. ===================================================================
  10. --- a/gconf.glade
  11. +++ b/gconf.glade
  12. @@ -4,7 +4,7 @@
  13. <widget class="GtkWindow" id="window1">
  14. <property name="visible">True</property>
  15. - <property name="title" translatable="yes">Gtk Kernel Configurator</property>
  16. + <property name="title" translatable="yes">Gtk Buildroot Configurator</property>
  17. <property name="type">GTK_WINDOW_TOPLEVEL</property>
  18. <property name="window_position">GTK_WIN_POS_NONE</property>
  19. <property name="modal">False</property>
  20. Index: b/mconf.c
  21. ===================================================================
  22. --- a/mconf.c
  23. +++ b/mconf.c
  24. @@ -178,9 +178,9 @@
  25. "Arrow keys navigate the menu. "
  26. "<Enter> selects submenus --->. "
  27. "Highlighted letters are hotkeys. "
  28. - "Pressing <Y> includes, <N> excludes, <M> modularizes features. "
  29. + "Pressing <Y> selectes a feature, while <N> will exclude a feature. "
  30. "Press <Esc><Esc> to exit, <?> for Help, </> for Search. "
  31. - "Legend: [*] built-in [ ] excluded <M> module < > module capable"),
  32. + "Legend: [*] feature is selected [ ] feature is excluded"),
  33. radiolist_instructions[] = N_(
  34. "Use the arrow keys to navigate this window or "
  35. "press the hotkey of the item you wish to select "
  36. Index: b/zconf.tab.c_shipped
  37. ===================================================================
  38. --- a/zconf.tab.c_shipped
  39. +++ b/zconf.tab.c_shipped
  40. @@ -2259,7 +2259,7 @@
  41. modules_sym = sym_lookup(NULL, 0);
  42. modules_sym->type = S_BOOLEAN;
  43. modules_sym->flags |= SYMBOL_AUTO;
  44. - rootmenu.prompt = menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL);
  45. + rootmenu.prompt = menu_add_prompt(P_MENU, "Buildroot Configuration", NULL);
  46. if (getenv("ZCONF_DEBUG"))
  47. zconfdebug = 1;
  48. Index: b/zconf.y
  49. ===================================================================
  50. --- a/zconf.y
  51. +++ b/zconf.y
  52. @@ -496,7 +496,7 @@
  53. modules_sym = sym_lookup(NULL, 0);
  54. modules_sym->type = S_BOOLEAN;
  55. modules_sym->flags |= SYMBOL_AUTO;
  56. - rootmenu.prompt = menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL);
  57. + rootmenu.prompt = menu_add_prompt(P_MENU, "Buildroot Configuration", NULL);
  58. if (getenv("ZCONF_DEBUG"))
  59. zconfdebug = 1;
  60. Index: b/confdata.c
  61. ===================================================================
  62. --- a/confdata.c
  63. +++ b/confdata.c
  64. @@ -25,7 +26,7 @@
  65. static const char *conf_filename;
  66. static int conf_lineno, conf_warnings, conf_unsaved;
  67. -const char conf_defname[] = "arch/$ARCH/defconfig";
  68. +const char conf_defname[] = ".defconfig";
  69. static void conf_warning(const char *fmt, ...)
  70. {
  71. @@ -63,7 +64,7 @@
  72. const char *conf_get_configname(void)
  73. {
  74. - char *name = getenv("KCONFIG_CONFIG");
  75. + char *name = getenv("BUILDROOT_CONFIG");
  76. return name ? name : ".config";
  77. }