Re: [edk2] the latest mingw-gcc-build.py download not available file

2012-10-17 Thread kevin631012
Jordan , yes, it's much easier than to use UNIXGCC . when I use UNIXGCC to compile . it is not able to use "Trim" , "VFR" and "GENFW" in build_rule.txt . I need to add absolute path even I found the PATH has been add to "right" path . $(PWD)/BaseTools/BinWrappers/PosixLike/Trim --source-code -o

Re: [edk2] Sata hdds ports not recognized

2012-10-17 Thread Tian, Feng
1. Even if you saw the HDD device path at UEFI shell/main screen, it doesn't mean your bios produce ATA_PASS_THRU protocol. 2.If ATA_PASS_THRU protocol is produced, you should pass 0x into GetNextPort() and 0x into GetNextDevice() to traverse all ATA devices. Details please re

Re: [edk2] Sata hdds ports not recognized

2012-10-17 Thread Sergey Isakov
Hi Rafael, Set Port = 0x; before do { Regards, Sergey On 18.10.2012, at 0:09, Rafael Machado wrote: > Hi everyone. > I'm having a problem with an sample code I've developed. > This code should display the ports and Multiports of the Sata hdds that are > connected to the board. > The stra

Re: [edk2] OVMF + Windows 2008 r2 sp1

2012-10-17 Thread Andrew Fish
On Oct 17, 2012, at 6:38 PM, Laszlo Ersek wrote: > have no idea why the UEFI-booted kernel tries to initialize the > display with Int10h, since that is a (VGA) BIOS interrupt. I can > understand why it works with SeaBIOS, but when booted on an UEFI > platform, the kernel should either use the EU

Re: [edk2] OVMF + Windows 2008 r2 sp1

2012-10-17 Thread Laszlo Ersek
On 10/17/12 15:11, Laszlo Ersek wrote: > I did see a lot of binary stuff written to the serial console. I > expected to see textual debug messages, but apparently the /bootdebug & > /debug flags above allow a remote windbg to attach instead, and it was > too late last night to get even windbg. I

Re: [edk2] New to EFI. help needed

2012-10-17 Thread Mcdaniel, Daryl
Krishna, If you are still doing this in Python, there is a Python package called Pyro that might help you. Pyro stands for PYthon Remote Objects. It is like a streamlined CORBA implementation in pure Python. I used it several years ago to set up distributed associations of management control

Re: [edk2] Does UEFI support C++ Exception handling.

2012-10-17 Thread Andrew Fish
On Oct 17, 2012, at 4:53 PM, Amol Tasgaonkar wrote: > So does this means that we cannot use STL's too ? I am surprized to know this. > EFI is like the kernel or devices drivers and it is written in C. I don't think there is any C++ support on the open source? I was just reference some one was

Re: [edk2] Does UEFI support C++ Exception handling.

2012-10-17 Thread Amol Tasgaonkar
So does this means that we cannot use STL's too ? I am surprized to know this. From: Andrew Fish To: Amol Tasgaonkar ; edk2-devel@lists.sourceforge.net Sent: Wednesday, October 17, 2012 4:11 PM Subject: Re: [edk2] Does UEFI support C++ Exception handling.

[edk2] SuperMicro - Aptio Setup Utility

2012-10-17 Thread Sushma Gurram
Hi, In a HII application, when a popup is created and removed, the entire screen doesn't get refreshed and few parts of popup still remain. Is there a way to refresh the entire screen? Thanks, Sushma PLEASE NOTE: The information contained in this electronic ma

Re: [edk2] Does UEFI support C++ Exception handling.

2012-10-17 Thread Andrew Fish
On Oct 17, 2012, at 4:04 PM, Amol Tasgaonkar wrote: > Hi, > I wanted to check if I could have C++ exception handling done in the EFI > application/ No. We generally don't support C++, I think some folks may have played with embedded C++, but that does not support exceptions either. We don't l

[edk2] Does UEFI support C++ Exception handling.

2012-10-17 Thread Amol Tasgaonkar
Hi, I wanted to check if I could have C++ exception handling done in the EFI application/   Thank,   With Best Regards, -Amol.-- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download A

Re: [edk2] OVMF + Windows 2008 r2 sp1

2012-10-17 Thread Laszlo Ersek
On 10/17/12 18:49, Jordan Justen wrote: > On Wed, Oct 17, 2012 at 6:11 AM, Laszlo Ersek wrote: >> I think those are separate issues -- the virtio driver(s) do have a bug >> in their respective Stop() functions, > > Which your 2 patches in this thread resolve, correct? That's the intent, yes. >

Re: [edk2] OVMF + Windows 2008 r2 sp1

2012-10-17 Thread Jordan Justen
On Wed, Oct 17, 2012 at 6:11 AM, Laszlo Ersek wrote: > On 10/17/12 14:36, Jeff VanDellen wrote: >> I just applied your patch to the master branch of the edk2 github >> repo. It appears to suffer form the same issue. > > I think those are separate issues -- the virtio driver(s) do have a bug > in t

Re: [edk2] the latest mingw-gcc-build.py download not available file

2012-10-17 Thread Jordan Justen
On Wed, Oct 17, 2012 at 2:49 AM, kevin631012 wrote: > I try to build edk2 in ubuntu 10.04 . first of all I do is to build cross > compile and I found the latest file is not available . > other available binutils works for mt . I think Ubuntu 10.04 has GCC 4.4, and therefore you should be able to

Re: [edk2] varstore vs efivarstore

2012-10-17 Thread Tim Lewis
Ben - These describe two different ways that the HII forms browser can access non-volatile storage for a question value. For "varstore", the browser will use the Config Access protocol. For "efivarstore" the browser will write to an EFI variable directly. Tim From: Ben Schroeder [mailto:ben..

[edk2] [PATH issue]: make: Trim: Command not found

2012-10-17 Thread kevin631012
hi all , is there any one have similar problem as following - start - test@test-desktop:~/UEFI/edk2$ build Build environment: Linux-2.6.32-38-generic-x86_64-with-Ubuntu-10.04-lucid Build start time: 19:52:27, Sep.26 2012 WORKSPACE    = /home/test/U

Re: [edk2] OVMF + Windows 2008 r2 sp1

2012-10-17 Thread Jeff VanDellen
Laszlo, I just applied your patch to the master branch of the edk2 github repo. It appears to suffer form the same issue. Unfortunately you need to jump through a bunch of hoops to get debugging for the windows bootloader. Also it requires you have windows installed already (which makes it sorta

[edk2] varstore vs efivarstore

2012-10-17 Thread Ben Schroeder
Can anyone explain the difference between VarStore and EfiVarStore. These are variables that are used in HII forms. What's the difference in how they work? In which cases should each one be used? Does memory for them need to be allocated by the user? Or is it allocated by the UEFI system? ---

Re: [edk2] the latest mingw-gcc-build.py download not available file

2012-10-17 Thread Sergey Isakov
Hi, Version 2.22 is available http://mirror.aarnet.edu.au/pub/gnu/binutils/ Regards On 17.10.2012, at 13:49, kevin631012 wrote: > Hi all , > I try to build edk2 in ubuntu 10.04 . first of all I do is to build cross > compile and I found the latest file is not available . > other available binu

[edk2] the latest mingw-gcc-build.py download not available file

2012-10-17 Thread kevin631012
Hi all , I try to build edk2 in ubuntu 10.04 . first of all I do is to build cross compile and I found the latest file is not available . other available binutils works for mt . see my patch as following .  source_files_common = {     'binutils': {     'url': 'http://www.kernel.org/p