search for: enter_command

Displaying 7 results from an estimated 7 matches for "enter_command".

2009 Aug 10
2
PROMPT=0/ESCAPE key SERIAL fun
...; No serial port -> no input + and dx,dx + jz check_for_key +; call pollchar +; jz check_for_key + call reset_idle + call getchar + cmp al,1Bh ; <ESC> + je enter_command check_for_key: test byte [KbdFlags],5Bh ; Shift Alt Caps Scroll jnz enter_command ---- Now, if I hold the escape[1] key down on boot from the serial port it works great. The problem is that if I don't press a key the boot process blocks until it gets...
2010 Sep 14
0
Handling error scenarios in the core
With my recent work on UI/DEFAULT, I've been hunting around in the core code to find any other locations that this new usage would be useful. As a result, I've come up with a few questions. 1) core/com32.inc: not_com32r jumps to enter_command. Should it do something based on ONERROR? 2) core/comboot.inc: comboot_bogus_tail and comboot_too_large go to enter_command. Again, use ONERROR? There may be more that I'm missing. I know bad_implicit/bad_kernel and error_or_command (from abort_load) already use it. I know abort_check (ex...
2002 Feb 26
0
syslinux timeout
...pc_prompt: call getint ; "prompt" command jc parse_config_2 mov [ForcePrompt],bx jmp short parse_config_2 @@ -1454,22 +1468,25 @@ ; ; Check whether or not we are supposed to display the boot prompt. ; check_for_key: cmp word [ForcePrompt],byte 0 ; Force prompt? jnz enter_command test byte [KbdFlags],5Bh ; Caps, Scroll, Shift, Alt jz near auto_boot ; If neither, default boot enter_command: - mov si,boot_prompt - call cwritestr + ; DTM BEGIN ------------------------------------------------ + ;;mov si,boot_prompt + ;;call cwritestr + call writeprompt + ; DTM...
2011 Feb 18
1
[PATCH] core: Allow pasting from a VMware host by typing Ctrl-P
...al,'X' & 1Fh ; <Ctrl-X> je force_text_mode + cmp al,'P' & 1Fh ; <Ctrl-P> + je paste cmp al,08h ; Backspace jne get_char backspace: cmp di,command_line ; Make sure there is anything @@ -143,6 +145,10 @@ force_text_mode: call vgaclearmode jmp enter_command +paste: + call vmware_paste + jmp get_char + set_func_flag: mov byte [FuncFlag],1 jmp short get_char_2 @@ -568,6 +574,72 @@ getchar_timeout: call vgahidecursor ret +; Copy data from VMware's clipboard to the command-line buffer +VMwareMagic equ 564D5868h ; VMWare magic numbe...
2015 Jul 13
2
boot... round 2
...x 50d9fe1..9a5adf9 100644 --- a/core/isolinux.asm +++ b/core/isolinux.asm @@ -1160,6 +1160,10 @@ init_fs: mov ebx,[Hidden+4] mov si,[bsHeads] mov di,[bsSecPerTrack] + push ax + mov al,'$' + call writechr + pop ax pm_call pm_fs_init pm_call load_env32 enter_command: A patch like this?
2008 Aug 31
1
[RFC][PATCH] ui: label completion on tab key
...push si ; save SI + cmp cx,0 + jz .print + push di + push cx + mov si,command_line + es repe cmpsb + pop cx + pop di + jne .next +.print: + mov al,' ' + call writechr + + mov si,di + call writestr +.next: + pop si ; restore SI + jmp .scan +.not_vk: + call crlf + jmp enter_command + ctrl_f: xor ah,ah mov [FuncFlag],ah Index: syslinux-3.71-27-g3d39943/core/keywords =================================================================== --- syslinux-3.71-27-g3d39943.orig/core/keywords 2008-08-31 22:45:26.000000000 +0200 +++ syslinux-3.71-27-g3d39943/core/keywords 2008-08-31...
2015 Jul 03
7
boot... round 2
On Fri, Jul 3, 2015 at 12:50 AM, poma via Syslinux <syslinux at zytor.com> wrote: > - "unsigned char c;" does not solve the problem > > - "c >= 0 && c <= ' '" solves the problem for the current git Could you try the following patch? Feel free to only apply the change to readconfig.c if you want. -- -Gene diff --git