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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ---
  2. gconf.glade | 2 +-
  3. mconf.c | 4 ++--
  4. zconf.tab.c_shipped | 2 +-
  5. zconf.y | 2 +-
  6. 4 files changed, 5 insertions(+), 5 deletions(-)
  7. Index: config/gconf.glade
  8. ===================================================================
  9. --- config.orig/gconf.glade
  10. +++ config/gconf.glade
  11. @@ -4,7 +4,7 @@
  12. <widget class="GtkWindow" id="window1">
  13. <property name="visible">True</property>
  14. - <property name="title" translatable="yes">Gtk Kernel Configurator</property>
  15. + <property name="title" translatable="yes">Gtk Buildroot Configurator</property>
  16. <property name="type">GTK_WINDOW_TOPLEVEL</property>
  17. <property name="window_position">GTK_WIN_POS_NONE</property>
  18. <property name="modal">False</property>
  19. Index: config/mconf.c
  20. ===================================================================
  21. --- config.orig/mconf.c
  22. +++ config/mconf.c
  23. @@ -178,9 +178,9 @@
  24. "Arrow keys navigate the menu. "
  25. "<Enter> selects submenus --->. "
  26. "Highlighted letters are hotkeys. "
  27. - "Pressing <Y> includes, <N> excludes, <M> modularizes features. "
  28. + "Pressing <Y> selectes a feature, while <N> will exclude a feature. "
  29. "Press <Esc><Esc> to exit, <?> for Help, </> for Search. "
  30. - "Legend: [*] built-in [ ] excluded <M> module < > module capable"),
  31. + "Legend: [*] feature is selected [ ] feature is excluded"),
  32. radiolist_instructions[] = N_(
  33. "Use the arrow keys to navigate this window or "
  34. "press the hotkey of the item you wish to select "
  35. Index: config/zconf.tab.c_shipped
  36. ===================================================================
  37. --- config.orig/zconf.tab.c_shipped
  38. +++ config/zconf.tab.c_shipped
  39. @@ -2256,7 +2256,7 @@
  40. modules_sym = sym_lookup(NULL, 0);
  41. modules_sym->type = S_BOOLEAN;
  42. modules_sym->flags |= SYMBOL_AUTO;
  43. - rootmenu.prompt = menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL);
  44. + rootmenu.prompt = menu_add_prompt(P_MENU, "Buildroot Configuration", NULL);
  45. #if YYDEBUG
  46. if (getenv("ZCONF_DEBUG"))
  47. Index: config/zconf.y
  48. ===================================================================
  49. --- config.orig/zconf.y
  50. +++ config/zconf.y
  51. @@ -501,7 +501,7 @@
  52. modules_sym = sym_lookup(NULL, 0);
  53. modules_sym->type = S_BOOLEAN;
  54. modules_sym->flags |= SYMBOL_AUTO;
  55. - rootmenu.prompt = menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL);
  56. + rootmenu.prompt = menu_add_prompt(P_MENU, "Buildroot Configuration", NULL);
  57. #if YYDEBUG
  58. if (getenv("ZCONF_DEBUG"))