blob: eccc87a441e713a8b9013e3b286a176688ece372 [file] [log] [blame]
Patrick Georgi53ea1d42019-11-22 16:55:58 +01001// SPDX-License-Identifier: GPL-2.0
Patrick Georgi0588d192009-08-12 15:00:51 +00002/*
3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
Patrick Georgi0588d192009-08-12 15:00:51 +00004 *
5 * Introduced single menu mode (show all sub-menus in one large tree).
6 * 2002-11-06 Petr Baudis <pasky@ucw.cz>
7 *
8 * i18n, 2005, Arnaldo Carvalho de Melo <acme@conectiva.com.br>
9 */
10
11#include <ctype.h>
12#include <errno.h>
13#include <fcntl.h>
14#include <limits.h>
15#include <stdarg.h>
16#include <stdlib.h>
17#include <string.h>
Patrick Georgi53ea1d42019-11-22 16:55:58 +010018#include <strings.h>
Patrick Georgid5208402014-04-11 20:24:06 +020019#include <signal.h>
Patrick Georgi0588d192009-08-12 15:00:51 +000020#include <unistd.h>
Patrick Georgi0588d192009-08-12 15:00:51 +000021
Patrick Georgi0588d192009-08-12 15:00:51 +000022#include "lkc.h"
23#include "lxdialog/dialog.h"
24
Patrick Georgi53ea1d42019-11-22 16:55:58 +010025static const char mconf_readme[] =
Patrick Georgi0588d192009-08-12 15:00:51 +000026"Overview\n"
27"--------\n"
Patrick Georgid5208402014-04-11 20:24:06 +020028"This interface lets you select features and parameters for the build.\n"
29"Features can either be built-in, modularized, or ignored. Parameters\n"
30"must be entered in as decimal or hexadecimal numbers or text.\n"
Patrick Georgi0588d192009-08-12 15:00:51 +000031"\n"
32"Menu items beginning with following braces represent features that\n"
33" [ ] can be built in or removed\n"
34" < > can be built in, modularized or removed\n"
35" { } can be built in or modularized (selected by other feature)\n"
36" - - are selected by other feature,\n"
37"while *, M or whitespace inside braces means to build in, build as\n"
38"a module or to exclude the feature respectively.\n"
39"\n"
40"To change any of these features, highlight it with the cursor\n"
41"keys and press <Y> to build it in, <M> to make it a module or\n"
Patrick Georgid5208402014-04-11 20:24:06 +020042"<N> to remove it. You may also press the <Space Bar> to cycle\n"
43"through the available options (i.e. Y->N->M->Y).\n"
Patrick Georgi0588d192009-08-12 15:00:51 +000044"\n"
45"Some additional keyboard hints:\n"
46"\n"
47"Menus\n"
48"----------\n"
Patrick Georgid5208402014-04-11 20:24:06 +020049"o Use the Up/Down arrow keys (cursor keys) to highlight the item you\n"
50" wish to change or the submenu you wish to select and press <Enter>.\n"
51" Submenus are designated by \"--->\", empty ones by \"----\".\n"
Patrick Georgi0588d192009-08-12 15:00:51 +000052"\n"
53" Shortcut: Press the option's highlighted letter (hotkey).\n"
54" Pressing a hotkey more than once will sequence\n"
55" through all visible items which use that hotkey.\n"
56"\n"
57" You may also use the <PAGE UP> and <PAGE DOWN> keys to scroll\n"
58" unseen options into view.\n"
59"\n"
60"o To exit a menu use the cursor keys to highlight the <Exit> button\n"
61" and press <ENTER>.\n"
62"\n"
63" Shortcut: Press <ESC><ESC> or <E> or <X> if there is no hotkey\n"
64" using those letters. You may press a single <ESC>, but\n"
65" there is a delayed response which you may find annoying.\n"
66"\n"
67" Also, the <TAB> and cursor keys will cycle between <Select>,\n"
Patrick Georgid5208402014-04-11 20:24:06 +020068" <Exit>, <Help>, <Save>, and <Load>.\n"
Patrick Georgi0588d192009-08-12 15:00:51 +000069"\n"
70"o To get help with an item, use the cursor keys to highlight <Help>\n"
Patrick Georgid5208402014-04-11 20:24:06 +020071" and press <ENTER>.\n"
Patrick Georgi0588d192009-08-12 15:00:51 +000072"\n"
73" Shortcut: Press <H> or <?>.\n"
74"\n"
Patrick Georgid5208402014-04-11 20:24:06 +020075"o To toggle the display of hidden options, press <Z>.\n"
76"\n"
Patrick Georgi0588d192009-08-12 15:00:51 +000077"\n"
78"Radiolists (Choice lists)\n"
79"-----------\n"
80"o Use the cursor keys to select the option you wish to set and press\n"
81" <S> or the <SPACE BAR>.\n"
82"\n"
83" Shortcut: Press the first letter of the option you wish to set then\n"
84" press <S> or <SPACE BAR>.\n"
85"\n"
86"o To see available help for the item, use the cursor keys to highlight\n"
87" <Help> and Press <ENTER>.\n"
88"\n"
89" Shortcut: Press <H> or <?>.\n"
90"\n"
91" Also, the <TAB> and cursor keys will cycle between <Select> and\n"
92" <Help>\n"
93"\n"
94"\n"
95"Data Entry\n"
96"-----------\n"
97"o Enter the requested information and press <ENTER>\n"
98" If you are entering hexadecimal values, it is not necessary to\n"
99" add the '0x' prefix to the entry.\n"
100"\n"
101"o For help, use the <TAB> or cursor keys to highlight the help option\n"
102" and press <ENTER>. You can try <TAB><H> as well.\n"
103"\n"
104"\n"
105"Text Box (Help Window)\n"
106"--------\n"
107"o Use the cursor keys to scroll up/down/left/right. The VI editor\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200108" keys h,j,k,l function here as do <u>, <d>, <SPACE BAR> and <B> for\n"
109" those who are familiar with less and lynx.\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000110"\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200111"o Press <E>, <X>, <q>, <Enter> or <Esc><Esc> to exit.\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000112"\n"
113"\n"
114"Alternate Configuration Files\n"
115"-----------------------------\n"
116"Menuconfig supports the use of alternate configuration files for\n"
117"those who, for various reasons, find it necessary to switch\n"
118"between different configurations.\n"
119"\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200120"The <Save> button will let you save the current configuration to\n"
121"a file of your choosing. Use the <Load> button to load a previously\n"
122"saved alternate configuration.\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000123"\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200124"Even if you don't use alternate configuration files, but you find\n"
125"during a Menuconfig session that you have completely messed up your\n"
126"settings, you may use the <Load> button to restore your previously\n"
127"saved settings from \".config\" without restarting Menuconfig.\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000128"\n"
129"Other information\n"
130"-----------------\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200131"If you use Menuconfig in an XTERM window, make sure you have your\n"
132"$TERM variable set to point to an xterm definition which supports\n"
133"color. Otherwise, Menuconfig will look rather bad. Menuconfig will\n"
134"not display correctly in an RXVT window because rxvt displays only one\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000135"intensity of color, bright.\n"
136"\n"
137"Menuconfig will display larger menus on screens or xterms which are\n"
138"set to display more than the standard 25 row by 80 column geometry.\n"
139"In order for this to work, the \"stty size\" command must be able to\n"
140"display the screen's current row and column geometry. I STRONGLY\n"
141"RECOMMEND that you make sure you do NOT have the shell variables\n"
142"LINES and COLUMNS exported into your environment. Some distributions\n"
143"export those variables via /etc/profile. Some ncurses programs can\n"
144"become confused when those variables (LINES & COLUMNS) don't reflect\n"
145"the true screen size.\n"
146"\n"
147"Optional personality available\n"
148"------------------------------\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200149"If you prefer to have all of the options listed in a single menu,\n"
150"rather than the default multimenu hierarchy, run the menuconfig with\n"
151"MENUCONFIG_MODE environment variable set to single_menu. Example:\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000152"\n"
153"make MENUCONFIG_MODE=single_menu menuconfig\n"
154"\n"
155"<Enter> will then unroll the appropriate category, or enfold it if it\n"
156"is already unrolled.\n"
157"\n"
158"Note that this mode can eventually be a little more CPU expensive\n"
159"(especially with a larger number of unrolled categories) than the\n"
160"default mode.\n"
161"\n"
Patrick Georgi7eab8ef2023-11-20 18:03:34 +0100162
163"Search\n"
164"-------\n"
165"Pressing the forward-slash (/) anywhere brings up a search dialog box.\n"
166"\n"
167
Patrick Georgi0588d192009-08-12 15:00:51 +0000168"Different color themes available\n"
169"--------------------------------\n"
170"It is possible to select different color themes using the variable\n"
171"MENUCONFIG_COLOR. To select a theme use:\n"
172"\n"
173"make MENUCONFIG_COLOR=<theme> menuconfig\n"
174"\n"
175"Available themes are\n"
176" mono => selects colors suitable for monochrome displays\n"
177" blackbg => selects a color scheme with black background\n"
178" classic => theme with blue background. The classic look\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200179" bluetitle => an LCD friendly version of classic. (default)\n"
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100180"\n",
181menu_instructions[] =
Patrick Georgi0588d192009-08-12 15:00:51 +0000182 "Arrow keys navigate the menu. "
Patrick Georgid5208402014-04-11 20:24:06 +0200183 "<Enter> selects submenus ---> (or empty submenus ----). "
Patrick Georgi0588d192009-08-12 15:00:51 +0000184 "Highlighted letters are hotkeys. "
185 "Pressing <Y> includes, <N> excludes, <M> modularizes features. "
186 "Press <Esc><Esc> to exit, <?> for Help, </> for Search. "
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100187 "Legend: [*] built-in [ ] excluded <M> module < > module capable",
188radiolist_instructions[] =
Patrick Georgi0588d192009-08-12 15:00:51 +0000189 "Use the arrow keys to navigate this window or "
190 "press the hotkey of the item you wish to select "
191 "followed by the <SPACE BAR>. "
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100192 "Press <?> for additional information about this option.",
193inputbox_instructions_int[] =
Patrick Georgi0588d192009-08-12 15:00:51 +0000194 "Please enter a decimal value. "
195 "Fractions will not be accepted. "
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100196 "Use the <TAB> key to move from the input field to the buttons below it.",
197inputbox_instructions_hex[] =
Patrick Georgi0588d192009-08-12 15:00:51 +0000198 "Please enter a hexadecimal value. "
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100199 "Use the <TAB> key to move from the input field to the buttons below it.",
200inputbox_instructions_string[] =
Patrick Georgi0588d192009-08-12 15:00:51 +0000201 "Please enter a string value. "
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100202 "Use the <TAB> key to move from the input field to the buttons below it.",
203setmod_text[] =
Patrick Georgi0588d192009-08-12 15:00:51 +0000204 "This feature depends on another which has been configured as a module.\n"
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100205 "As a result, this feature will be built as a module.",
206load_config_text[] =
Patrick Georgi0588d192009-08-12 15:00:51 +0000207 "Enter the name of the configuration file you wish to load. "
208 "Accept the name shown to restore the configuration you "
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100209 "last retrieved. Leave blank to abort.",
210load_config_help[] =
Patrick Georgi0588d192009-08-12 15:00:51 +0000211 "\n"
212 "For various reasons, one may wish to keep several different\n"
213 "configurations available on a single machine.\n"
214 "\n"
215 "If you have saved a previous configuration in a file other than the\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200216 "default one, entering its name here will allow you to modify that\n"
217 "configuration.\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000218 "\n"
219 "If you are uncertain, then you have probably never used alternate\n"
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100220 "configuration files. You should therefore leave this blank to abort.\n",
221save_config_text[] =
Patrick Georgi0588d192009-08-12 15:00:51 +0000222 "Enter a filename to which this configuration should be saved "
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100223 "as an alternate. Leave blank to abort.",
224save_config_help[] =
Patrick Georgi0588d192009-08-12 15:00:51 +0000225 "\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200226 "For various reasons, one may wish to keep different configurations\n"
227 "available on a single machine.\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000228 "\n"
229 "Entering a file name here will allow you to later retrieve, modify\n"
230 "and use the current configuration as an alternate to whatever\n"
231 "configuration options you have selected at that time.\n"
232 "\n"
233 "If you are uncertain what all this means then you should probably\n"
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100234 "leave this blank.\n",
235search_help[] =
Patrick Georgi0588d192009-08-12 15:00:51 +0000236 "\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200237 "Search for symbols and display their relations.\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000238 "Regular expressions are allowed.\n"
239 "Example: search for \"^FOO\"\n"
240 "Result:\n"
241 "-----------------------------------------------------------------\n"
242 "Symbol: FOO [=m]\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200243 "Type : tristate\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000244 "Prompt: Foo bus is used to drive the bar HW\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200245 " Location:\n"
246 " -> Bus options (PCI, PCMCIA, EISA, ISA)\n"
247 " -> PCI support (PCI [=y])\n"
248 "(1) -> PCI access mode (<choice> [=y])\n"
249 " Defined at drivers/pci/Kconfig:47\n"
250 " Depends on: X86_LOCAL_APIC && X86_IO_APIC || IA64\n"
251 " Selects: LIBCRC32\n"
252 " Selected by: BAR [=n]\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000253 "-----------------------------------------------------------------\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200254 "o The line 'Type:' shows the type of the configuration option for\n"
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100255 " this symbol (bool, tristate, string, ...)\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000256 "o The line 'Prompt:' shows the text used in the menu structure for\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200257 " this symbol\n"
258 "o The 'Defined at' line tells at what file / line number the symbol\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000259 " is defined\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200260 "o The 'Depends on:' line tells what symbols need to be defined for\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000261 " this symbol to be visible in the menu (selectable)\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200262 "o The 'Location:' lines tells where in the menu structure this symbol\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000263 " is located\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200264 " A location followed by a [=y] indicates that this is a\n"
265 " selectable menu item - and the current value is displayed inside\n"
266 " brackets.\n"
267 " Press the key in the (#) prefix to jump directly to that\n"
268 " location. You will be returned to the current search results\n"
269 " after exiting this new menu.\n"
270 "o The 'Selects:' line tells what symbols will be automatically\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000271 " selected if this symbol is selected (y or m)\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200272 "o The 'Selected by' line tells what symbol has selected this symbol\n"
Patrick Georgi0588d192009-08-12 15:00:51 +0000273 "\n"
274 "Only relevant lines are shown.\n"
275 "\n\n"
276 "Search examples:\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200277 "Examples: USB => find all symbols containing USB\n"
278 " ^USB => find all symbols starting with USB\n"
279 " USB$ => find all symbols ending with USB\n"
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100280 "\n";
Patrick Georgi0588d192009-08-12 15:00:51 +0000281
282static int indent;
283static struct menu *current_menu;
284static int child_count;
285static int single_menu_mode;
Patrick Georgid5208402014-04-11 20:24:06 +0200286static int show_all_options;
287static int save_and_exit;
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100288static int silent;
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100289static int jump_key_char;
Patrick Georgi0588d192009-08-12 15:00:51 +0000290
Patrick Georgid5208402014-04-11 20:24:06 +0200291static void conf(struct menu *menu, struct menu *active_menu);
Patrick Georgi0588d192009-08-12 15:00:51 +0000292
Patrick Georgi0588d192009-08-12 15:00:51 +0000293static char filename[PATH_MAX+1];
294static void set_config_filename(const char *config_filename)
295{
296 static char menu_backtitle[PATH_MAX+128];
Patrick Georgi0588d192009-08-12 15:00:51 +0000297
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100298 snprintf(menu_backtitle, sizeof(menu_backtitle), "%s - %s",
299 config_filename, rootmenu.prompt->text);
Patrick Georgi0588d192009-08-12 15:00:51 +0000300 set_dialog_backtitle(menu_backtitle);
301
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100302 snprintf(filename, sizeof(filename), "%s", config_filename);
Patrick Georgi0588d192009-08-12 15:00:51 +0000303}
304
Patrick Georgid5208402014-04-11 20:24:06 +0200305struct subtitle_part {
306 struct list_head entries;
307 const char *text;
308};
309static LIST_HEAD(trail);
310
311static struct subtitle_list *subtitles;
312static void set_subtitle(void)
313{
314 struct subtitle_part *sp;
315 struct subtitle_list *pos, *tmp;
316
317 for (pos = subtitles; pos != NULL; pos = tmp) {
318 tmp = pos->next;
319 free(pos);
320 }
321
322 subtitles = NULL;
323 list_for_each_entry(sp, &trail, entries) {
324 if (sp->text) {
325 if (pos) {
Stefan Reinauer5910aa82015-04-06 01:30:44 +0200326 pos->next = xcalloc(1, sizeof(*pos));
Patrick Georgid5208402014-04-11 20:24:06 +0200327 pos = pos->next;
328 } else {
Stefan Reinauer5910aa82015-04-06 01:30:44 +0200329 subtitles = pos = xcalloc(1, sizeof(*pos));
Patrick Georgid5208402014-04-11 20:24:06 +0200330 }
331 pos->text = sp->text;
332 }
333 }
334
335 set_dialog_subtitles(subtitles);
336}
337
338static void reset_subtitle(void)
339{
340 struct subtitle_list *pos, *tmp;
341
342 for (pos = subtitles; pos != NULL; pos = tmp) {
343 tmp = pos->next;
344 free(pos);
345 }
346 subtitles = NULL;
347 set_dialog_subtitles(subtitles);
348}
349
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100350static int show_textbox_ext(const char *title, const char *text, int r, int c,
351 int *vscroll, int *hscroll,
352 int (*extra_key_cb)(int, size_t, size_t, void *),
353 void *data)
Patrick Georgi34b149b2023-11-20 18:09:23 +0100354{
355 dialog_clear();
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100356 return dialog_textbox(title, text, r, c, vscroll, hscroll,
357 extra_key_cb, data);
Patrick Georgi34b149b2023-11-20 18:09:23 +0100358}
359
360static void show_textbox(const char *title, const char *text, int r, int c)
361{
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100362 show_textbox_ext(title, text, r, c, NULL, NULL, NULL, NULL);
Patrick Georgi34b149b2023-11-20 18:09:23 +0100363}
364
365static void show_helptext(const char *title, const char *text)
366{
367 show_textbox(title, text, 0, 0);
368}
369
370static void show_help(struct menu *menu)
371{
372 struct gstr help = str_new();
373
374 help.max_width = getmaxx(stdscr) - 10;
375 menu_get_ext_help(menu, &help);
376
377 show_helptext(menu_get_prompt(menu), str_get(&help));
378 str_free(&help);
379}
380
Patrick Georgid5208402014-04-11 20:24:06 +0200381struct search_data {
382 struct list_head *head;
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100383 struct menu *target;
Patrick Georgid5208402014-04-11 20:24:06 +0200384};
385
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100386static int next_jump_key(int key)
387{
388 if (key < '1' || key > '9')
389 return '1';
390
391 key++;
392
393 if (key > '9')
394 key = '1';
395
396 return key;
397}
398
399static int handle_search_keys(int key, size_t start, size_t end, void *_data)
Patrick Georgid5208402014-04-11 20:24:06 +0200400{
401 struct search_data *data = _data;
402 struct jump_key *pos;
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100403 int index = 0;
404
405 if (key < '1' || key > '9')
406 return 0;
Patrick Georgid5208402014-04-11 20:24:06 +0200407
408 list_for_each_entry(pos, data->head, entries) {
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100409 index = next_jump_key(index);
Patrick Georgid5208402014-04-11 20:24:06 +0200410
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100411 if (pos->offset < start)
412 continue;
Patrick Georgid5208402014-04-11 20:24:06 +0200413
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100414 if (pos->offset >= end)
415 break;
Patrick Georgid5208402014-04-11 20:24:06 +0200416
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100417 if (key == index) {
418 data->target = pos->target;
419 return 1;
Patrick Georgid5208402014-04-11 20:24:06 +0200420 }
421 }
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100422
423 return 0;
424}
425
426int get_jump_key_char(void)
427{
428 jump_key_char = next_jump_key(jump_key_char);
429
430 return jump_key_char;
Patrick Georgid5208402014-04-11 20:24:06 +0200431}
Patrick Georgi0588d192009-08-12 15:00:51 +0000432
433static void search_conf(void)
434{
435 struct symbol **sym_arr;
436 struct gstr res;
Patrick Georgid5208402014-04-11 20:24:06 +0200437 struct gstr title;
Patrick Georgi0588d192009-08-12 15:00:51 +0000438 char *dialog_input;
Patrick Georgid5208402014-04-11 20:24:06 +0200439 int dres, vscroll = 0, hscroll = 0;
440 bool again;
441 struct gstr sttext;
442 struct subtitle_part stpart;
443
444 title = str_new();
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100445 str_printf( &title, "Enter (sub)string or regexp to search for "
446 "(with or without \"%s\")", CONFIG_);
Patrick Georgid5208402014-04-11 20:24:06 +0200447
Patrick Georgi0588d192009-08-12 15:00:51 +0000448again:
449 dialog_clear();
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100450 dres = dialog_inputbox("Search Configuration Parameter",
Patrick Georgid5208402014-04-11 20:24:06 +0200451 str_get(&title),
Patrick Georgi0588d192009-08-12 15:00:51 +0000452 10, 75, "");
453 switch (dres) {
454 case 0:
455 break;
456 case 1:
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100457 show_helptext("Search Configuration", search_help);
Patrick Georgi0588d192009-08-12 15:00:51 +0000458 goto again;
459 default:
Patrick Georgid5208402014-04-11 20:24:06 +0200460 str_free(&title);
Patrick Georgi0588d192009-08-12 15:00:51 +0000461 return;
462 }
463
Patrick Georgid5208402014-04-11 20:24:06 +0200464 /* strip the prefix if necessary */
Patrick Georgi0588d192009-08-12 15:00:51 +0000465 dialog_input = dialog_input_result;
Patrick Georgid5208402014-04-11 20:24:06 +0200466 if (strncasecmp(dialog_input_result, CONFIG_, strlen(CONFIG_)) == 0)
467 dialog_input += strlen(CONFIG_);
468
469 sttext = str_new();
470 str_printf(&sttext, "Search (%s)", dialog_input_result);
471 stpart.text = str_get(&sttext);
472 list_add_tail(&stpart.entries, &trail);
Patrick Georgi0588d192009-08-12 15:00:51 +0000473
474 sym_arr = sym_re_search(dialog_input);
Patrick Georgid5208402014-04-11 20:24:06 +0200475 do {
476 LIST_HEAD(head);
Patrick Georgid5208402014-04-11 20:24:06 +0200477 struct search_data data = {
478 .head = &head,
Patrick Georgid5208402014-04-11 20:24:06 +0200479 };
480 struct jump_key *pos, *tmp;
481
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100482 jump_key_char = 0;
Patrick Georgid5208402014-04-11 20:24:06 +0200483 res = get_relations_str(sym_arr, &head);
484 set_subtitle();
Patrick Georgi7eab8ef2023-11-20 18:03:34 +0100485 dres = show_textbox_ext("Search Results", str_get(&res), 0, 0,
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100486 &vscroll, &hscroll,
487 handle_search_keys, &data);
Patrick Georgid5208402014-04-11 20:24:06 +0200488 again = false;
Patrick Georgi0eab62b2023-11-20 19:49:29 +0100489 if (dres >= '1' && dres <= '9') {
490 assert(data.target != NULL);
491 conf(data.target->parent, data.target);
492 again = true;
493 }
Patrick Georgid5208402014-04-11 20:24:06 +0200494 str_free(&res);
495 list_for_each_entry_safe(pos, tmp, &head, entries)
496 free(pos);
497 } while (again);
Patrick Georgi0588d192009-08-12 15:00:51 +0000498 free(sym_arr);
Patrick Georgid5208402014-04-11 20:24:06 +0200499 str_free(&title);
500 list_del(trail.prev);
501 str_free(&sttext);
Patrick Georgi0588d192009-08-12 15:00:51 +0000502}
503
504static void build_conf(struct menu *menu)
505{
506 struct symbol *sym;
507 struct property *prop;
508 struct menu *child;
509 int type, tmp, doint = 2;
510 tristate val;
511 char ch;
Patrick Georgid5208402014-04-11 20:24:06 +0200512 bool visible;
Patrick Georgi0588d192009-08-12 15:00:51 +0000513
Patrick Georgid5208402014-04-11 20:24:06 +0200514 /*
515 * note: menu_is_visible() has side effect that it will
516 * recalc the value of the symbol.
517 */
518 visible = menu_is_visible(menu);
519 if (show_all_options && !menu_has_prompt(menu))
520 return;
521 else if (!show_all_options && !visible)
Patrick Georgi0588d192009-08-12 15:00:51 +0000522 return;
523
524 sym = menu->sym;
525 prop = menu->prompt;
526 if (!sym) {
527 if (prop && menu != current_menu) {
528 const char *prompt = menu_get_prompt(menu);
529 switch (prop->type) {
530 case P_MENU:
531 child_count++;
Patrick Georgi0588d192009-08-12 15:00:51 +0000532 if (single_menu_mode) {
533 item_make("%s%*c%s",
534 menu->data ? "-->" : "++>",
535 indent + 1, ' ', prompt);
536 } else
Patrick Georgid5208402014-04-11 20:24:06 +0200537 item_make(" %*c%s %s",
538 indent + 1, ' ', prompt,
539 menu_is_empty(menu) ? "----" : "--->");
Patrick Georgi0588d192009-08-12 15:00:51 +0000540 item_set_tag('m');
541 item_set_data(menu);
542 if (single_menu_mode && menu->data)
543 goto conf_childs;
544 return;
545 case P_COMMENT:
546 if (prompt) {
547 child_count++;
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100548 item_make(" %*c*** %s ***", indent + 1, ' ', prompt);
Patrick Georgi0588d192009-08-12 15:00:51 +0000549 item_set_tag(':');
550 item_set_data(menu);
551 }
552 break;
553 default:
554 if (prompt) {
555 child_count++;
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100556 item_make("---%*c%s", indent + 1, ' ', prompt);
Patrick Georgi0588d192009-08-12 15:00:51 +0000557 item_set_tag(':');
558 item_set_data(menu);
559 }
560 }
561 } else
562 doint = 0;
563 goto conf_childs;
564 }
565
566 type = sym_get_type(sym);
567 if (sym_is_choice(sym)) {
568 struct symbol *def_sym = sym_get_choice_value(sym);
569 struct menu *def_menu = NULL;
570
571 child_count++;
572 for (child = menu->list; child; child = child->next) {
573 if (menu_is_visible(child) && child->sym == def_sym)
574 def_menu = child;
575 }
576
577 val = sym_get_tristate_value(sym);
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100578 if (sym_is_changeable(sym)) {
Patrick Georgi0588d192009-08-12 15:00:51 +0000579 switch (type) {
580 case S_BOOLEAN:
581 item_make("[%c]", val == no ? ' ' : '*');
582 break;
583 case S_TRISTATE:
584 switch (val) {
585 case yes: ch = '*'; break;
586 case mod: ch = 'M'; break;
587 default: ch = ' '; break;
588 }
589 item_make("<%c>", ch);
590 break;
591 }
592 item_set_tag('t');
593 item_set_data(menu);
594 } else {
595 item_make(" ");
596 item_set_tag(def_menu ? 't' : ':');
597 item_set_data(menu);
598 }
599
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100600 item_add_str("%*c%s", indent + 1, ' ', menu_get_prompt(menu));
Patrick Georgi0588d192009-08-12 15:00:51 +0000601 if (val == yes) {
602 if (def_menu) {
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100603 item_add_str(" (%s)", menu_get_prompt(def_menu));
Patrick Georgi0588d192009-08-12 15:00:51 +0000604 item_add_str(" --->");
605 if (def_menu->list) {
606 indent += 2;
607 build_conf(def_menu);
608 indent -= 2;
609 }
Patrick Georgi0588d192009-08-12 15:00:51 +0000610 }
611 return;
612 }
613 } else {
614 if (menu == current_menu) {
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100615 item_make("---%*c%s", indent + 1, ' ', menu_get_prompt(menu));
Patrick Georgi0588d192009-08-12 15:00:51 +0000616 item_set_tag(':');
617 item_set_data(menu);
618 goto conf_childs;
619 }
620 child_count++;
621 val = sym_get_tristate_value(sym);
622 if (sym_is_choice_value(sym) && val == yes) {
623 item_make(" ");
624 item_set_tag(':');
625 item_set_data(menu);
626 } else {
627 switch (type) {
628 case S_BOOLEAN:
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100629 if (sym_is_changeable(sym))
Patrick Georgi0588d192009-08-12 15:00:51 +0000630 item_make("[%c]", val == no ? ' ' : '*');
631 else
632 item_make("-%c-", val == no ? ' ' : '*');
633 item_set_tag('t');
634 item_set_data(menu);
635 break;
636 case S_TRISTATE:
637 switch (val) {
638 case yes: ch = '*'; break;
639 case mod: ch = 'M'; break;
640 default: ch = ' '; break;
641 }
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100642 if (sym_is_changeable(sym)) {
Patrick Georgi0588d192009-08-12 15:00:51 +0000643 if (sym->rev_dep.tri == mod)
644 item_make("{%c}", ch);
645 else
646 item_make("<%c>", ch);
647 } else
648 item_make("-%c-", ch);
649 item_set_tag('t');
650 item_set_data(menu);
651 break;
652 default:
653 tmp = 2 + strlen(sym_get_string_value(sym)); /* () = 2 */
654 item_make("(%s)", sym_get_string_value(sym));
655 tmp = indent - tmp + 4;
656 if (tmp < 0)
657 tmp = 0;
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100658 item_add_str("%*c%s%s", tmp, ' ', menu_get_prompt(menu),
659 (sym_has_value(sym) || !sym_is_changeable(sym)) ?
660 "" : " (NEW)");
Patrick Georgi0588d192009-08-12 15:00:51 +0000661 item_set_tag('s');
662 item_set_data(menu);
663 goto conf_childs;
664 }
665 }
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100666 item_add_str("%*c%s%s", indent + 1, ' ', menu_get_prompt(menu),
667 (sym_has_value(sym) || !sym_is_changeable(sym)) ?
668 "" : " (NEW)");
Patrick Georgi0588d192009-08-12 15:00:51 +0000669 if (menu->prompt->type == P_MENU) {
Patrick Georgid5208402014-04-11 20:24:06 +0200670 item_add_str(" %s", menu_is_empty(menu) ? "----" : "--->");
Patrick Georgi0588d192009-08-12 15:00:51 +0000671 return;
672 }
673 }
674
675conf_childs:
676 indent += doint;
677 for (child = menu->list; child; child = child->next)
678 build_conf(child);
679 indent -= doint;
680}
681
Patrick Georgi0588d192009-08-12 15:00:51 +0000682static void conf_choice(struct menu *menu)
683{
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100684 const char *prompt = menu_get_prompt(menu);
Patrick Georgi0588d192009-08-12 15:00:51 +0000685 struct menu *child;
686 struct symbol *active;
687
688 active = sym_get_choice_value(menu->sym);
689 while (1) {
690 int res;
691 int selected;
692 item_reset();
693
694 current_menu = menu;
695 for (child = menu->list; child; child = child->next) {
696 if (!menu_is_visible(child))
697 continue;
Patrick Georgid5208402014-04-11 20:24:06 +0200698 if (child->sym)
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100699 item_make("%s", menu_get_prompt(child));
Patrick Georgid5208402014-04-11 20:24:06 +0200700 else {
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100701 item_make("*** %s ***", menu_get_prompt(child));
Patrick Georgid5208402014-04-11 20:24:06 +0200702 item_set_tag(':');
703 }
Patrick Georgi0588d192009-08-12 15:00:51 +0000704 item_set_data(child);
705 if (child->sym == active)
706 item_set_selected(1);
707 if (child->sym == sym_get_choice_value(menu->sym))
708 item_set_tag('X');
709 }
710 dialog_clear();
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100711 res = dialog_checklist(prompt ? prompt : "Main Menu",
712 radiolist_instructions,
Patrick Georgid5208402014-04-11 20:24:06 +0200713 MENUBOX_HEIGTH_MIN,
714 MENUBOX_WIDTH_MIN,
715 CHECKLIST_HEIGTH_MIN);
Patrick Georgi0588d192009-08-12 15:00:51 +0000716 selected = item_activate_selected();
717 switch (res) {
718 case 0:
719 if (selected) {
720 child = item_data();
Patrick Georgid5208402014-04-11 20:24:06 +0200721 if (!child->sym)
722 break;
723
Patrick Georgi0588d192009-08-12 15:00:51 +0000724 sym_set_tristate_value(child->sym, yes);
725 }
726 return;
727 case 1:
728 if (selected) {
729 child = item_data();
730 show_help(child);
731 active = child->sym;
732 } else
733 show_help(menu);
734 break;
735 case KEY_ESC:
736 return;
737 case -ERRDISPLAYTOOSMALL:
738 return;
739 }
740 }
741}
742
743static void conf_string(struct menu *menu)
744{
745 const char *prompt = menu_get_prompt(menu);
746
747 while (1) {
748 int res;
749 const char *heading;
750
751 switch (sym_get_type(menu->sym)) {
752 case S_INT:
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100753 heading = inputbox_instructions_int;
Patrick Georgi0588d192009-08-12 15:00:51 +0000754 break;
755 case S_HEX:
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100756 heading = inputbox_instructions_hex;
Patrick Georgi0588d192009-08-12 15:00:51 +0000757 break;
758 case S_STRING:
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100759 heading = inputbox_instructions_string;
Patrick Georgi0588d192009-08-12 15:00:51 +0000760 break;
761 default:
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100762 heading = "Internal mconf error!";
Patrick Georgi0588d192009-08-12 15:00:51 +0000763 }
764 dialog_clear();
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100765 res = dialog_inputbox(prompt ? prompt : "Main Menu",
Patrick Georgi0588d192009-08-12 15:00:51 +0000766 heading, 10, 75,
767 sym_get_string_value(menu->sym));
768 switch (res) {
769 case 0:
770 if (sym_set_string_value(menu->sym, dialog_input_result))
771 return;
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100772 show_textbox(NULL, "You have made an invalid entry.", 5, 43);
Patrick Georgi0588d192009-08-12 15:00:51 +0000773 break;
774 case 1:
775 show_help(menu);
776 break;
777 case KEY_ESC:
778 return;
779 }
780 }
781}
782
783static void conf_load(void)
784{
785
786 while (1) {
787 int res;
788 dialog_clear();
789 res = dialog_inputbox(NULL, load_config_text,
790 11, 55, filename);
791 switch(res) {
792 case 0:
793 if (!dialog_input_result[0])
794 return;
795 if (!conf_read(dialog_input_result)) {
796 set_config_filename(dialog_input_result);
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100797 conf_set_changed(true);
Patrick Georgi0588d192009-08-12 15:00:51 +0000798 return;
799 }
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100800 show_textbox(NULL, "File does not exist!", 5, 38);
Patrick Georgi0588d192009-08-12 15:00:51 +0000801 break;
802 case 1:
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100803 show_helptext("Load Alternate Configuration", load_config_help);
Patrick Georgi0588d192009-08-12 15:00:51 +0000804 break;
805 case KEY_ESC:
806 return;
807 }
808 }
809}
810
811static void conf_save(void)
812{
813 while (1) {
814 int res;
815 dialog_clear();
816 res = dialog_inputbox(NULL, save_config_text,
817 11, 55, filename);
818 switch(res) {
819 case 0:
820 if (!dialog_input_result[0])
821 return;
822 if (!conf_write(dialog_input_result)) {
823 set_config_filename(dialog_input_result);
824 return;
825 }
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100826 show_textbox(NULL, "Can't create file!", 5, 60);
Patrick Georgi0588d192009-08-12 15:00:51 +0000827 break;
828 case 1:
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100829 show_helptext("Save Alternate Configuration", save_config_help);
Patrick Georgi0588d192009-08-12 15:00:51 +0000830 break;
831 case KEY_ESC:
832 return;
833 }
834 }
835}
836
Patrick Georgi34b149b2023-11-20 18:09:23 +0100837static void conf(struct menu *menu, struct menu *active_menu)
838{
839 struct menu *submenu;
840 const char *prompt = menu_get_prompt(menu);
841 struct subtitle_part stpart;
842 struct symbol *sym;
843 int res;
844 int s_scroll = 0;
845
846 if (menu != &rootmenu)
847 stpart.text = menu_get_prompt(menu);
848 else
849 stpart.text = NULL;
850 list_add_tail(&stpart.entries, &trail);
851
852 while (1) {
853 item_reset();
854 current_menu = menu;
855 build_conf(menu);
856 if (!child_count)
857 break;
858 set_subtitle();
859 dialog_clear();
860 res = dialog_menu(prompt ? prompt : "Main Menu",
861 menu_instructions,
862 active_menu, &s_scroll);
863 if (res == 1 || res == KEY_ESC || res == -ERRDISPLAYTOOSMALL)
864 break;
865 if (item_count() != 0) {
866 if (!item_activate_selected())
867 continue;
868 if (!item_tag())
869 continue;
870 }
871 submenu = item_data();
872 active_menu = item_data();
873 if (submenu)
874 sym = submenu->sym;
875 else
876 sym = NULL;
877
878 switch (res) {
879 case 0:
880 switch (item_tag()) {
881 case 'm':
882 if (single_menu_mode)
883 submenu->data = (void *) (long) !submenu->data;
884 else
885 conf(submenu, NULL);
886 break;
887 case 't':
888 if (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)
889 conf_choice(submenu);
890 else if (submenu->prompt->type == P_MENU)
891 conf(submenu, NULL);
892 break;
893 case 's':
894 conf_string(submenu);
895 break;
896 }
897 break;
898 case 2:
899 if (sym)
900 show_help(submenu);
901 else {
902 reset_subtitle();
903 show_helptext("README", mconf_readme);
904 }
905 break;
906 case 3:
907 reset_subtitle();
908 conf_save();
909 break;
910 case 4:
911 reset_subtitle();
912 conf_load();
913 break;
914 case 5:
915 if (item_is_tag('t')) {
916 if (sym_set_tristate_value(sym, yes))
917 break;
918 if (sym_set_tristate_value(sym, mod))
919 show_textbox(NULL, setmod_text, 6, 74);
920 }
921 break;
922 case 6:
923 if (item_is_tag('t'))
924 sym_set_tristate_value(sym, no);
925 break;
926 case 7:
927 if (item_is_tag('t'))
928 sym_set_tristate_value(sym, mod);
929 break;
930 case 8:
931 if (item_is_tag('t'))
932 sym_toggle_tristate_value(sym);
933 else if (item_is_tag('m'))
934 conf(submenu, NULL);
935 break;
936 case 9:
937 search_conf();
938 break;
939 case 10:
940 show_all_options = !show_all_options;
941 break;
942 }
943 }
944
945 list_del(trail.prev);
946}
947
948static void conf_message_callback(const char *s)
949{
950 if (save_and_exit) {
951 if (!silent)
952 printf("%s", s);
953 } else {
954 show_textbox(NULL, s, 6, 60);
955 }
956}
957
Patrick Georgid5208402014-04-11 20:24:06 +0200958static int handle_exit(void)
959{
960 int res;
961
962 save_and_exit = 1;
963 reset_subtitle();
964 dialog_clear();
965 if (conf_get_changed())
966 res = dialog_yesno(NULL,
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100967 "Do you wish to save your new configuration?\n"
968 "(Press <ESC><ESC> to continue kernel configuration.)",
Patrick Georgid5208402014-04-11 20:24:06 +0200969 6, 60);
970 else
971 res = -1;
972
973 end_dialog(saved_x, saved_y);
974
975 switch (res) {
976 case 0:
977 if (conf_write(filename)) {
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100978 fprintf(stderr, "\n\n"
Patrick Georgid5208402014-04-11 20:24:06 +0200979 "Error while writing of the configuration.\n"
980 "Your configuration changes were NOT saved."
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100981 "\n\n");
Patrick Georgid5208402014-04-11 20:24:06 +0200982 return 1;
983 }
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100984 conf_write_autoconf(0);
Patrick Georgid5208402014-04-11 20:24:06 +0200985 /* fall through */
986 case -1:
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100987 if (!silent)
988 printf("\n\n"
989 "*** End of the configuration.\n"
990 "*** Execute 'make' to start the build or try 'make help'."
991 "\n\n");
Patrick Georgid5208402014-04-11 20:24:06 +0200992 res = 0;
993 break;
994 default:
Patrick Georgi53ea1d42019-11-22 16:55:58 +0100995 if (!silent)
996 fprintf(stderr, "\n\n"
997 "Your configuration changes were NOT saved."
998 "\n\n");
Patrick Georgid5208402014-04-11 20:24:06 +0200999 if (res != KEY_ESC)
1000 res = 0;
1001 }
1002
1003 return res;
1004}
1005
1006static void sig_handler(int signo)
1007{
1008 exit(handle_exit());
1009}
1010
Patrick Georgi0588d192009-08-12 15:00:51 +00001011int main(int ac, char **av)
1012{
Patrick Georgi0588d192009-08-12 15:00:51 +00001013 char *mode;
1014 int res;
1015
Patrick Georgid5208402014-04-11 20:24:06 +02001016 signal(SIGINT, sig_handler);
1017
Patrick Georgi53ea1d42019-11-22 16:55:58 +01001018 if (ac > 1 && strcmp(av[1], "-s") == 0) {
1019 silent = 1;
1020 /* Silence conf_read() until the real callback is set up */
1021 conf_set_message_callback(NULL);
1022 av++;
1023 }
Patrick Georgi0588d192009-08-12 15:00:51 +00001024 conf_parse(av[1]);
1025 conf_read(NULL);
1026
1027 mode = getenv("MENUCONFIG_MODE");
1028 if (mode) {
1029 if (!strcasecmp(mode, "single_menu"))
1030 single_menu_mode = 1;
1031 }
1032
Patrick Georgi0588d192009-08-12 15:00:51 +00001033 if (init_dialog(NULL)) {
Patrick Georgi53ea1d42019-11-22 16:55:58 +01001034 fprintf(stderr, "Your display is too small to run Menuconfig!\n");
1035 fprintf(stderr, "It must be at least 19 lines by 80 columns.\n");
Patrick Georgi0588d192009-08-12 15:00:51 +00001036 return 1;
1037 }
1038
1039 set_config_filename(conf_get_configname());
Patrick Georgid5208402014-04-11 20:24:06 +02001040 conf_set_message_callback(conf_message_callback);
Patrick Georgi0588d192009-08-12 15:00:51 +00001041 do {
Patrick Georgid5208402014-04-11 20:24:06 +02001042 conf(&rootmenu, NULL);
1043 res = handle_exit();
Patrick Georgi0588d192009-08-12 15:00:51 +00001044 } while (res == KEY_ESC);
Patrick Georgi0588d192009-08-12 15:00:51 +00001045
Patrick Georgid5208402014-04-11 20:24:06 +02001046 return res;
Patrick Georgi0588d192009-08-12 15:00:51 +00001047}