Displaying 4 results from an estimated 4 matches for "msg_unknown_file_size".
2009 Jul 15
0
[PATCH] gfxboot: display error message if bootlogo file not found
...ax,2
+ mov bx,pspCmdArg+1
+ int 22h
+
+ mov ax,2
+ mov bx,msg_not_found
+ int 22h
stc
ret
@@ -890,6 +898,7 @@ msg_memory db 'Could not detect availab
msg_bootlogo_toobig db 'bootlogo file too big',0dh,0ah,0
msg_pxelinux db 'pxelinux is not supported',0dh,0ah,0
msg_unknown_file_size db 'unknown file size',0dh,0ah,0
+msg_not_found db ' not found',0dh,0ah,0
msg_space db ' ',0
msg_crlf db 0dh,0ah,0
2009 Jul 15
0
[PATCH] gfxboot: only call gfxboot core if labels are specified
...p word [label_cnt],0
+ ja labels_defined
+ mov bx,msg_no_labels_defined
+ mov ax,2
+ int 22h
+ ret
+
+labels_defined:
; get_gfx_file
mov ax,cs
add ax,2000h
@@ -899,6 +907,7 @@ msg_bootlogo_toobig db 'bootlogo file to
msg_pxelinux db 'pxelinux is not supported',0dh,0ah,0
msg_unknown_file_size db 'unknown file size',0dh,0ah,0
msg_not_found db ' not found',0dh,0ah,0
+msg_no_labels_defined db 'No labels defined in config file',0dh,0ah,0
msg_space db ' ',0
msg_crlf db 0dh,0ah,0
2009 Jul 15
1
[PATCH] gfxboot: remove obsolete message regarding pxelinux support
...db 'missing',0
msg_usage db 'Usage: gfxboot.com <bootlogo>',0dh,0ah,0
msg_memory db 'Could not detect available memory size',0dh,0ah,0
msg_bootlogo_toobig db 'bootlogo file too big',0dh,0ah,0
-msg_pxelinux db 'pxelinux is not supported',0dh,0ah,0
msg_unknown_file_size db 'unknown file size',0dh,0ah,0
msg_not_found db ' not found',0dh,0ah,0
msg_no_labels_defined db 'No labels defined in config file',0dh,0ah,0
2009 Apr 05
3
[PATCH] Gfxboot COMBOOT module
...db 'missing',0
+msg_usage db 'Usage: gfxboot.com <bootlogo>',0dh,0ah,0
+msg_memory db 'Could not detect available memory size',0dh,0ah,0
+msg_bootlogo_toobig db 'bootlogo file too big',0dh,0ah,0
+msg_pxelinux db 'pxelinux is not supported',0dh,0ah,0
+msg_unknown_file_size db 'unknown file size',0dh,0ah,0
+msg_space db ' ',0
+msg_crlf db 0dh,0ah,0
+
+f_handle dw 0
+f_size dd 0
+fname_buf times 64 db 0
+fname_buf_len equ $ - fname_buf
+gfx_slash db '/', 0
+db0 db 0
+max_cmd_len equ 2047
+command_line times max_cmd_len+2 db 0
+
+; me...