search for: popad

Displaying 13 results from an estimated 13 matches for "popad".

Did you mean: pop3d
2009 Apr 24
1
Bugs in pxelinux.asm - syslinux 3.75
In pxelinux.asm the xchg instruction in xchg ax,ax . data_on_top: should be xchg ax,dx, I think At the end of pxe_get_cached_info routine,there is and ax,ax jnz .err It is supposed to test for AX status, but since pxenv does pushad and popad, AX doesn't contain status. In fact the other routines calling pxenv don't have this bug. pxe_unload seems to be never called; if so, also RealBaseMem is unused. According to the specification, pxe_unload_stack_pkt.reserved are 10 bytes, not 10 words
2002 Mar 08
0
PXELINUX: suggestion for improvement
...xelinux.asm Fri Mar 8 12:08:22 2002 *************** *** 954,959 **** --- 954,964 ---- jnz .success .badness: popa + cmp cx,9 + jl .skip_cpuid + call check_cpuid + jnz .success + .skip_cpuid: dec di loop .tryagain *************** *** 4827,4832 **** --- 4832,4990 ---- popad ret + ; + ; check_cpuid by <appro at fy.chalmers.se>. + ; + ; This routine attempts to fetch config file based on CPU architecture + ; instead of [partial] IP number. Attempted file name matches following + ; expression: + ; + ; [XY86|ipiv|ia64][-smp] + ; + ; where X is either 'a...
2002 Feb 26
0
syslinux timeout
...ine call cwritestr ; Write command line so far pop di jmp short get_char_2 auto_boot: mov si,default_cmd mov di,command_line @@ -3377,21 +3435,24 @@ pushad .top: lodsb and al,al jz .end call writechr jmp short .top .end: popad popfd ret -%ifdef debug +; BEGIN DTM ------------------------------------------------ +;%ifdef debug +%ifdef debug or writehex +; END DTM -------------------------------------------------- ; ; writehex[248]: Write a hex number in (AL, AX, EAX) to the console ; writehex2:...
2007 Apr 18
4
[patch 0/4] Clean up asm/bugs.h, identify_cpu() and update COMPAT_VDSO
Hi Andi, Four patches: - clean up asm/bugs.h, by moving all the C code into its own C file - split identify_cpu() into boot and secondary variants, so that boot-time setup functions can be marked __init - repost of the COMPAT_VDSO patches with a bit more robustness from unknown DT_tags, and functions marked __init, since all this is boot-time only setup. Thanks, J --
2007 Apr 18
4
[patch 0/4] Clean up asm/bugs.h, identify_cpu() and update COMPAT_VDSO
Hi Andi, Four patches: - clean up asm/bugs.h, by moving all the C code into its own C file - split identify_cpu() into boot and secondary variants, so that boot-time setup functions can be marked __init - repost of the COMPAT_VDSO patches with a bit more robustness from unknown DT_tags, and functions marked __init, since all this is boot-time only setup. Thanks, J --
2009 Mar 17
1
[PATCH 1/1] CORE/writedec: Fix overflow and redeclaration
...f digits .cloop: - div ebx + mov edx,0 ; Zero out high part + div ebx ; unsigned divide edx:eax/ebx inc cx push dx and eax,eax @@ -53,5 +54,5 @@ writedec_common: popad ret -writechr: - ret +; writechr: +; ret
2004 Aug 12
1
Problems booting with memdisk, with fix
...the + ; return status to "ok" - this is because some BIOS's return + ; an error if there are no drives present, and this screws up + ; bootstrap routines (e.g. DOS gives "Non-System disk or + ; Disk Error") - NN 12-Aug-04. .pass_on: - pop ax ; Drop return address - popad ; Restore all registers - pop es - pop ds - lss esp,[cs:Stack] ; Restore the stack - and dl,80h ; Clear all but the type bit - jmp far [cs:OldInt13] + pushf + call far [cs:OldInt13] ; Call the BIOS + xor ax,ax ; Force success result + ret Invalid: 8<============================...
2005 Mar 08
2
[Fwd: Re: etherboot 5.3.14 and pxelinux keyboard problem]
Tim Legge has passed the following message on to me: hpa wrote: > Quinn wrote: > > Now it seems I have found a bug in PXELINUX with regards to etherboot. > > Up until 2.07 pxelinux was responsive to the keyboard. From 2.08 and > > up the keyboard is locked at the boot prompt when pxelinux is loaded > > via etherboot 5.3.14. > > That would not be a PXELINUX bug,
2014 Feb 25
13
[Bug 75511] New: Screen freezes during boot with an 3.13 kernel (Arch Linux)
https://bugs.freedesktop.org/show_bug.cgi?id=75511 Priority: medium Bug ID: 75511 Assignee: nouveau at lists.freedesktop.org Summary: Screen freezes during boot with an 3.13 kernel (Arch Linux) QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All)
2012 Sep 10
19
Initial support for sector size >512
This set of patches add some support for sector size >512. Currently it fixes extlinux, MBR for GPT and ext partitions. Other code is unaffected. This set of patches has been tested on a read Dell machine running a beta firmware.
2003 Sep 05
7
Network Boot IP Configuration Dilemma
...; HACK mov al,':' ; HACK stosb ; HACK mov al,0 ; HACK stosb ; HACK sub di,IPOption mov [IPOptionLen],di popad ret --Fred PS: I don't want to forget to offer thanks for how really good the syslinux/pxelinux utilities already are. 3 years ago, when etherboot was a less vendor specific protocol, I used etherboot/mknbi much more, but now that numerous vendor's come with PXE already...
2004 Aug 06
4
Re: Compiling ices
----- Original Message ----- From: Karl Heyes <karl@pts.tele2.co.uk> To: <icecast@xiph.org> Sent: Friday, January 31, 2003 5:29 PM Subject: Re: [icecast] Re: Compiling ices <p>> On Fri, 2003-01-31 at 06:39, Marc Remijn wrote: > ... > > > Kernel output: > > > > invalid operand: 0000 > > CPU: 0 > > EIP: 0010:[<d08e25b1>]
2011 May 25
1
[GIT PULL] elflink ldlinux
Hi, These patches contain support for some features that are already in Syslinux 4 but weren't working properly on the elflink branch. It's another step closer to feature parity with Syslinux 4. Having to jump through the comboot API for localboot support is less than ideal and I'll eventually fix that, probably when we move a big chunk of code from asm to C. Also, there's a