|
Soft Feature Freeze will start on 2021-11-08 for edk2-stable202111
Me too.
By
Andrew Fish
· #83660
·
|
|
Progress on getting Uncrustify working for EDK2?
I’d be OK if to start it just listed the various options, if making the button smart is too much work. Thanks, Andrew Fish
I’d be OK if to start it just listed the various options, if making the button smart is too much work. Thanks, Andrew Fish
|
By
Andrew Fish
· #83525
·
|
|
Update NASM to stable release 2.15.05
Yes sounds good. Thanks, Andrew Fish
Yes sounds good. Thanks, Andrew Fish
|
By
Andrew Fish
· #83524
·
|
|
Progress on getting Uncrustify working for EDK2?
Mike, My main concern is there is an easy path for the developers. I don’t want to have developers have to learn new development technologies just to run a “required” tool. I’m not as concerned on how
Mike, My main concern is there is an easy path for the developers. I don’t want to have developers have to learn new development technologies just to run a “required” tool. I’m not as concerned on how
|
By
Andrew Fish
· #83521
·
|
|
Progress on getting Uncrustify working for EDK2?
I could not figure out how to download an installer from the links. If I go to http://uncrustify.sourceforge.net I see https://sourceforge.net/projects/uncrustify/files/ and a button to download binar
I could not figure out how to download an installer from the links. If I go to http://uncrustify.sourceforge.net I see https://sourceforge.net/projects/uncrustify/files/ and a button to download binar
|
By
Andrew Fish
· #83479
·
|
|
Progress on getting Uncrustify working for EDK2?
MIke, I could not figure out how to download uncrustify tool from the provided link. 99% of the people are just going to want to install the tool, not be a developer of the fork. We should have some s
MIke, I could not figure out how to download uncrustify tool from the provided link. 99% of the people are just going to want to install the tool, not be a developer of the fork. We should have some s
|
By
Andrew Fish
· #83467
·
|
|
[PATCH v1 05/16] ArmPkg and MdePkg: Move the Arm CompilerIntrinsicsLib to MdePkg
+1 Thanks, Andrew Fish
By
Andrew Fish
· #83321
·
|
|
[EXTERNAL] [edk2-devel] [PATCH v1 06/16] ArmPkg and BaseTools: Move the GccLto binaries from ArmPkg to BaseTools
Our internal repo uses EDK_TOOLS_PATH. In our case it is $(WORKSPACE)/edk2/BaseTools. We have a PACKAGES_PATH set to $(WORKSPACE)/edk2 and magic happens. So I’m thinking maybe: $(EDK_TOOLS_PATH)/Bin/G
Our internal repo uses EDK_TOOLS_PATH. In our case it is $(WORKSPACE)/edk2/BaseTools. We have a PACKAGES_PATH set to $(WORKSPACE)/edk2 and magic happens. So I’m thinking maybe: $(EDK_TOOLS_PATH)/Bin/G
|
By
Andrew Fish
· #83195
·
|
|
About how to submit a new architecture called LoongArch
Chao, This is probably a little out of date, but in case it helps http://vzimmer.blogspot.com/2014/11/porting-to-new-architecture.html?m=1
Chao, This is probably a little out of date, but in case it helps http://vzimmer.blogspot.com/2014/11/porting-to-new-architecture.html?m=1
|
By
Andrew Fish
· #83145
·
|
|
About the Microsoft CI test
I had to manually accept your message. Hopefully it is OK now. Thanks, Andrew Fish
I had to manually accept your message. Hopefully it is OK now. Thanks, Andrew Fish
|
By
Andrew Fish
· #82903
·
|
|
Update NASM to stable release 2.15.05
Mike, Sounds like a good plan. Thanks, Andrew Fish
Mike, Sounds like a good plan. Thanks, Andrew Fish
|
By
Andrew Fish
· #82434
·
|
|
Progress on getting Uncrustify working for EDK2?
Marvin, Good point. This would make the rule moot. So maybe just removing the requirement would be the easiest long term fix. Other embedded projects I know of do this too, and as you point out the co
Marvin, Good point. This would make the rule moot. So maybe just removing the requirement would be the easiest long term fix. Other embedded projects I know of do this too, and as you point out the co
|
By
Andrew Fish
· #81613
·
|
|
Progress on getting Uncrustify working for EDK2?
This issue is independent of CONST. I’m not sure a coding style tool is smart enough to catch this generically? You need an understanding of C types to know if the local variable assignment is going t
This issue is independent of CONST. I’m not sure a coding style tool is smart enough to catch this generically? You need an understanding of C types to know if the local variable assignment is going t
|
By
Andrew Fish
· #81611
·
|
|
Progress on getting Uncrustify working for EDK2?
On the git-blame front we might be able to build a recipe that walks past the code style and line ending commits that would could add to an FAQ or Wiki. For bonus points we could add a git command tha
On the git-blame front we might be able to build a recipe that walks past the code style and line ending commits that would could add to an FAQ or Wiki. For bonus points we could add a git command tha
|
By
Andrew Fish
· #81605
·
|
|
Progress on getting Uncrustify working for EDK2?
Can we disable the rule that does not like the DEBUG macro? I seem to remember clang nags about some strange () usage, so maybe we would not lose that much? Thanks, Andrew Fish
Can we disable the rule that does not like the DEBUG macro? I seem to remember clang nags about some strange () usage, so maybe we would not lose that much? Thanks, Andrew Fish
|
By
Andrew Fish
· #81580
·
|
|
Python2.7 is not working with the EDK2 build system
Should we move to require a min Python version at some point?
Should we move to require a min Python version at some point?
|
By
Andrew Fish
· #81518
·
|
|
error C0DE: Tools code failure
Are you using Python 2.7? Try using Python 3.* It looks like array.fromstring() got renamed to array.frombytes() in Python 3.2, so I’m guessing you are using Python 2.7? Thanks, Andrew Fish
Are you using Python 2.7? Try using Python 3.* It looks like array.fromstring() got renamed to array.frombytes() in Python 3.2, so I’m guessing you are using Python 2.7? Thanks, Andrew Fish
|
By
Andrew Fish
· #81352
·
|
|
[`edk2-devel][PATCH] UefiPayloadPkg: Add ".upld_info" in universal payload
Guo, Structure is the endian of the machine running Python which might not be correct. It would be more correct to use LittleEndianStructure vs Structure. This is probably good practice like using “<“
Guo, Structure is the endian of the machine running Python which might not be correct. It would be more correct to use LittleEndianStructure vs Structure. This is probably good practice like using “<“
|
By
Andrew Fish
· #81119
·
|
|
RFC: Add BaseLib/QuickSort in MdePkg
If we add QuickSort() API to the BaseLib can we not just port the existing MdeModulePkg/SortLib to use QuickSort() in the implementation? Or is there some other way to add the new thing in a backward
If we add QuickSort() API to the BaseLib can we not just port the existing MdeModulePkg/SortLib to use QuickSort() in the implementation? Or is there some other way to add the new thing in a backward
|
By
Andrew Fish
· #80745
·
|
|
[PATCH 0/3] Add support for gdb and lldb
Sorry the patches stalled out. I need to push them…. Thanks, Andrew Fish
Sorry the patches stalled out. I need to push them…. Thanks, Andrew Fish
|
By
Andrew Fish
· #80674
·
|