/linux-4.1.27/scripts/kconfig/ |
D | menu.c | 15 struct menu rootmenu; 16 static struct menu **last_entry_ptr; 21 void menu_warn(struct menu *menu, const char *fmt, ...) in menu_warn() argument 25 fprintf(stderr, "%s:%d:warning: ", menu->file->name, menu->lineno); in menu_warn() 49 struct menu *menu; in menu_add_entry() local 51 menu = xmalloc(sizeof(*menu)); in menu_add_entry() 52 memset(menu, 0, sizeof(*menu)); in menu_add_entry() 53 menu->sym = sym; in menu_add_entry() 54 menu->parent = current_menu; in menu_add_entry() 55 menu->file = current_file; in menu_add_entry() [all …]
|
D | lkc_proto.h | 15 extern struct menu rootmenu; 17 bool menu_is_empty(struct menu *menu); 18 bool menu_is_visible(struct menu *menu); 19 bool menu_has_prompt(struct menu *menu); 20 const char * menu_get_prompt(struct menu *menu); 21 struct menu * menu_get_root_menu(struct menu *menu); 22 struct menu * menu_get_parent_menu(struct menu *menu); 23 bool menu_has_help(struct menu *menu); 24 const char * menu_get_help(struct menu *menu); 26 void menu_get_ext_help(struct menu *menu, struct gstr *help);
|
D | mconf.c | 277 static struct menu *current_menu; 284 static void conf(struct menu *menu, struct menu *active_menu); 285 static void conf_choice(struct menu *menu); 286 static void conf_string(struct menu *menu); 294 static void show_help(struct menu *menu); 360 struct menu **targets; 435 struct menu *targets[JUMP_NB]; in search_conf() 466 static void build_conf(struct menu *menu) in build_conf() argument 470 struct menu *child; in build_conf() 480 visible = menu_is_visible(menu); in build_conf() [all …]
|
D | nconf.c | 257 static struct menu *current_menu; 277 static void conf(struct menu *menu); 278 static void conf_choice(struct menu *menu); 279 static void conf_string(struct menu *menu); 282 static void show_help(struct menu *menu); 287 typedef void (*function_key_handler_t)(int *key, struct menu *menu); 288 static void handle_f1(int *key, struct menu *current_item); 289 static void handle_f2(int *key, struct menu *current_item); 290 static void handle_f3(int *key, struct menu *current_item); 291 static void handle_f4(int *key, struct menu *current_item); [all …]
|
D | conf.c | 20 static void conf(struct menu *menu); 21 static void check_conf(struct menu *menu); 45 static struct menu *rootEntry; 47 static void print_help(struct menu *menu) in print_help() argument 51 menu_get_ext_help(menu, &help); in print_help() 133 static int conf_string(struct menu *menu) in conf_string() argument 135 struct symbol *sym = menu->sym; in conf_string() 139 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_string() 152 print_help(menu); in conf_string() 166 static int conf_sym(struct menu *menu) in conf_sym() argument [all …]
|
D | qconf.cc | 113 sym_set_string_value(menu->sym, text(dataColIdx).latin1()); in okRename() 136 sym = menu->sym; in updateMenu() 137 prop = menu->prompt; in updateMenu() 138 prompt = _(menu_get_prompt(menu)); in updateMenu() 146 if (sym && list->rootEntry == menu) in updateMenu() 240 if (!menu) in testUpdateMenu() 243 sym_calc_value(menu->sym); in testUpdateMenu() 244 if (menu->flags & MENU_CHANGED) { in testUpdateMenu() 246 menu->flags &= ~MENU_CHANGED; in testUpdateMenu() 247 for (i = (ConfigItem*)menu->data; i; i = i->nextItem) in testUpdateMenu() [all …]
|
D | gconf.c | 62 static struct menu *current; // current node for SINGLE view 63 static struct menu *browsed; // browsed node for SPLIT view 73 static void display_tree(struct menu *menu); 75 static void update_tree(struct menu *src, GtkTreeIter * dst); 76 static void set_node(GtkTreeIter * node, struct menu *menu, gchar ** row); 77 static gchar **fill_row(struct menu *menu); 367 static void text_insert_help(struct menu *menu) in text_insert_help() argument 371 const char *prompt = _(menu_get_prompt(menu)); in text_insert_help() 374 menu_get_ext_help(menu, &help); in text_insert_help() 786 struct menu *menu; in renderer_edited() local [all …]
|
D | qconf.h | 60 ConfigItem* findConfigItem(struct menu *); 72 void setRootMenu(struct menu *menu); 80 void menuChanged(struct menu *menu); 81 void menuSelected(struct menu *menu); 83 void gotFocus(struct menu *); 120 bool menuSkip(struct menu *); 123 void updateMenuList(P*, struct menu*); 134 struct menu *rootEntry; 147 ConfigItem(Q3ListView *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem() 148 : Parent(parent, after), menu(m), visible(v), goParent(false) in ConfigItem() [all …]
|
D | kxgettext.c | 171 static void menu_build_message_list(struct menu *menu) in menu_build_message_list() argument 173 struct menu *child; in menu_build_message_list() 175 message__add(menu_get_prompt(menu), NULL, in menu_build_message_list() 176 menu->file == NULL ? "Root Menu" : menu->file->name, in menu_build_message_list() 177 menu->lineno); in menu_build_message_list() 179 if (menu->sym != NULL && menu_has_help(menu)) in menu_build_message_list() 180 message__add(menu_get_help(menu), menu->sym->name, in menu_build_message_list() 181 menu->file == NULL ? "Root Menu" : menu->file->name, in menu_build_message_list() 182 menu->lineno); in menu_build_message_list() 184 for (child = menu->list; child != NULL; child = child->next) in menu_build_message_list()
|
D | zconf.y | 31 static struct menu *current_menu, *current_entry; 42 struct menu *menu; member 87 %type <menu> if_entry menu_entry choice_entry 351 menu: T_MENU prompt T_EOL 358 menu_entry: menu visibility_list depends_list 599 static void print_symbol(FILE *out, struct menu *menu) in print_symbol() argument 601 struct symbol *sym = menu->sym; in print_symbol() 629 if (prop->menu != menu) in print_symbol() 673 if (menu->help) { in print_symbol() 674 int len = strlen(menu->help); in print_symbol() [all …]
|
D | confdata.c | 671 struct menu *menu; in conf_write_defconfig() local 681 menu = rootmenu.list; in conf_write_defconfig() 683 while (menu != NULL) in conf_write_defconfig() 685 sym = menu->sym; in conf_write_defconfig() 687 if (!menu_is_visible(menu)) in conf_write_defconfig() 723 if (menu->list != NULL) { in conf_write_defconfig() 724 menu = menu->list; in conf_write_defconfig() 726 else if (menu->next != NULL) { in conf_write_defconfig() 727 menu = menu->next; in conf_write_defconfig() 729 while ((menu = menu->parent)) { in conf_write_defconfig() [all …]
|
D | zconf.tab.c | 106 static struct menu *current_menu, *current_entry; 183 struct menu *menu; member 1336 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno); 1337 if (current_menu == (yyvaluep->menu)) 1346 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno); 1347 if (current_menu == (yyvaluep->menu)) 1356 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno); 1357 if (current_menu == (yyvaluep->menu)) 1814 (yyval.menu) = menu_add_menu(); 1875 (yyval.menu) = menu_add_menu(); [all …]
|
D | nconf.gui.c | 253 MENU *menu; in btn_dialog() local 293 menu = new_menu(btns); in btn_dialog() 297 set_menu_fore(menu, attributes[DIALOG_MENU_FORE]); in btn_dialog() 298 set_menu_back(menu, attributes[DIALOG_MENU_BACK]); in btn_dialog() 307 set_menu_win(menu, win); in btn_dialog() 308 set_menu_sub(menu, menu_win); in btn_dialog() 309 set_menu_format(menu, 1, btn_num); in btn_dialog() 310 menu_opts_off(menu, O_SHOWDESC); in btn_dialog() 311 menu_opts_off(menu, O_SHOWMATCH); in btn_dialog() 312 menu_opts_on(menu, O_ONEVALUE); in btn_dialog() [all …]
|
D | expr.h | 149 struct menu *menu; /* the menu the property are associated with member 165 struct menu { struct 166 struct menu *next; argument 167 struct menu *parent; argument 168 struct menu *list; argument 186 struct menu *target; argument
|
D | lkc.h | 99 void menu_warn(struct menu *menu, const char *fmt, ...); 100 struct menu *menu_add_menu(void); 110 void menu_finalize(struct menu *parent);
|
D | zconf.tab.c_shipped | 106 static struct menu *current_menu, *current_entry; 183 struct menu *menu; 567 "if_entry", "if_end", "if_stmt", "if_block", "mainmenu_stmt", "menu", 1336 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno); 1337 if (current_menu == (yyvaluep->menu)) 1346 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno); 1347 if (current_menu == (yyvaluep->menu)) 1356 (yyvaluep->menu)->file->name, (yyvaluep->menu)->lineno); 1357 if (current_menu == (yyvaluep->menu)) 1814 (yyval.menu) = menu_add_menu(); [all …]
|
D | symbol.c | 195 if (prop->menu) in sym_set_changed() 196 prop->menu->flags |= MENU_CHANGED; in sym_set_changed() 1085 struct menu *menu = NULL; in sym_check_print_recursive() local 1112 menu = prop->menu; in sym_check_print_recursive() 1113 if (prop->menu) in sym_check_print_recursive() 1133 menu->file->name, menu->lineno, in sym_check_print_recursive() 1138 menu->file->name, menu->lineno, in sym_check_print_recursive()
|
D | zconf.gperf | 16 menu, T_MENU, TF_COMMAND
|
D | zconf.hash.c_shipped | 110 char kconf_id_strings_str29[sizeof("menu")]; 146 "menu",
|
/linux-4.1.27/tools/perf/ui/browsers/ |
D | header.c | 31 static int list_menu__run(struct ui_browser *menu) in list_menu__run() argument 42 if (ui_browser__show(menu, "Header information", "Press 'q' to exit") < 0) in list_menu__run() 46 key = ui_browser__run(menu, 0); in list_menu__run() 50 offset = (unsigned long)menu->priv; in list_menu__run() 52 menu->priv = (void *)offset; in list_menu__run() 55 offset = (unsigned long)menu->priv; in list_menu__run() 58 menu->priv = (void *)offset; in list_menu__run() 63 ui_browser__help_window(menu, help); in list_menu__run() 77 ui_browser__hide(menu); in list_menu__run() 83 struct ui_browser menu = { in ui__list_menu() local [all …]
|
D | hists.c | 1830 struct perf_evsel_menu *menu = container_of(browser, in perf_evsel_menu__write() local 1862 menu->lost_events = true; in perf_evsel_menu__write() 1874 menu->selection = evsel; in perf_evsel_menu__write() 1877 static int perf_evsel_menu__run(struct perf_evsel_menu *menu, in perf_evsel_menu__run() argument 1881 struct perf_evlist *evlist = menu->b.priv; in perf_evsel_menu__run() 1887 if (ui_browser__show(&menu->b, title, in perf_evsel_menu__run() 1892 key = ui_browser__run(&menu->b, delay_secs); in perf_evsel_menu__run() 1898 if (!menu->lost_events_warned && menu->lost_events) { in perf_evsel_menu__run() 1899 ui_browser__warn_lost_events(&menu->b); in perf_evsel_menu__run() 1900 menu->lost_events_warned = true; in perf_evsel_menu__run() [all …]
|
/linux-4.1.27/scripts/kconfig/lxdialog/ |
D | menubox.c | 105 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \ 191 WINDOW *dialog, *menu; in dialog_menu() local 234 menu = subwin(dialog, menu_height, menu_width, in dialog_menu() 236 keypad(menu, TRUE); in dialog_menu() 273 wnoutrefresh(menu); in dialog_menu() 279 wmove(menu, choice, item_x + 1); in dialog_menu() 280 wrefresh(menu); in dialog_menu() 283 key = wgetch(menu); in dialog_menu() 317 do_scroll(menu, &scroll, -1); in dialog_menu() 329 do_scroll(menu, &scroll, 1); in dialog_menu() [all …]
|
/linux-4.1.27/tools/perf/ui/tui/ |
D | util.c | 27 static int popup_menu__run(struct ui_browser *menu) in popup_menu__run() argument 31 if (ui_browser__show(menu, " ", "ESC: exit, ENTER|->: Select option") < 0) in popup_menu__run() 35 key = ui_browser__run(menu, 0); in popup_menu__run() 40 key = menu->index; in popup_menu__run() 55 ui_browser__hide(menu); in popup_menu__run() 61 struct ui_browser menu = { in ui__popup_menu() local 69 return popup_menu__run(&menu); in ui__popup_menu()
|
/linux-4.1.27/Documentation/kbuild/ |
D | kconfig-language.txt | 48 A menu entry can have a number of attributes. Not all of them are 63 Every menu entry can have at most one prompt, which is used to display 70 Default values are not limited to the menu entry where they are 86 This defines a dependency for this menu entry. If multiple 88 are applied to all other options within this menu entry (which also 101 another symbol. The value of the current menu symbol is used as the 116 - limiting menu display: "visible if" <expr> 117 This attribute is only applicable to menu blocks, if the condition is 118 false, the menu block is not displayed to the user (the symbols 120 similar to a conditional "prompt" attribute for individual menu [all …]
|
/linux-4.1.27/drivers/cpuidle/ |
D | Kconfig | 1 menu "CPU Idle" 31 menu "ARM CPU Idle Drivers" 36 menu "MIPS CPU Idle Drivers" 41 menu "POWERPC CPU Idle Drivers"
|
/linux-4.1.27/drivers/video/ |
D | Kconfig | 5 menu "Graphics support" 25 menu "Direct Rendering Manager" 29 menu "Frame buffer Devices"
|
/linux-4.1.27/arch/arm/mach-w90x900/ |
D | Kconfig | 18 menu "W90P910 Machines" 29 menu "NUC950 Machines" 39 menu "NUC960 Machines"
|
/linux-4.1.27/arch/unicore32/ |
D | Kconfig | 73 menu "System Type" 127 menu "Bus support" 143 menu "Kernel Features" 168 menu "Boot options" 187 menu "Userspace binary formats" 193 menu "Power management options" 219 menu "PKUnity NetBook-0916 Features"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.1.27/drivers/iio/frequency/ |
D | Kconfig | 9 menu "Frequency Synthesizers DDS/PLL" 11 menu "Clock Generator/Distribution" 29 menu "Phase-Locked Loop (PLL) frequency synthesizers"
|
/linux-4.1.27/arch/score/ |
D | Kconfig | 1 menu "Machine selection" 50 menu "Kernel type" 85 menu "Executable file formats"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.1.27/arch/openrisc/ |
D | Kconfig | 59 menu "Processor type and features" 76 menu "Class II Instructions" 130 menu "Debugging options" 154 menu "Executable file formats" 172 menu "Kernel hacking"
|
/linux-4.1.27/Documentation/ |
D | svga.txt | 27 ASK_VGA - Display a video mode menu upon startup (see below). 29 0..35 - Menu item number (when you have used the menu to view the list of 30 modes available on your adapter, you can specify the menu item you want 36 0x.... - Hexadecimal video mode ID (also displayed on the menu, see below 42 The ASK_VGA mode causes the kernel to offer a video mode menu upon 45 menu, if you press <SPACE> or wait 30 seconds, the kernel will boot up in 48 The menu looks like: 66 "0 0F00 80x25" means that the first menu item (the menu items are numbered 81 The modes displayed on the menu are partially sorted: The list starts with 104 by entering its mode directly if you know it even if it isn't shown on the menu. [all …]
|
D | email-clients.txt | 125 Then from the "Message" menu item, select insert file and choose your patch. 126 As an added bonus you can customise the message creation toolbar menu 132 disabled in the Options menu isn't enough. Thus, if your patch has very
|
D | debugging-via-ohci1394.txt | 52 To activate it, enable CONFIG_PROVIDE_OHCI1394_DMA_INIT (Kernel hacking menu: 136 [Ctrl-H] this menu
|
/linux-4.1.27/arch/blackfin/mach-bf518/ |
D | Kconfig | 9 menu "BF518 Specific Configuration" 95 menu "PORT F" 111 menu "PORT G" 131 menu "PORT H" 138 menu "None-GPIO" 147 menu "Priority"
|
/linux-4.1.27/arch/blackfin/mach-bf527/ |
D | Kconfig | 9 menu "BF527 Specific Configuration" 92 menu "PORT F" 108 menu "PORT G" 128 menu "PORT H" 138 menu "None-GPIO" 149 menu "Priority"
|
/linux-4.1.27/drivers/iio/proximity/ |
D | Kconfig | 5 menu "Lightning sensors" 21 menu "Proximity sensors"
|
/linux-4.1.27/arch/m68k/ |
D | Kconfig | 119 menu "Platform setup" 129 menu "Kernel Features" 139 menu "Executable file formats" 146 menu "Power management options"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig.devices | 8 menu "Platform devices" 84 menu "Character devices"
|
/linux-4.1.27/arch/x86/um/ |
D | Kconfig | 5 menu "UML-specific options" 7 menu "Host processor type and features"
|
/linux-4.1.27/Documentation/video4linux/ |
D | v4l2-controls.txt | 121 You add non-menu controls by calling v4l2_ctrl_new_std: 127 Menu and integer menu controls are added by calling v4l2_ctrl_new_std_menu: 133 Menu controls with a driver specific menu are added by calling 141 Integer menu controls with a driver specific menu can be added by calling 195 The v4l2_ctrl_new_std_menu function is very similar but it is used for menu 196 controls. There is no min argument since that is always 0 for menu controls, 197 and instead of a step there is a skip_mask argument: if bit X is 1, then menu 200 The v4l2_ctrl_new_int_menu function creates a new standard integer menu 201 control with driver-specific items in the menu. It differs from 204 menu item list. [all …]
|
D | uvcvideo.txt | 154 *menu_info Array of menu entries (for menu controls only) 155 __u32 menu_count Number of menu entries (for menu controls only)
|
/linux-4.1.27/arch/avr32/ |
D | Kconfig | 63 menu "System Type and features" 246 menu "Power management options" 253 menu "CPU Frequency scaling" 259 menu "Bus options" 270 menu "Executable file formats"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.1.27/arch/blackfin/mach-bf533/ |
D | Kconfig | 5 menu "BF533/2/1 Specific Configuration" 8 menu "Priority"
|
/linux-4.1.27/arch/microblaze/ |
D | Kconfig.platform | 4 # Platform selection Kconfig menu for MicroBlaze targets 7 menu "Platform options"
|
D | Kconfig.debug | 4 menu "Kernel hacking"
|
D | Kconfig | 79 menu "Processor type and features" 131 menu "Kernel features" 260 menu "Executable file formats" 266 menu "Bus Options"
|
/linux-4.1.27/arch/hexagon/ |
D | Kconfig | 87 menu "Machine selection" 163 menu "Executable File Formats" 172 menu "Kernel hacking"
|
/linux-4.1.27/drivers/cpuidle/governors/ |
D | Makefile | 6 obj-$(CONFIG_CPU_IDLE_GOV_MENU) += menu.o
|
/linux-4.1.27/arch/blackfin/mach-bf537/ |
D | Kconfig | 5 menu "BF537 Specific Configuration" 8 menu "Priority"
|
/linux-4.1.27/drivers/sh/ |
D | Kconfig | 1 menu "SuperH / SH-Mobile Driver Options"
|
/linux-4.1.27/arch/nios2/ |
D | Kconfig | 49 menu "Kernel features" 78 menu "Processor type and features" 148 menu "Advanced setup" 197 menu "Executable file formats"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.1.27/drivers/rpmsg/ |
D | Kconfig | 1 menu "Rpmsg drivers"
|
/linux-4.1.27/Documentation/mn10300/ |
D | compartmentalisation.txt | 20 from the "Processor support" choice menu in the arch/mn10300/Kconfig file. 43 from the "Unit type" choice menu in the arch/mn10300/Kconfig file.
|
/linux-4.1.27/arch/c6x/ |
D | Kconfig | 101 menu "Processor type and features" 120 menu "Executable file formats" 138 menu "Kernel hacking"
|
/linux-4.1.27/drivers/net/can/spi/ |
D | Kconfig | 1 menu "CAN SPI interfaces"
|
/linux-4.1.27/drivers/soc/ |
D | Kconfig | 1 menu "SOC (System On Chip) specific Drivers"
|
/linux-4.1.27/drivers/i2c/algos/ |
D | Kconfig | 5 menu "I2C Algorithms"
|
/linux-4.1.27/drivers/net/wimax/ |
D | Kconfig | 11 menu "WiMAX Wireless Broadband devices"
|
/linux-4.1.27/fs/ |
D | Kconfig | 5 menu "File systems" 81 menu "Caches" 89 menu "CD-ROM/DVD Filesystems" 98 menu "DOS/FAT/NT Filesystems" 106 menu "Pseudo filesystems"
|
/linux-4.1.27/arch/blackfin/mach-bf538/ |
D | Kconfig | 5 menu "BF538 Specific Configuration" 8 menu "Priority"
|
/linux-4.1.27/arch/sparc/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 157 menu "Processor type and features" 408 menu "U-Boot options" 442 menu "Bus options (PCI etc.)" 534 menu "Executable file formats"
|
/linux-4.1.27/arch/ia64/hp/sim/ |
D | Kconfig | 2 menu "HP Simulator drivers"
|
/linux-4.1.27/arch/arm/mach-iop13xx/ |
D | Kconfig | 3 menu "IOP13XX Implementation Options"
|
/linux-4.1.27/drivers/staging/iio/impedance-analyzer/ |
D | Kconfig | 4 menu "Network Analyzer, Impedance Converters"
|
/linux-4.1.27/sound/atmel/ |
D | Kconfig | 1 menu "Atmel devices (AVR32 and AT91)"
|
/linux-4.1.27/drivers/iio/amplifiers/ |
D | Kconfig | 6 menu "Amplifiers"
|
/linux-4.1.27/net/decnet/netfilter/ |
D | Kconfig | 5 menu "DECnet: Netfilter Configuration"
|
/linux-4.1.27/drivers/staging/iio/gyro/ |
D | Kconfig | 4 menu "Digital gyroscope sensors"
|
/linux-4.1.27/arch/arm/mach-dove/ |
D | Kconfig | 3 menu "Marvell Dove Implementations"
|
/linux-4.1.27/drivers/vlynq/ |
D | Kconfig | 1 menu "TI VLYNQ"
|
/linux-4.1.27/arch/arm/mach-iop33x/ |
D | Kconfig | 3 menu "IOP33x Implementation Options"
|
/linux-4.1.27/arch/sh/boards/mach-r2d/ |
D | Kconfig | 3 menu "RTS7751R2D Board Revision"
|
/linux-4.1.27/arch/arc/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 80 menu "ARC Architecture Configuration" 82 menu "ARC Platform/SoC/Board" 90 menu "ARC CPU Configuration" 417 menu "Executable file formats"
|
/linux-4.1.27/arch/parisc/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 116 menu "Processor type and features" 311 menu "Executable file formats"
|
/linux-4.1.27/drivers/hid/i2c-hid/ |
D | Kconfig | 1 menu "I2C HID support"
|
/linux-4.1.27/arch/arm/mach-netx/ |
D | Kconfig | 1 menu "NetX Implementations"
|
/linux-4.1.27/arch/mn10300/ |
D | Kconfig | 70 menu "Panasonic MN10300 system setup" 147 menu "Memory layout options" 267 menu "MN10300 internal serial options" 392 menu "Interrupt request priority options" 468 menu "Power management options" 475 menu "Executable formats"
|
/linux-4.1.27/drivers/misc/ti-st/ |
D | Kconfig | 5 menu "Texas Instruments shared transport line discipline"
|
/linux-4.1.27/arch/sh/drivers/ |
D | Kconfig | 4 menu "Additional SuperH Device Drivers"
|
/linux-4.1.27/drivers/hv/ |
D | Kconfig | 1 menu "Microsoft Hyper-V guest support"
|
/linux-4.1.27/drivers/sn/ |
D | Kconfig | 5 menu "SN Devices"
|
/linux-4.1.27/arch/mips/bcm63xx/ |
D | Kconfig | 1 menu "CPU support"
|
/linux-4.1.27/arch/arm/mach-mv78xx0/ |
D | Kconfig | 3 menu "Marvell MV78xx0 Implementations"
|
/linux-4.1.27/drivers/iio/orientation/ |
D | Kconfig | 6 menu "Inclinometer sensors"
|
/linux-4.1.27/drivers/media/radio/wl128x/ |
D | Kconfig | 4 menu "Texas Instruments WL128x FM driver (ST based)"
|
/linux-4.1.27/drivers/hwspinlock/ |
D | Kconfig | 9 menu "Hardware Spinlock drivers"
|
/linux-4.1.27/arch/avr32/mach-at32ap/ |
D | Kconfig | 3 menu "Atmel AVR32 AP options"
|
/linux-4.1.27/drivers/iio/common/ssp_sensors/ |
D | Kconfig | 4 menu "SSP Sensor Common"
|
/linux-4.1.27/arch/m32r/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 46 menu "Processor type and features" 330 menu "Bus options (PCI, PCMCIA, EISA, MCA, ISA)" 393 menu "Executable file formats"
|
/linux-4.1.27/drivers/staging/iio/frequency/ |
D | Kconfig | 4 menu "Direct Digital Synthesis"
|
/linux-4.1.27/arch/arm/mach-versatile/ |
D | Kconfig | 1 menu "Versatile platform type"
|
/linux-4.1.27/drivers/iio/temperature/ |
D | Kconfig | 4 menu "Temperature sensors"
|
/linux-4.1.27/arch/metag/ |
D | Kconfig | 61 menu "Processor type and features" 220 menu "Boot options" 262 menu "Power management options" 268 menu "Executable file formats"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig.soc | 33 menu "SoC configuration"
|
/linux-4.1.27/drivers/idle/ |
D | Kconfig | 12 menu "Memory power savings"
|
/linux-4.1.27/drivers/hid/usbhid/ |
D | Kconfig | 1 menu "USB HID support" 47 menu "USB HID Boot Protocol drivers"
|
/linux-4.1.27/arch/arm/firmware/ |
D | Kconfig | 8 menu "Firmware options"
|
/linux-4.1.27/drivers/iio/trigger/ |
D | Kconfig | 6 menu "Triggers - standalone"
|
/linux-4.1.27/arch/tile/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 160 menu "Tilera-specific configuration" 402 menu "Bus options" 453 menu "Executable file formats"
|
/linux-4.1.27/arch/arm/mach-gemini/ |
D | Kconfig | 3 menu "Cortina Systems Gemini Implementations"
|
/linux-4.1.27/arch/sh/ |
D | Kconfig | 173 menu "System type" 557 menu "Timer and clock configuration" 590 menu "CPU Frequency scaling" 598 menu "Kernel features" 748 menu "Boot options" 822 menu "Bus options" 863 menu "Executable file formats" 869 menu "Power management options (EXPERIMENTAL)"
|
D | Kconfig.cpu | 1 menu "Processor features"
|
/linux-4.1.27/drivers/iio/common/hid-sensors/ |
D | Kconfig | 4 menu "Hid Sensor IIO Common"
|
/linux-4.1.27/drivers/android/ |
D | Kconfig | 1 menu "Android"
|
/linux-4.1.27/drivers/gpu/drm/i2c/ |
D | Kconfig | 1 menu "I2C encoder or helper chips"
|
/linux-4.1.27/arch/blackfin/mach-bf561/ |
D | Kconfig | 5 menu "BF561 Specific Configuration" 19 menu "Priority"
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | PROBLEMS | 1 - Start capturing by pressing "c" or by selecting it via a menu! 3 - Start capturing by pressing "c" or by selecting it via a menu!!!
|
/linux-4.1.27/drivers/mtd/lpddr/ |
D | Kconfig | 1 menu "LPDDR & LPDDR2 PCM memory drivers"
|
/linux-4.1.27/arch/powerpc/platforms/pasemi/ |
D | Kconfig | 14 menu "PA Semi PWRficient options"
|
/linux-4.1.27/drivers/staging/iio/magnetometer/ |
D | Kconfig | 4 menu "Magnetometer sensors"
|
/linux-4.1.27/arch/arm/mach-clps711x/ |
D | Kconfig | 3 menu "CLPS711X/EP721X/EP731X Implementations"
|
/linux-4.1.27/drivers/iio/humidity/ |
D | Kconfig | 4 menu "Humidity sensors"
|
/linux-4.1.27/arch/arm/mach-hisi/ |
D | Kconfig | 13 menu "Hisilicon platform type"
|
/linux-4.1.27/drivers/firmware/google/ |
D | Kconfig | 10 menu "Google Firmware Drivers"
|
/linux-4.1.27/arch/sh/cchips/ |
D | Kconfig | 1 menu "Companion Chips"
|
/linux-4.1.27/drivers/staging/iio/addac/ |
D | Kconfig | 4 menu "Analog digital bi-direction converters"
|
/linux-4.1.27/net/wimax/ |
D | Kconfig | 17 The different WiMAX drivers can be enabled in the menu entry
|
/linux-4.1.27/arch/s390/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 170 menu "Processor type and features" 412 menu "Memory setup" 491 menu "I/O subsystem" 593 menu "Dump support" 610 menu "Executable file formats / Emulations" 633 menu "Power Management" 662 menu "Virtualization"
|
/linux-4.1.27/arch/frv/ |
D | Kconfig | 62 menu "Fujitsu FR-V system setup" 196 menu "CPU core support" 351 menu "Power management options" 362 menu "Executable formats"
|
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.1.27/drivers/staging/iio/ |
D | Kconfig | 4 menu "IIO staging drivers"
|
/linux-4.1.27/drivers/staging/iio/cdc/ |
D | Kconfig | 4 menu "Capacitance to digital converters"
|
/linux-4.1.27/arch/um/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.1.27/drivers/staging/iio/resolver/ |
D | Kconfig | 4 menu "Resolver to digital converters"
|
/linux-4.1.27/arch/cris/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.1.27/arch/xtensa/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 77 menu "Processor type and features" 271 menu "Bus options" 286 menu "Platform options" 463 menu "Executable file formats" 469 menu "Power management options"
|
/linux-4.1.27/Documentation/filesystems/ |
D | befs.txt | 72 enable support for experimental code under the "Code maturity level" menu. 74 Then, under the "Filesystems" menu will be an option called "BeFS
|
/linux-4.1.27/arch/arm64/ |
D | Kconfig | 164 menu "Platform selection" 264 menu "Bus support" 288 menu "Kernel Features" 290 menu "ARM errata workarounds via the alternatives framework" 681 menu "Boot options" 732 menu "Userspace binary formats" 761 menu "Power management options" 770 menu "CPU Power Management"
|
/linux-4.1.27/drivers/staging/iio/light/ |
D | Kconfig | 4 menu "Light sensors"
|
/linux-4.1.27/sound/soc/sh/ |
D | Kconfig | 1 menu "SoC Audio support for SuperH"
|
/linux-4.1.27/drivers/gpu/drm/panel/ |
D | Kconfig | 7 menu "Display Panels"
|
/linux-4.1.27/drivers/iio/imu/ |
D | Kconfig | 6 menu "Inertial measurement units"
|
/linux-4.1.27/arch/arm/mach-iop32x/ |
D | Kconfig | 3 menu "IOP32x Implementation Options"
|
/linux-4.1.27/drivers/net/dsa/ |
D | Kconfig | 1 menu "Distributed Switch Architecture drivers"
|
/linux-4.1.27/arch/arm/mach-davinci/ |
D | Kconfig | 14 menu "TI DaVinci Implementations" 148 menu has an effect only in case of a successful UI card detection. 177 menu has an effect only in case of a successful UI card detection.
|
/linux-4.1.27/arch/arm/mach-integrator/ |
D | Kconfig | 26 menu "Integrator Options"
|
/linux-4.1.27/drivers/pps/ |
D | Kconfig | 5 menu "PPS support"
|
/linux-4.1.27/arch/alpha/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
/linux-4.1.27/arch/s390/kvm/ |
D | Kconfig | 55 # the virtualization menu.
|
/linux-4.1.27/arch/powerpc/platforms/8xx/ |
D | Kconfig | 56 menu "Freescale Ethernet driver platform-specific options" 94 menu "MPC8xx CPM Options"
|
/linux-4.1.27/arch/blackfin/ |
D | Kconfig | 76 menu "Blackfin Processor Options" 374 menu "Board customizations" 575 menu "Memory Init Control" 662 menu "Clock event device" 674 menu "Clock source" 745 menu "Blackfin Kernel Optimizations" 1123 menu "EBIU_AMGCTL Global Control" 1174 menu "EBIU_AMBCTL Control" 1224 menu "Bus options (PCI, PCMCIA, EISA, MCA, ISA)" 1240 menu "Executable file formats" [all …]
|
/linux-4.1.27/drivers/staging/android/ |
D | Kconfig | 1 menu "Android"
|
/linux-4.1.27/net/dccp/ |
D | Kconfig | 29 menu "DCCP Kernel Hacking"
|
/linux-4.1.27/net/dccp/ccids/ |
D | Kconfig | 1 menu "DCCP CCIDs Configuration"
|
/linux-4.1.27/block/ |
D | Kconfig.iosched | 3 menu "IO Schedulers"
|
/linux-4.1.27/arch/arm/mach-omap2/ |
D | Kconfig | 1 menu "TI OMAP/AM/DM/DRA Family" 97 menu "TI OMAP2/3/4 Specific Features"
|
/linux-4.1.27/drivers/media/usb/uvc/ |
D | uvc_ctrl.c | 977 struct uvc_menu_info *menu; in __uvc_ctrl_get() local 999 menu = mapping->menu_info; in __uvc_ctrl_get() 1000 for (i = 0; i < mapping->menu_count; ++i, ++menu) { in __uvc_ctrl_get() 1001 if (menu->value == *value) { in __uvc_ctrl_get() 1018 struct uvc_menu_info *menu; in __uvc_query_v4l2_ctrl() local 1062 menu = mapping->menu_info; in __uvc_query_v4l2_ctrl() 1063 for (i = 0; i < mapping->menu_count; ++i, ++menu) { in __uvc_query_v4l2_ctrl() 1064 if (menu->value == v4l2_ctrl->default_value) { in __uvc_query_v4l2_ctrl()
|
/linux-4.1.27/drivers/char/pcmcia/ |
D | Kconfig | 5 menu "PCMCIA character devices"
|
/linux-4.1.27/drivers/video/fbdev/omap2/displays-new/ |
D | Kconfig | 1 menu "OMAP Display Device Drivers (new device model)"
|
/linux-4.1.27/drivers/iio/magnetometer/ |
D | Kconfig | 6 menu "Magnetometer sensors"
|
/linux-4.1.27/arch/ia64/ |
D | Kconfig.debug | 1 menu "Kernel hacking"
|
D | Kconfig | 10 menu "Processor type and features" 570 menu "Power management and ACPI options" 577 menu "CPU Frequency scaling" 586 menu "Bus options (PCI, PCMCIA)"
|
/linux-4.1.27/drivers/isdn/i4l/ |
D | Kconfig | 90 menu "ISDN feature submodules" 127 menu "Active cards"
|
/linux-4.1.27/arch/blackfin/mach-bf548/ |
D | Kconfig | 29 menu "BF548 Specific Configuration" 105 menu "Priority"
|
/linux-4.1.27/drivers/media/common/ |
D | cx2341x.c | 1167 const char * const *menu = cx2341x_ctrl_get_menu(p, id); in cx2341x_menu_item() local 1170 if (menu == NULL) in cx2341x_menu_item() 1175 while (ctrl.value-- && *menu) menu++; in cx2341x_menu_item() 1176 if (*menu == NULL) in cx2341x_menu_item() 1178 return *menu; in cx2341x_menu_item()
|
/linux-4.1.27/drivers/w1/masters/ |
D | Kconfig | 5 menu "1-wire Bus Masters"
|
/linux-4.1.27/drivers/i2c/muxes/ |
D | Kconfig | 5 menu "Multiplexer I2C Chip support"
|
/linux-4.1.27/drivers/firmware/efi/ |
D | Kconfig | 1 menu "EFI (Extensible Firmware Interface) Support"
|
/linux-4.1.27/drivers/remoteproc/ |
D | Kconfig | 1 menu "Remoteproc drivers"
|
/linux-4.1.27/drivers/of/ |
D | Kconfig | 7 menu "Device Tree and Open Firmware support"
|
/linux-4.1.27/kernel/gcov/ |
D | Kconfig | 1 menu "GCOV-based kernel profiling"
|
/linux-4.1.27/kernel/irq/ |
D | Kconfig | 1 menu "IRQ subsystem"
|
/linux-4.1.27/arch/sh/drivers/dma/ |
D | Kconfig | 1 menu "DMA support"
|
/linux-4.1.27/arch/mips/ath79/ |
D | Kconfig | 3 menu "Atheros AR71XX/AR724X/AR913X machine selection"
|
/linux-4.1.27/drivers/thermal/ |
D | Kconfig | 288 menu "Texas Instruments thermal drivers" 292 menu "Samsung thermal drivers" 297 menu "STMicroelectronics thermal drivers"
|
/linux-4.1.27/drivers/bcma/ |
D | Kconfig | 6 menu "Broadcom specific AMBA"
|
/linux-4.1.27/drivers/rapidio/ |
D | Kconfig | 70 menu "RapidIO Switch drivers"
|
/linux-4.1.27/Documentation/arm/SA1100/ |
D | Itsy | 26 flash menu) Flash the kernel in arch/arm/boot/zImage into 0x08340000
|
/linux-4.1.27/drivers/virtio/ |
D | Kconfig | 8 menu "Virtio drivers"
|
/linux-4.1.27/arch/arm/mach-footbridge/ |
D | Kconfig | 3 menu "Footbridge Implementations"
|
/linux-4.1.27/drivers/input/ |
D | Kconfig | 5 menu "Input device support" 193 menu "Hardware I/O ports"
|
/linux-4.1.27/drivers/sbus/char/ |
D | Kconfig | 2 menu "Misc Linux/SPARC drivers"
|
/linux-4.1.27/arch/arm/mach-ks8695/ |
D | Kconfig | 3 menu "Kendin/Micrel KS8695 Implementations"
|
/linux-4.1.27/drivers/net/can/usb/ |
D | Kconfig | 1 menu "CAN USB interfaces"
|
/linux-4.1.27/drivers/nfc/ |
D | Kconfig | 5 menu "Near Field Communication (NFC) devices"
|
/linux-4.1.27/drivers/staging/iio/meter/ |
D | Kconfig | 4 menu "Active energy metering IC"
|
/linux-4.1.27/arch/sh/mm/ |
D | Kconfig | 1 menu "Memory management options" 240 menu "Cache configuration"
|
/linux-4.1.27/drivers/parisc/ |
D | Kconfig | 1 menu "Bus options (PCI, PCMCIA, EISA, GSC, ISA)" 117 menu "PA-RISC specific drivers"
|
/linux-4.1.27/Documentation/ia64/ |
D | serial.txt | 149 "Boot option maintenance" menu. You may have to interrupt the 150 boot sequence to use this menu, and you will have to reset the
|
/linux-4.1.27/arch/x86/kvm/ |
D | Kconfig | 100 # the virtualization menu.
|
/linux-4.1.27/drivers/ |
D | Kconfig | 1 menu "Device Drivers"
|
/linux-4.1.27/Documentation/arm/ |
D | uefi.txt | 29 load the kernel directly from the UEFI shell, boot menu, or one of the
|
/linux-4.1.27/drivers/firewire/ |
D | Kconfig | 1 menu "IEEE 1394 (FireWire) support"
|
/linux-4.1.27/arch/powerpc/platforms/cell/ |
D | Kconfig | 46 menu "Cell Broadband Engine options"
|
/linux-4.1.27/drivers/staging/iio/accel/ |
D | Kconfig | 4 menu "Accelerometers"
|
/linux-4.1.27/arch/sh/boards/ |
D | Kconfig | 1 menu "Board support" 371 menu "Magic Panel R2 options"
|