/linux-4.1.27/scripts/kconfig/ |
D | menu.c | 128 static struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct … in menu_add_prop() argument 136 if (prompt) { in menu_add_prop() 137 if (isspace(*prompt)) { in menu_add_prop() 139 while (isspace(*prompt)) in menu_add_prop() 140 prompt++; in menu_add_prop() 142 if (current_entry->prompt && current_entry != &rootmenu) in menu_add_prop() 171 current_entry->prompt = prop; in menu_add_prop() 173 prop->text = prompt; in menu_add_prop() 178 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep) in menu_add_prompt() argument 180 return menu_add_prop(type, prompt, NULL, dep); in menu_add_prompt() [all …]
|
D | mconf.c | 303 "%s - %s", config_filename, rootmenu.prompt->text); in set_config_filename() 487 prop = menu->prompt; in build_conf() 490 const char *prompt = menu_get_prompt(menu); in build_conf() local 494 prompt = _(prompt); in build_conf() 498 indent + 1, ' ', prompt); in build_conf() 501 indent + 1, ' ', prompt, in build_conf() 509 if (prompt) { in build_conf() 511 item_make(" %*c*** %s ***", indent + 1, ' ', _(prompt)); in build_conf() 517 if (prompt) { in build_conf() 519 item_make("---%*c%s", indent + 1, ' ', _(prompt)); in build_conf() [all …]
|
D | zconf.y | 81 %type <string> prompt 166 if (current_entry->prompt) 167 current_entry->prompt->type = P_MENU; 192 config_option: T_PROMPT prompt if_expr T_EOL 237 | T_EQUAL prompt { $$ = $2; } 276 choice_option: T_PROMPT prompt if_expr T_EOL 344 mainmenu_stmt: T_MAINMENU prompt nl 351 menu: T_MENU prompt T_EOL 381 source_stmt: T_SOURCE prompt T_EOL 389 comment: T_COMMENT prompt T_EOL [all …]
|
D | nconf.c | 633 "%s - %s", config_filename, rootmenu.prompt->text); in set_config_filename() 746 prop = menu->prompt; in build_conf() 749 const char *prompt = menu_get_prompt(menu); in build_conf() local 751 ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN; in build_conf() 755 prompt = _(prompt); in build_conf() 760 indent + 1, ' ', prompt); in build_conf() 764 indent + 1, ' ', prompt, in build_conf() 771 if (prompt) { in build_conf() 776 _(prompt)); in build_conf() 780 if (prompt) { in build_conf() [all …]
|
D | qconf.cc | 125 QString prompt; in updateMenu() local 132 prompt = ".."; in updateMenu() 137 prop = menu->prompt; in updateMenu() 138 prompt = _(menu_get_prompt(menu)); in updateMenu() 224 prompt = QString("%1: %2").arg(prompt).arg(data); in updateMenu() 226 prompt = QString("(%2) %1").arg(prompt).arg(data); in updateMenu() 230 prompt += _(" (NEW)"); in updateMenu() 232 setText(promptColIdx, prompt); in updateMenu() 442 type = menu->prompt ? menu->prompt->type : P_UNKNOWN; in updateSelection() 474 rootEntry->sym && rootEntry->prompt) { in updateList() [all …]
|
D | conf.c | 139 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_string() 172 printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); in conf_sym() 364 prop = menu->prompt; in conf() 366 const char *prompt; in conf() local 379 prompt = menu_get_prompt(menu); in conf() 380 if (prompt) in conf() 383 indent, '*', _(prompt), in conf()
|
D | gconf.c | 188 gtk_window_set_title(GTK_WINDOW(main_wnd), rootmenu.prompt->text); in init_main_window() 371 const char *prompt = _(menu_get_prompt(menu)); in text_insert_help() local 382 gtk_text_buffer_insert_with_tags(buffer, &end, prompt, -1, tag1, in text_insert_help() 712 ptype = current->prompt ? current->prompt->type : P_UNKNOWN; in on_back_clicked() 910 ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN; in on_treeview2_button_press_event() 1063 ptype = menu->prompt ? menu->prompt->type : P_UNKNOWN; in fill_row() 1347 prop = child->prompt; in display_tree() 1433 if (child->prompt && child->prompt->type == P_MENU) { in fixup_rootmenu()
|
D | zconf.tab.c | 1723 if (current_entry->prompt) 1724 current_entry->prompt->type = P_MENU; 2300 rootmenu.prompt = menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL); in conf_parse() 2310 rootmenu.prompt->text = _(rootmenu.prompt->text); in conf_parse() 2311 rootmenu.prompt->text = sym_expand_string_value(rootmenu.prompt->text); in conf_parse() 2495 else if ((prop = menu->prompt)) { in zconfdump() 2522 if (menu->prompt && menu->prompt->type == P_MENU) in zconfdump()
|
D | nconf.gui.c | 358 const char *title, const char *prompt, in dialog_inputbox() argument 379 prompt_lines = get_line_no(prompt); in dialog_inputbox() 381 const char *line = get_line(prompt, i); in dialog_inputbox() 411 fill_window(prompt_win, prompt); in dialog_inputbox()
|
D | nconf.h | 91 const char *title, const char *prompt,
|
D | zconf.gperf | 30 prompt, T_PROMPT, TF_COMMAND
|
D | zconf.tab.c_shipped | 570 "depends", "visibility_list", "visible", "prompt_stmt_opt", "prompt", 1723 if (current_entry->prompt) 1724 current_entry->prompt->type = P_MENU; 1726 zconfprint("warning: menuconfig statement without prompt"); 1746 printd(DEBUG_PARSE, "%s:%d:prompt\n", zconf_curname(), zconf_lineno()); 1832 printd(DEBUG_PARSE, "%s:%d:prompt\n", zconf_curname(), zconf_lineno()); 2300 rootmenu.prompt = menu_add_prompt(P_MENU, "Linux Kernel Configuration", NULL); 2310 rootmenu.prompt->text = _(rootmenu.prompt->text); 2311 rootmenu.prompt->text = sym_expand_string_value(rootmenu.prompt->text); 2437 fputs(" prompt ", out); [all …]
|
D | lkc.h | 106 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep);
|
D | kxgettext.c | 185 if (child->prompt != NULL) in menu_build_message_list()
|
D | zconf.hash.c_shipped | 124 char kconf_id_strings_str56[sizeof("prompt")]; 160 "prompt",
|
D | expr.h | 170 struct property *prompt; member
|
D | confdata.c | 659 rootmenu.prompt->text); in conf_write_heading()
|
/linux-4.1.27/drivers/s390/char/ |
D | Kconfig | 6 prompt "Support for locally attached 3270 terminals" 13 prompt "Support for tty input/output on 3270 terminals" 20 prompt "Support for fullscreen applications on 3270 terminals" 27 prompt "Support for console on 3270 terminal" 35 prompt "Support for 3215 line mode terminal" 42 prompt "Support for console on 3215 line mode terminal" 53 prompt "Support for SCLP line mode terminal" 60 prompt "Support for console on SCLP line mode terminal" 68 prompt "Support for SCLP VT220-compatible terminal" 75 prompt "Support for console on SCLP VT220-compatible terminal" [all …]
|
D | tty3270.c | 88 struct string *prompt; /* Output string for input area. */ member 140 line = tp->prompt; in tty3270_update_prompt() 173 tp->prompt = line; in tty3270_create_prompt() 387 if (raw3270_request_add_data(wrq, tp->prompt->string, in tty3270_update() 388 tp->prompt->len) == 0) in tty3270_update() 819 free_string(&tp->freemem, tp->prompt); in tty3270_resize_work()
|
/linux-4.1.27/drivers/s390/block/ |
D | Kconfig | 6 prompt "XPRAM disk support" 17 prompt "DCSSBLK support" 24 prompt "Support for DASD devices" 34 prompt "Profiling support for dasd devices" 42 prompt "Support for ECKD Disks" 50 prompt "Support for FBA Disks" 58 prompt "Support for DIAG access to Disks" 67 prompt "Extended error reporting (EER)" 76 prompt "Support for Storage Class Memory" 87 prompt "SCM force cluster writes"
|
/linux-4.1.27/scripts/kconfig/lxdialog/ |
D | dialog.h | 223 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x); 231 int dialog_yesno(const char *title, const char *prompt, int height, int width); 232 int dialog_msgbox(const char *title, const char *prompt, int height, 241 int dialog_menu(const char *title, const char *prompt, 243 int dialog_checklist(const char *title, const char *prompt, int height, 245 int dialog_inputbox(const char *title, const char *prompt, int height,
|
D | yesno.c | 42 int dialog_yesno(const char *title, const char *prompt, int height, int width) in dialog_yesno() argument 74 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_yesno()
|
D | inputbox.c | 44 int dialog_inputbox(const char *title, const char *prompt, int height, int width, in dialog_inputbox() argument 85 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_inputbox()
|
D | checklist.c | 117 int dialog_checklist(const char *title, const char *prompt, int height, in dialog_checklist() argument 163 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_checklist()
|
D | menubox.c | 184 int dialog_menu(const char *title, const char *prompt, in dialog_menu() argument 227 print_autowrap(dialog, prompt, width - 2, 1, 3); in dialog_menu()
|
D | util.c | 382 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x) in print_autowrap() argument 388 strcpy(tempstr, prompt); in print_autowrap()
|
/linux-4.1.27/drivers/s390/net/ |
D | Kconfig | 6 prompt "Lan Channel Station Interface" 16 prompt "CTC and MPC SNA device support" 31 prompt "IUCV network device support (VM only)" 43 prompt "IUCV special message support (VM only)" 51 prompt "Deliver IUCV special messages as uevents (VM only)" 62 prompt "Gigabit Ethernet device support" 77 prompt "qeth layer 2 device support" 86 prompt "qeth layer 3 device support"
|
/linux-4.1.27/arch/avr32/boards/atngw100/ |
D | Kconfig_mrmt | 4 prompt "RMT Version" 21 prompt "Touchscreen Driver" 33 prompt "RMTx LCD Selection" 69 prompt "Wireless Module on ttyS2"
|
D | Kconfig | 17 prompt "Select an NGW100 add-on board to support" 46 prompt "LCD panel resolution on EVKLCD10X"
|
/linux-4.1.27/arch/sh/ |
D | Kconfig.cpu | 4 prompt "Endianness selection" 21 prompt "FPU support" 35 prompt "FPU emulation support" 44 prompt "DSP support" 54 prompt "ADC support"
|
D | Kconfig | 240 prompt "Processor sub-type selection" 535 prompt "Processor sub-type selection" 794 prompt "Kernel command line"
|
/linux-4.1.27/drivers/net/wireless/libertas_tf/ |
D | deb_defs.h | 89 static inline void lbtf_deb_hex(unsigned int grp, const char *prompt, u8 *buf, int len) in lbtf_deb_hex() argument 96 snprintf(newprompt, sizeof(newprompt), DRV_NAME " %s: ", prompt); in lbtf_deb_hex() 97 print_hex_dump_bytes(prompt, DUMP_PREFIX_NONE, buf, len); in lbtf_deb_hex() 101 #define lbtf_deb_hex(grp, prompt, buf, len) do {} while (0) argument
|
/linux-4.1.27/arch/s390/ |
D | Kconfig | 200 prompt "Processor type" 283 prompt "Tune code generation" 327 prompt "Kernel support for 31 bit emulation" 346 prompt "Symmetric multi-processing support" 378 prompt "Support for hot-pluggable CPUs" 396 prompt "Topology scheduler support" 442 prompt "Pack kernel stack" 456 prompt "Detect kernel stack overflow" 481 prompt "Emit compiler warnings for function with dynamic stack usage" 495 prompt "QDIO support" [all …]
|
D | Kconfig.debug | 10 prompt "Filter access to /dev/mem"
|
/linux-4.1.27/arch/mips/lantiq/ |
D | Kconfig | 9 prompt "SoC Type" 28 prompt "Devicetree"
|
/linux-4.1.27/Documentation/kbuild/ |
D | kconfig-language.txt | 40 the config option, input prompt, dependencies, help text and default 42 name, but every definition can have only a single input prompt and the 54 definition optionally accepts an input prompt, so these two examples 60 prompt "Networking support" 62 - input prompt: "prompt" <prompt> ["if" <expr>] 63 Every menu entry can have at most one prompt, which is used to display 64 to the user. Optionally dependencies only for this prompt can be added 74 value was set by the user (via the input prompt above). If an input 75 prompt is visible the default value is presented to the user and can 120 similar to a conditional "prompt" attribute for individual menu [all …]
|
/linux-4.1.27/net/iucv/ |
D | Kconfig | 4 prompt "IUCV support (S390 - z/VM only)" 13 prompt "AF_IUCV Socket support (S390 - z/VM and HiperSockets transport)"
|
/linux-4.1.27/arch/cris/ |
D | Kconfig | 124 prompt "Processor type" 186 prompt "Product debug-port" 218 prompt "Kernel GDB port" 304 prompt "Network LED behavior" 335 prompt "Ser0 DMA out channel" 368 prompt "Ser0 DMA in channel " 403 prompt "Ser1 DMA in channel " 433 prompt "Ser1 DMA out channel" 462 prompt "Ser2 DMA out channel" 495 prompt "Ser2 DMA in channel" [all …]
|
/linux-4.1.27/arch/mips/ralink/ |
D | Kconfig | 16 prompt "Ralink SoC selection" 40 prompt "Devicetree selection"
|
/linux-4.1.27/arch/mips/loongson1/ |
D | Kconfig | 4 prompt "Machine Type" 35 prompt "Select clockevent/clocksource"
|
/linux-4.1.27/arch/s390/kvm/ |
D | Kconfig | 8 prompt "KVM" 20 prompt "Kernel-based Virtual Machine (KVM) support"
|
/linux-4.1.27/drivers/net/wireless/libertas/ |
D | defs.h | 93 static inline void lbs_deb_hex(unsigned int grp, const char *prompt, in lbs_deb_hex() argument 106 printk(DRV_NAME " %s: ", prompt); in lbs_deb_hex() 115 #define lbs_deb_hex(grp,prompt,buf,len) do {} while (0) argument
|
/linux-4.1.27/arch/mips/jz4740/ |
D | Kconfig | 2 prompt "Machine type"
|
/linux-4.1.27/arch/blackfin/mach-bf518/ |
D | Kconfig | 14 prompt "PWM Channel Pins" 36 prompt "PWM Sync Pin" 50 prompt "PWM Trip B Pin" 64 prompt "PPI / Timer Pins"
|
/linux-4.1.27/arch/blackfin/mach-bf527/ |
D | Kconfig | 14 prompt "SPORT0" 31 prompt "SPORT0 TSCLK Location" 49 prompt "UART1" 66 prompt "NAND (NFC) Data"
|
/linux-4.1.27/arch/mips/bcm63xx/boards/ |
D | Kconfig | 2 prompt "Board support"
|
/linux-4.1.27/arch/blackfin/mach-bf609/boards/ |
D | Kconfig | 2 prompt "System type"
|
/linux-4.1.27/arch/blackfin/mach-bf538/boards/ |
D | Kconfig | 2 prompt "System type"
|
/linux-4.1.27/arch/sh/boards/mach-migor/ |
D | Kconfig | 4 prompt "Migo-R LCD Panel Board Selection"
|
/linux-4.1.27/arch/blackfin/mach-bf518/boards/ |
D | Kconfig | 2 prompt "System type"
|
/linux-4.1.27/arch/blackfin/mach-bf548/boards/ |
D | Kconfig | 2 prompt "System type"
|
/linux-4.1.27/arch/sh/boards/mach-sdk7780/ |
D | Kconfig | 4 prompt "SDK7780 options"
|
/linux-4.1.27/arch/mips/vr41xx/ |
D | Kconfig | 2 prompt "Machine type" 67 prompt "Base board type"
|
/linux-4.1.27/arch/sh/boards/mach-rsk/ |
D | Kconfig | 4 prompt "RSK+ options"
|
/linux-4.1.27/arch/arm/mach-ixp4xx/ |
D | Kconfig | 9 prompt "Linksys NSLU2" 109 prompt "NAS100D" 118 prompt "D-Link DSM-G600 RevA" 132 prompt "Freecom FSG-3" 141 prompt "Arcom/Eurotech Vulcan"
|
/linux-4.1.27/arch/sh/boards/mach-highlander/ |
D | Kconfig | 4 prompt "Highlander options"
|
/linux-4.1.27/kernel/debug/kdb/ |
D | kdb_io.c | 442 char *kdb_getstr(char *buffer, size_t bufsize, const char *prompt) in kdb_getstr() argument 444 if (prompt && kdb_prompt_str != prompt) in kdb_getstr() 445 strncpy(kdb_prompt_str, prompt, CMD_BUFLEN); in kdb_getstr()
|
D | kdb_cmds | 8 # or archkdbcpu or archkdbshort at the kdb prompt.
|
/linux-4.1.27/arch/powerpc/platforms/8xx/ |
D | Kconfig | 6 prompt "8xx Machine Type" 68 prompt "Second Ethernet channel" 148 prompt "Microcode patch selection"
|
/linux-4.1.27/arch/blackfin/mach-bf561/boards/ |
D | Kconfig | 2 prompt "System type"
|
/linux-4.1.27/arch/avr32/boards/atstk1000/ |
D | Kconfig | 6 prompt "ATSTK1000 CPU daughterboard type" 83 prompt "LEDs connected to J2:"
|
/linux-4.1.27/arch/frv/ |
D | Kconfig | 105 prompt "uClinux kernel load address" 157 prompt "CPU Caching mode" 249 prompt "System support" 262 prompt "Motherboard support" 287 prompt "GP-Relative data support"
|
D | Kconfig.debug | 18 prompt "GDB stub port"
|
/linux-4.1.27/arch/blackfin/mach-bf527/boards/ |
D | Kconfig | 2 prompt "System type"
|
/linux-4.1.27/arch/avr32/mach-at32ap/ |
D | Kconfig | 6 prompt "AT32AP700x static memory bus width"
|
/linux-4.1.27/arch/mips/pmcs-msp71xx/ |
D | Kconfig | 2 prompt "PMC-Sierra MSP SOC type"
|
/linux-4.1.27/Documentation/blockdev/ |
D | ramdisk.txt | 71 prompt/wait sequence is to be given before trying to read the RAM disk. Since 90 You want bit 15 as one, indicating that you want a prompt/keypress 103 Since the default start = 0 and the default prompt = 1, you could use: 153 g) Use "rdev" to set the boot device, RAM disk offset, prompt flag, etc.
|
D | floppy.txt | 14 lilo. This option can be typed at the boot prompt, or entered in the 18 at the lilo boot prompt (if you have a thinkpad): 33 prompt, the option strings of both places are concatenated, the boot 34 prompt options coming last. That's why there are also options to
|
/linux-4.1.27/arch/blackfin/mach-bf533/boards/ |
D | Kconfig | 2 prompt "System type"
|
/linux-4.1.27/arch/hexagon/ |
D | Kconfig | 90 prompt "System type" 133 prompt "Kernel page size"
|
/linux-4.1.27/arch/blackfin/mach-bf537/boards/ |
D | Kconfig | 2 prompt "System type"
|
/linux-4.1.27/arch/metag/mm/ |
D | Kconfig | 19 prompt "User page size" 104 prompt "HugeTLB page size"
|
/linux-4.1.27/arch/mips/bmips/ |
D | Kconfig | 4 prompt "Built-in device tree"
|
/linux-4.1.27/arch/mn10300/ |
D | Kconfig | 73 prompt "Unit type" 92 prompt "Processor support" 308 prompt "Select the timer to supply the clock for SIF0" 330 prompt "Select the timer to supply the clock for SIF1" 361 prompt "Select the timer to supply the clock for SIF2"
|
D | Kconfig.debug | 110 prompt "GDB stub port"
|
/linux-4.1.27/arch/sh/cchips/ |
D | Kconfig | 7 prompt "HD6446x options"
|
/linux-4.1.27/arch/score/ |
D | Kconfig | 19 prompt "System type"
|
/linux-4.1.27/arch/mips/alchemy/ |
D | Kconfig | 17 prompt "Machine type"
|
/linux-4.1.27/arch/mn10300/mm/ |
D | Kconfig.cache | 6 prompt "CPU Caching mode" 53 prompt "CPU cache flush/invalidate method"
|
/linux-4.1.27/security/integrity/ima/ |
D | Kconfig | 48 prompt "Default template" 76 prompt "Default integrity hash algorithm"
|
/linux-4.1.27/arch/sh/mm/ |
D | Kconfig | 167 prompt "Kernel page size" 197 prompt "HugeTLB page size" 248 prompt "Cache mode"
|
/linux-4.1.27/drivers/staging/gdm72xx/ |
D | Kconfig | 34 prompt "Select interface"
|
/linux-4.1.27/arch/metag/ |
D | Kconfig.soc | 2 prompt "SoC Type"
|
D | Kconfig | 143 prompt "Atomicity primitive"
|
/linux-4.1.27/arch/blackfin/ |
D | Kconfig | 81 prompt "CPU" 273 prompt "Silicon Rev" 479 prompt "Core Clock Divider" 543 prompt "DDR SDRAM Chip Type" 556 prompt "DDR/SDRAM Timing" 697 prompt "Blackfin Exception Scratch Register" 967 prompt "Kernel executes from" 1002 prompt "Uncached DMA region" 1054 prompt "External memory DCACHE policy" 1101 prompt "L2 SRAM DCACHE policy" [all …]
|
D | Kconfig.debug | 77 prompt "Double Fault Failure Method" 116 prompt "Omit loop Tracing"
|
/linux-4.1.27/arch/powerpc/platforms/ |
D | Kconfig.cputype | 12 prompt "Processor Type" 60 prompt "Processor Type" 88 prompt "CPU selection" 409 prompt "Endianness selection"
|
/linux-4.1.27/drivers/net/can/usb/peak_usb/ |
D | pcan_usb_core.h | 143 void pcan_dump_mem(char *prompt, void *p, int l);
|
D | pcan_usb_core.c | 59 void pcan_dump_mem(char *prompt, void *p, int l) in pcan_dump_mem() argument 62 PCAN_USB_DRIVER_NAME, prompt ? prompt : "memory", l); in pcan_dump_mem()
|
/linux-4.1.27/arch/mips/sgi-ip27/ |
D | Kconfig | 2 prompt "Node addressing mode"
|
/linux-4.1.27/arch/parisc/ |
D | Kconfig | 119 prompt "Processor type" 206 prompt "Kernel page size" 327 prompt "Enable seccomp to safely compute untrusted bytecode"
|
/linux-4.1.27/kernel/ |
D | Kconfig.hz | 6 prompt "Timer frequency"
|
D | Kconfig.preempt | 3 prompt "Preemption Model"
|
/linux-4.1.27/block/ |
D | Kconfig.iosched | 43 prompt "Default I/O scheduler"
|
/linux-4.1.27/arch/m68k/ |
D | Kconfig.cpu | 4 prompt "CPU family support" 129 prompt "ColdFire SoC type" 450 prompt "Split Cache Configuration" 473 prompt "Data cache mode"
|
D | Kconfig.machine | 432 prompt "Kernel executes from"
|
/linux-4.1.27/drivers/acpi/acpica/ |
D | acdebug.h | 257 acpi_status acpi_db_user_commands(char prompt, union acpi_parse_object *op);
|
/linux-4.1.27/lib/ |
D | Kconfig.kasan | 26 prompt "Instrumentation type"
|
D | Kconfig.kmemcheck | 28 prompt "kmemcheck: default mode at boot"
|
D | Kconfig | 119 prompt "CRC32 implementation" 413 # prompt "glob_match() function"
|
/linux-4.1.27/arch/cris/arch-v10/drivers/ |
D | Kconfig | 55 prompt "Ser0 DTR, RI, DSR and CD assignment" 143 prompt "Ser1 DTR, RI, DSR and CD assignment" 234 prompt "Ser2 DTR, RI, DSR and CD assignment" 322 prompt "Ser3 DTR, RI, DSR and CD assignment" 477 prompt "EEPROM size"
|
/linux-4.1.27/arch/m32r/ |
D | Kconfig | 49 prompt "Platform Type" 113 prompt "Processor family" 343 prompt "PCI access mode"
|
/linux-4.1.27/arch/ia64/ |
D | Kconfig.debug | 6 prompt "Physical memory granularity"
|
D | Kconfig | 164 prompt "System type" 245 prompt "Processor type" 263 prompt "Kernel page size"
|
/linux-4.1.27/fs/romfs/ |
D | Kconfig | 22 prompt "RomFS backing stores"
|
/linux-4.1.27/arch/mips/txx9/ |
D | Kconfig | 110 prompt "PIO[58:61]"
|
/linux-4.1.27/arch/avr32/ |
D | Kconfig | 105 prompt "AVR32 board type" 166 prompt "Boot loader type"
|
/linux-4.1.27/arch/blackfin/mach-bf548/ |
D | Kconfig | 46 prompt "UART2 DMA channel selection" 75 prompt "UART3 DMA channel selection"
|
/linux-4.1.27/drivers/pci/pcie/ |
D | Kconfig | 56 prompt "Default ASPM policy"
|
/linux-4.1.27/kernel/gcov/ |
D | Kconfig | 53 prompt "Specify GCOV format"
|
/linux-4.1.27/drivers/thermal/ |
D | Kconfig | 20 prompt "Expose thermal sensors as hwmon device" 34 prompt "APIs to parse thermal data out of device tree" 46 prompt "Default Thermal governor"
|
/linux-4.1.27/arch/arc/ |
D | Kconfig | 93 prompt "ARC Core" 229 prompt "ARC700 MMU Version" 256 prompt "MMU Page Size"
|
/linux-4.1.27/drivers/rapidio/ |
D | Kconfig | 51 prompt "Enumeration method"
|
/linux-4.1.27/drivers/net/ethernet/wiznet/ |
D | Kconfig | 48 prompt "WIZnet interface mode"
|
/linux-4.1.27/tools/testing/ktest/ |
D | ktest.pl | 484 my ($cancel, $prompt) = @_; 490 print "$prompt [y/n/C] "; 492 print "$prompt [Y/n] "; 521 my ($prompt) = @_; 523 return read_prompt 0, $prompt; 527 my ($prompt) = @_; 529 return read_prompt 1, $prompt;
|
/linux-4.1.27/Documentation/ia64/ |
D | serial.txt | 117 Kernel and init script output works fine, but no "login:" prompt: 123 "login:" prompt, but can't login as root:
|
D | xen.txt | 102 prompt
|
/linux-4.1.27/Documentation/fb/ |
D | vesafb.txt | 66 mode at the "vga=ask" prompt. For example if you like to use 67 1024x768x256 colors you have to say "305" at this prompt.
|
/linux-4.1.27/arch/x86/ |
D | Kconfig | 629 prompt "Single-depth WCHAN output" 729 prompt "HPET Timer Support" if X86_32 752 prompt "Intel MID APB Timer Support" if X86_INTEL_MID 815 prompt "Should Calgary be enabled by default?" 875 prompt "Multi-core scheduler support" 958 prompt "Intel MCE features" 966 prompt "AMD MCE features" 1175 prompt "High Memory Support" 1232 prompt "Memory split" if EXPERT 1327 prompt "Old style AMD Opteron NUMA detection" [all …]
|
D | Kconfig.debug | 220 prompt "IO delay type"
|
D | Kconfig.cpu | 3 prompt "Processor family"
|
/linux-4.1.27/drivers/net/fddi/ |
D | Kconfig | 31 prompt "Use MMIO instead of PIO" if PCI || EISA
|
/linux-4.1.27/Documentation/ |
D | mono.txt | 61 from a command prompt, for example:
|
D | svga.txt | 13 ** enter `scan' on the video mode prompt, pick the mode you want to use, 272 offered explicitly on the prompt line.
|
D | sysrq.txt | 139 thus letting you make sure that the login prompt you see is actually
|
D | 00-INDEX | 263 - summary listing of command line / boot prompt args for the kernel.
|
D | applying-patches.txt | 135 If patch stops and presents a "File to patch:" prompt, then patch could not
|
/linux-4.1.27/arch/mips/netlogic/ |
D | Kconfig | 62 prompt "Number of XLPs on the board"
|
/linux-4.1.27/arch/mips/sibyte/ |
D | Kconfig | 81 prompt "SiByte SOC Stepping"
|
/linux-4.1.27/sound/soc/davinci/ |
D | Kconfig | 58 prompt "DM365 codec select"
|
/linux-4.1.27/arch/arm/mach-davinci/ |
D | Kconfig | 142 prompt "Select DA830/OMAP-L137/AM17x UI board peripheral" 171 prompt "Select peripherals connected to expander on UI board"
|
/linux-4.1.27/net/sctp/ |
D | Kconfig | 63 prompt "Default SCTP cookie HMAC encoding"
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-wusb_cbaf | 42 CMD may choose to prompt the user before
|
/linux-4.1.27/drivers/net/wireless/b43legacy/ |
D | Kconfig | 69 prompt "Broadcom 43xx-legacy data transfer mode"
|
/linux-4.1.27/arch/mips/loongson/ |
D | Kconfig | 4 prompt "Machine Type"
|
/linux-4.1.27/fs/squashfs/ |
D | Kconfig | 29 prompt "File decompression options" 57 prompt "Decompressor parallelisation options"
|
/linux-4.1.27/arch/openrisc/ |
D | Kconfig | 62 prompt "Subarchitecture"
|
/linux-4.1.27/arch/arm/mach-pxa/ |
D | Kconfig | 146 prompt "Gumstix Carrier/Expansion Board" 195 prompt "Select base board for Trizeps module" 233 prompt "display on pcm990"
|
/linux-4.1.27/Documentation/arm/ |
D | Setup | 40 bit 3 - 0 = prompt for ramdisk
|
/linux-4.1.27/arch/unicore32/ |
D | Kconfig | 93 prompt "Board Selection"
|
/linux-4.1.27/drivers/iommu/ |
D | Kconfig | 139 prompt "Enable Intel DMA Remapping Devices by default" 274 prompt "IPMMU/IPMMUI address space size"
|
/linux-4.1.27/arch/cris/arch-v32/ |
D | Kconfig | 14 prompt "Nbr of Ethernet LED groups" 103 prompt "Kernel GDB port"
|
/linux-4.1.27/arch/alpha/ |
D | Kconfig | 92 prompt "Alpha system type" 407 prompt "EV56 CPU (speed >= 333MHz)?" 411 prompt "EV56 CPU (speed >= 400MHz)?" 664 prompt "Timer interrupt frequency (HZ)?"
|
/linux-4.1.27/drivers/usb/musb/ |
D | Kconfig | 117 prompt 'MUSB DMA mode'
|
/linux-4.1.27/arch/powerpc/ |
D | Kconfig.debug | 136 prompt "Early debugging console" 332 prompt "Filter access to /dev/mem"
|
D | Kconfig | 342 prompt "Math emulation options" 533 prompt "Page size"
|
/linux-4.1.27/arch/arm/mach-ep93xx/ |
D | Kconfig | 19 prompt "EP93xx first SDRAM bank selection"
|
/linux-4.1.27/arch/arm/plat-omap/ |
D | Kconfig | 150 prompt "OMAP PM layer selection"
|
/linux-4.1.27/arch/arm/mach-sa1100/ |
D | Kconfig | 33 prompt "Cerf Flash available"
|
/linux-4.1.27/arch/cris/arch-v10/ |
D | Kconfig | 18 prompt "Product LED port" 235 prompt "Product rescue-port"
|
/linux-4.1.27/arch/tile/ |
D | Kconfig | 175 prompt "Kernel page size" 278 prompt "Memory split" if EXPERT
|
/linux-4.1.27/drivers/staging/speakup/ |
D | spkguide.txt | 61 prompt of your boot loader. 148 When the boot process is complete, you will arrive at a "login" prompt. 471 example, if you were to execute the punc3 command at your shell prompt, 775 Suppose that you are at a shell prompt. You use bash, and you want to 778 Speakup speaks both your shell prompt and the current entry from the 779 command history. You may not want to hear the prompt repeated 783 character that follows your shell prompt. Press speakup + f2 twice, to 785 character following the shell prompt and the end of the line. Now, cycle 788 You will notice that Speakup no longer speaks the redundant prompt. 830 Once you've changed to an appropriate console, and are at a shell prompt, [all …]
|
/linux-4.1.27/Documentation/frv/ |
D | gdbstub.txt | 84 When the prompt appears:
|
/linux-4.1.27/arch/arm/mach-imx/ |
D | Kconfig | 464 prompt "Baseboard" 597 prompt "Clocksource for scheduler clock"
|
/linux-4.1.27/drivers/net/wireless/b43/ |
D | Kconfig | 37 prompt "Supported bus types"
|
/linux-4.1.27/fs/jffs2/ |
D | Kconfig | 157 prompt "JFFS2 default compression mode" if JFFS2_COMPRESSION_OPTIONS
|
/linux-4.1.27/security/ |
D | Kconfig | 130 prompt "Default security module"
|
/linux-4.1.27/arch/xtensa/ |
D | Kconfig | 80 prompt "Xtensa Processor Configuration" 289 prompt "Xtensa System Type"
|
/linux-4.1.27/arch/m68k/q40/ |
D | README | 62 only the penguin - and shell prompt if it gets that far..
|
/linux-4.1.27/kernel/time/ |
D | Kconfig | 69 prompt "Timer tick handling"
|
/linux-4.1.27/arch/arm/mach-s3c64xx/ |
D | Kconfig | 166 prompt "SMDK6410 MMC/SD slot setup"
|
/linux-4.1.27/arch/microblaze/ |
D | Kconfig | 230 prompt "Page size"
|
/linux-4.1.27/arch/mips/ |
D | Kconfig | 65 prompt "System type" 1106 prompt "Endianness selection" 1280 prompt "CPU type" 1948 prompt "Kernel code model" 1985 prompt "Kernel page size" 2276 prompt "SmartMIPS or microMIPS ASE support" 2517 prompt "Timer frequency"
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | armada-xp-synology-ds414.dts | 54 * installing it from u-boot prompt) or adjust the Devive Tree
|
D | armada-370-synology-ds213j.dts | 54 * installing it from u-boot prompt) or adjust the Devive Tree
|
/linux-4.1.27/fs/ |
D | Kconfig.binfmt | 159 those programs simply by typing in its name at a shell prompt; Linux
|
/linux-4.1.27/init/ |
D | Kconfig | 119 prompt "Kernel compression mode" 336 prompt "Cputime accounting" 469 prompt "RCU Implementation" 744 prompt "Build-forced no-CBs CPUs" 1684 prompt "Choose SLAB allocator" 1907 prompt "Which hash algorithm should modules be signed with?" 1973 prompt "Compression algorithm"
|
/linux-4.1.27/drivers/cpufreq/ |
D | Kconfig | 50 prompt "Default CPUFreq governor"
|
/linux-4.1.27/Documentation/fmc/ |
D | identifiers.txt | 142 image (here below spusa$ is the shell prompt):
|
/linux-4.1.27/drivers/mtd/chips/ |
D | Kconfig | 43 prompt "Flash cmd/query data swapping"
|
/linux-4.1.27/net/mac80211/ |
D | Kconfig | 45 prompt "Default rate control algorithm"
|
/linux-4.1.27/arch/arm/ |
D | Kconfig | 313 prompt "ARM system type" 1429 prompt "Memory split" 1507 prompt "Timer frequency" 1736 prompt "Enable seccomp to safely compute untrusted bytecode" 1867 prompt "Kernel command line type" if ARM_ATAG_DTB_COMPAT 1896 prompt "Kernel command line type" if CMDLINE != ""
|
/linux-4.1.27/Documentation/usb/ |
D | gadget_hid.txt | 96 You are now in the prompt of hid_gadget_test. You can type any
|
D | WUSB-Design-overview.txt | 341 /DN_Disconnect/ that will prompt a disconnection from the system.
|
/linux-4.1.27/Documentation/arm/SA1100/ |
D | Assabet | 237 Then, rebooting the Assabet is just a matter of waiting for the login prompt.
|
/linux-4.1.27/arch/arm64/ |
D | Kconfig | 436 prompt "Page size" 457 prompt "Virtual address space size"
|
/linux-4.1.27/mm/ |
D | Kconfig | 6 prompt "Memory model" 425 prompt "Transparent Hugepage Support sysfs defaults"
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | nfsroot.txt | 259 loadlin may be used to boot Linux from a DOS command prompt without
|
/linux-4.1.27/Documentation/power/ |
D | basic-pm-debugging.txt | 12 the command prompt where you have started the transition. If that happens,
|
/linux-4.1.27/drivers/base/ |
D | Kconfig | 290 prompt "Selected region size"
|
/linux-4.1.27/Documentation/s390/ |
D | 3270.txt | 150 3. You should immediately see a login prompt from your
|
D | Debugging390.txt | 1086 from the bash prompt issue 1879 #6 0x5164fe in readline (prompt=0x7ffff810) 1881 #7 0x4d7a8a in command_line_input (prompt=0x564420 "(gdb) ", repeat=1, 1882 annotation_suffix=0x4d6b44 "prompt") at top.c:2091
|
/linux-4.1.27/drivers/video/fbdev/ |
D | Kconfig | 147 prompt "Choice endianness support" 634 prompt "Video mode support" 659 prompt "Size of ADV7393 frame buffer memory Single/Double Size" 1721 prompt "DRAM timing" 2281 prompt "GDC variant"
|
/linux-4.1.27/drivers/mtd/maps/ |
D | Kconfig | 86 prompt "Maximum mappable memory available for flash IO"
|
/linux-4.1.27/drivers/net/irda/ |
D | Kconfig | 53 prompt "SIR Mode"
|
/linux-4.1.27/arch/ |
D | Kconfig | 361 prompt "Stack Protector buffer overflow detection"
|
/linux-4.1.27/drivers/usb/gadget/legacy/ |
D | Kconfig | 449 prompt "EHCI Debug Device mode"
|
/linux-4.1.27/drivers/misc/ |
D | Kconfig | 78 prompt "TC Block" if CPU_AT32AP700X
|
/linux-4.1.27/drivers/tty/ |
D | Kconfig | 428 probe which supports it, to get console output and a login prompt via
|
/linux-4.1.27/arch/x86/math-emu/ |
D | README | 150 protection fault message when run under the MS-DOS prompt of Windows
|
/linux-4.1.27/Documentation/cgroups/ |
D | cpusets.txt | 704 The sched_setaffinity calls can also be done at the shell prompt using 706 calls can be done at the shell prompt using the numactl command
|
/linux-4.1.27/kernel/trace/ |
D | Kconfig | 277 prompt "Branch Profiling"
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | README | 232 If no password is provided, mount.cifs will prompt for password entry 383 mount helper will not prompt the user for a password
|
/linux-4.1.27/Documentation/networking/ |
D | cs89x0.txt | 389 from a DOS or command prompt session under Windows 95, Windows NT,
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 447 The kernel will boot up and present you with a login prompt. 804 so that when you switch to it, you will see the UML login prompt 805 rather than the host login prompt: 838 prompt of the other virtual machine. 2301 You'll get a prompt, at which you can run one of these commands:
|
/linux-4.1.27/net/ipv4/ |
D | Kconfig | 619 prompt "Default TCP congestion control"
|
/linux-4.1.27/Documentation/powerpc/ |
D | hvcs.txt | 235 kermit to connect to /dev/hvcs0 when the console prompt becomes available
|
/linux-4.1.27/Documentation/isdn/ |
D | README.HiSax | 530 prompt
|
/linux-4.1.27/drivers/mmc/host/ |
D | Kconfig | 506 prompt "Samsung S3C SD/MMC transfer code"
|
/linux-4.1.27/drivers/ide/ |
D | Kconfig | 675 prompt "IDE Mode for AMD Alchemy Au1200"
|