search for: 2000h

Displaying 6 results from an estimated 6 matches for "2000h".

Did you mean: 2000
2011 Apr 03
3
Multi UPS on Debian
Hello, i have a server which supposed to control three Eaton UPS connected by USB cables. Each UPS is Eaton NV 2000H. (eaton_1, eaton_2, eaton_3) The connection is fine with each UPS, if it is configured alone. If i configure two or all three, the connections broke up. After nut started, tried to start upsdrv manually (eaton_1. The log: Apr 4 00:43:46 mail blazer_usb[10799]: Startup successful Apr 4 00:43:4...
2012 Sep 21
8
Re: Xen + DVB = not working. memory allocation issue?
...so include xen-devel on the To header. I''ve done that for you. > > I refer to your patch at: > http://lists.xen.org/archives/html/xen-devel/2012-01/msg01927.html > which I found reading > http://www.gossamer-threads.com/lists/xen/devel/256197 > > I have a winfast DVT 2000H (cx88) DVB card which is not able to > scan/watch digital TV when running under Xen. Did you first try running it under baremetal Linux (using a Live CD for example?) Did it work there? How does it not work? Can you program it? Is this under a guest or the main kernel? When it wsa not working,...
2004 Dec 16
1
address space of Pxelinux
Hi, I have on my machine the hardware that uses address space from CS=2000h:IP=0200h till CS=6000h:IP=0200h. With this hardware I can not load linux kernel with pxelinux.0. The loading stops with: Loading vmlinuz-2.2.20....(4 dots) Without this hardware loading is successful. Is my problem caused by address space conflic? Please, give me a hand. Igor
2009 Jul 15
0
[PATCH] gfxboot: only call gfxboot core if labels are specified
...+++ syslinux-3.82-440-g6483c80/modules/gfxboot.asm @@ -144,7 +144,15 @@ got_config_file: push cs pop es call parse_config + cmp 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 conf...
2008 Nov 22
5
[RFC][PATCH] Gfxboot COMBOOT module
...p bx + pop es + mov ax,2 + int 22h + push cs + pop es + mov bx, msg_space + mov ax,2 + int 22h + mov bx, msg_missing + mov ax,2 + int 22h + mov ax,2 + mov bx, msg_crlf + int 22h + ret +got_config_file: + push cs + pop es + call parse_config + +; get_gfx_file + mov ax,cs + add ax,2000h + mov word [gfx_mem_start_seg],ax + mov ax,[pspNextP] + mov word [gfx_mem_end_seg],ax + + call gfx_init + jc error + + call gfx_setup_menu + jc exit + +input: + call gfx_input + jc exit + + cmp eax,1 + jz exit + + cmp eax,2 + jz boot + + jmp input + +boot: + call far [gfx_bc_done] +...
2009 Apr 05
3
[PATCH] Gfxboot COMBOOT module
...p bx + pop es + mov ax,2 + int 22h + push cs + pop es + mov bx, msg_space + mov ax,2 + int 22h + mov bx, msg_missing + mov ax,2 + int 22h + mov ax,2 + mov bx, msg_crlf + int 22h + ret +got_config_file: + push cs + pop es + call parse_config + +; get_gfx_file + mov ax,cs + add ax,2000h + mov word [gfx_mem_start_seg],ax + mov ax,[pspNextP] + mov word [gfx_mem_end_seg],ax + + call gfx_init + jc error + + call gfx_setup_menu + jc exit + +input: + call gfx_input + jc exit + + cmp eax,1 + jz exit + + cmp eax,2 + jz boot + + jmp input + +boot: + call far [gfx_bc_done] +...