search for: 01h

Displaying 14 results from an estimated 14 matches for "01h".

Did you mean: 01
2007 Jun 21
1
ipmi regression in 4.5?
I've been monitoring CPU temperature on a few Dell SC1435s running CentOS4 via OpenIPMI and 'ipmitool sdr'. It's been working very nicely, but the upgrade to 4.5 not so long ago seems to have broken something: # ipmitool sdr type Temperature Temp | 01h | ns | 3.1 | Disabled Planar Temp | 04h | ok | 7.1 | 30 degrees C Temp Interface | 53h | ns | 7.1 | Disabled The disabled sensors above used to work fine, and there have been no config changes or bios upgrades or anything. All machines affected post 4.5. Any suggestions? Cheers,...
2001 Mar 15
3
Two Simple Questions (Multi Home)
...load balancer, so that the client requests could be spread over the different NIC cards. Is there anyone else that would be interested in a setup like this, besides me?? 3) On another subject, I notice that when I allow my NT4 Server to be the local master browser, the entry "__MSBROWSE__-[01h]" can be found in the WINS server database. However, if I let the Samba server become the local master browser, there is no "__MSBROWSE__" entry. Has anyone else noticed this? Is this a problem?? Julie Holloway T/L 444 - 0056, ext (919) 254 - 0056 IBM Storage Networking email:...
2004 Jul 19
3
Numbering Plan and Siemens EWSD
Hi all, We're trying to hook up our Asterisk config (Card: TE410P) with a Siemens EWSD switch. The link is ok on both ends (green), with no errors. The problem is when we try to make a call from our side (via call files), we get the pri/E1 error Ext: 1 Cause: Temporary failure (41), class = Network Congestion (2) Our Telecom partner (they checked with Siemens) mentioned that we need to
2009 May 04
3
[RFC][PATCH] poweroff COMBOOT module
...00 + +_start: + mov ax,5300h ; APM Installation Check (00h) + xor bx,bx ; APM BIOS (0000h) + int 15h + jnc check_sig + + mov bx, msg_notpresent + jmp error + +check_sig: + cmp bx,504Dh ; signature 'PM' + je check_ver + + mov bx, msg_notpresent + jmp error + +check_ver: + cmp ax,0101h ; Need version 1.1+ + jae check_state + + mov bx, msg_notsup + jmp error + +check_state: + test cx,8 ; bit 3 APM BIOS Power Management disabled + jz connect + + mov bx, msg_pmdisabled + jmp error + +connect: + mov ax,5301h ; APM Real Mode Interface Connect (01h) + xor bx,bx ; APM BIOS (000...
2016 Sep 08
3
How to get started (Windows)
...n: 1.2.6.0 Driver version: 1.2.6.0 bus/device idVendor/idProduct bus-0/\\.\libusb0-0001--0x051d-0x0003 051D/0003 - Manufacturer : American Power Conversion - Product : Smart-UPS C 1000 FW:UPS 10.0 / ID=1005 - Serial Number: 3S1520X04472 bLength: 18 bDescriptorType: 01h bcdUSB: 0200h bDeviceClass: 00h bDeviceSubClass: 00h bDeviceProtocol: 00h bMaxPacketSize0: 40h idVendor: 051Dh idProduct: 0003h bcdDevice: 0106h iManufacturer: 1 iProduct: 2 iSerialNumber: 3 bNumConfigurations: 1...
2006 Nov 20
2
push-pop ordering error found in memdisk
...-- ; ; Routine to copy in/out of high memory ; esi = linear source address ; edi = linear target address ; ecx = 32-bit word count ; ; Assumes cs = ds = es ; bcopy: push eax push ebx push edx push ebp test byte [ConfigFlags],CONFIG_RAW jz .anymode smsw ax ; Unprivileged! test al,01h jnz .protmode .realmode: TRACER 'r' ; We're in real mode, do it outselves pushfd ; <- *** push 1 *** push ds ; <- *** push 2 *** push es ; <- *** push 3 *** cli cld --------------------------------- then a little further down; or dx,bx push dx ; Save A...
2005 Dec 09
2
Development Question for version 2.11 of isolinux
...mov si,really_boot call writestr mov si,caution_str call writestr mov cx,20 jmp sleep_loop jmp kaboom sleep_loop: push cx xor ax,ax mov ah,01h ; look for available char from keyboard int 16h jnz booting_dvd ; boot from cd / dvd xor ax,ax mov ax,500 ; wait 0,5s mov bx,1000 ; 1000 times mul bx...
2008 May 28
0
CPU temperature in an PowerEdge 860, LM85 chip
...e values returned are +0?C, it's possible to monitor this motherboard sensors using lm-sensors? Also I have tried to monitor PowerEdge 860 using OpenIPMI, but I get: ====================================================================== # ipmitool sdr elist | grep -i temp Temp | 01h | ns | 3.1 | Disabled Planar Temp | 04h | ok | 7.1 | 28 degrees C Temp Interface | 53h | ns | 7.1 | Disabled ====================================================================== What means "Planar Temp"? And why "Temp" and "Temp Interface" params are...
2009 Mar 22
1
[PATCH] [memdisk] Additional comments in memdisk.inc and postprocess.pl
...s + mov [bx+4],al ; Arithmetic flags pop ds pop ebx pop ax @@ -166,7 +169,7 @@ DoneWeird: and ah,ah lds ebx,[Stack] - ; This sets the low byte (the arithmetric flags) of the + ; This sets the low byte (the arithmetic flags) of the ; FLAGS on stack to either 00h (no flags) or 01h (CF) ; depending on if AH was zero or not. setnz [bx+4] ; Set CF iff error @@ -181,7 +184,8 @@ Reset: TRACER 'R' xor ax,ax ; Bottom of memory mov es,ax - test dl,dl ; Always pass it on if we are resetting HD + test dl,dl ; Always pass it on if we are + ; resetting H...
2013 Feb 10
4
[PATCH] poweroff COM32 module
...1.1+ */ + printf("APM 1.1+ not supported.\n"); + return 1; + } + + if ((outregs.ecx.l & 0x8) == 0x8) { /* bit 3 APM BIOS Power Management disabled */ + printf("Power management disabled.\n"); + return 1; + } + + inregs.eax.l = 0x5301; /* APM Real Mode Interface Connect (01h) */ + inregs.ebx.l = 0; /* APM BIOS (0000h) */ + __intcall(0x15, &inregs, &outregs); + + if (outregs.eflags.l & EFLAGS_CF) { + printf("APM RM interface connect failed.\n"); + return 1; + } + + inregs.eax.l = 0x530e; /* APM Driver Version (0Eh) */ + inregs.ebx.l = 0; /* AP...
2015 Jul 31
2
EFI: HP + syslinux = crash
...SI=000000006BBC55B0 DI=000000006BBC55B0 CR2=0000000000000000 CR3=000000006BB25000 CR0=80000013 CR4=00000668 CR8=00000000 CS=0038 DS=0038 SS=0030 ES=0038 RFLAGS=00010A07 MSR1D9=4801 345=32C4 1C9=0003 LBRs From To From To From To From To 01h 00093009->746EC191 7846C3B4->0005E598 7846C39A->7846C3B4 7846E2B5->7846C392 05h 746ECBEB->7846E290 0005E598->746ECBE0 7846C3B4->00000BC4 7846C39A->7846C3B4 09h 7846E2B5->7846C392 746ECBEB->7846E290 00000BC4->746ECBE0 772899F7->00000000 0Dh 7...
2004 Jun 30
0
problem loading initrd
...bit even in supervisor mode... Ok. Calibrating delay loop... 65.53 BogoMIPS Dentry cache hash table entries: 8192 (order: 3, 32768 bytes) Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)8.1.1 Mount-cache hash table entries: 512 (order: 0, 4096 bytes) CPU: AMD 486 DX/4-WB stepping 041HI3;01HN3;01HU3;01HX3;01H 3;01H23;01H.3;01H13;MChecking 'hlt' instruction... OK. POSIX conformance testing by UNIFIX checking if image is initramfs... it isn't (no cpio magic); looks like an initrd Freeing initrd memory: 220k freed NET: Registered protocol family 16 PCI: PCI BIOS revision 2.00...
2006 Mar 10
2
unload memdisk+FreeDOS => local boot
Sensei H. Peter Anvin, I have successfully modified/enhanced memdisk so that one can chainload a local operating system after running diskless FreeDOS. I would like your advice regarding the appropriate interface for invoking this functionality. In addition, I would like to know what steps to take so that you feel comfortable considering including this in the standard syslinux distribution.
2008 May 21
0
Errors in using gdb (PR#11496)
...oJVgdXHk2ZzqrW6nK/6XrN7pdKJY/duf+p393hg1BUEQ BFZfFVZHDAwEQcvJ6kYMjPjc6/XUy4b9/pTVBb1Hsfqpp7660+mhpiAIgsDqq8LqmF8dgqCV YHXRX4kjj0bjWZj6DquLDiqK1Q8fPnz88cejpiAIgsDq+5LVEQMDQVBjrG7N2diSjwJn8eqC 1fuy14pi9VNOOeXQoUOoKQiCILD6qrA63i2FIGhVWF1oNBqJ7d1uV7J6bAzMcccdd84556Cm IAiCwOr7ktURAwNBUGOsbsTAyBdLRY8kfhKf01hdHOGkk05CTUEQBIHVweoQBIHVC7K66oWG w6GKgYll9U671+8NUFMQBEFg9X3J6oiBgSCoMVa3YmDkQkimoli92x11O2B1CIIgsPrKsDre LYUgaEVYXVfiuqWD/pr4Q01BEASB1VeF1REDA0HQcrK6EQNjU3oKqw82hoNN1BQEQRBYfVVY HfOrQxC0Iqzedv5Fsfp4VE1Gx9RUfHEjUdNx6jhyqWPGZiD/vAvJOQSB1aGVYHXEwEAQ1Bir 2/Hq+aw+HGwKXF9aVpdH0P/fT6xe373Mou4aIAisDjXA6ni...