1 ;; -----------------------------------------------------------------------
3 ;; Copyright 1994-2009 H. Peter Anvin - All Rights Reserved
4 ;; Copyright 2009 Intel Corporation; author: H. Peter Anvin
6 ;; This program is free software; you can redistribute it and/or modify
7 ;; it under the terms of the GNU General Public License as published by
8 ;; the Free Software Foundation, Inc., 53 Temple Place Ste 330,
9 ;; Boston MA 02111-1307, USA; either version 2 of the License, or
10 ;; (at your option) any later version; incorporated herein by reference.
12 ;; -----------------------------------------------------------------------
17 ;; Command line parser code
22 ; -------------------------------------------------------------------------
23 ; getcommand: Get a keyword from the current "getc" file and match it
24 ; against a list of keywords (keywd_table). Each entry in
25 ; that table should have the following form:
26 ; <32 bit hash value> <16 bit handler offset>
28 ; The handler is called, and upon return this function
29 ; returns with CF = 0. On EOF, this function returns
31 ; -------------------------------------------------------------------------
38 call skipspace ; Skip leading whitespace
40 jc .find ; End of line: try again
42 ; Do this explicitly so #foo is treated as a comment
43 cmp al,'#' ; Leading hash mark -> comment
46 ; Abuse the trackbuf by putting the keyword there for
47 ; possible error messaging...
50 or al,20h ; Convert to lower case
51 movzx ebx,al ; Hash for a one-char keyword
55 cmp al,' ' ; Whitespace
64 stosb ; Null-terminate the trackbuf
68 call ungetc ; Return nonwhitespace char to buf
75 lodsd ; Skip entrypoint/argument
78 ; Otherwise unrecognized keyword
95 .found_keywd: lodsw ; Load argument into ax
103 skipline: cmp al,10 ; Search for LF
110 err_badcfg db 'Unknown keyword in configuration file: ',0
111 err_noparm db 'Missing parameter in configuration file. Keyword: ',0
115 vk_size equ (vk_end + 3) & ~3
116 VKernelBuf: resb vk_size ; "Current" vkernel
117 AppendBuf resb max_cmd_len+1 ; append=
118 Ontimeout resb max_cmd_len+1 ; ontimeout
119 Onerror resb max_cmd_len+1 ; onerror
120 ; This could be in .uibss but that makes PXELINUX overflow
122 KbdMap resb 256 ; Keyboard map
123 FKeyName resb MAX_FKEYS*FILENAME_MAX ; File names for F-key help
125 KernelName resb FILENAME_MAX ; Mangled name for kernel
126 MNameBuf resb FILENAME_MAX
127 InitRD resb FILENAME_MAX