UEFIStarter icon indicating copy to clipboard operation
UEFIStarter copied to clipboard

framework to simplify UEFI development with TianoCore EDK2

Results 10 UEFIStarter issues
Sort by recently updated
recently updated
newest added

Currently the "snow.efi" application works and looks as intended in the default text mode. However with increasingly larger screen sizes (in terms of rows/columns) the default values result in too...

Currently the `draw_text()` function works but will continue writing beyond the screen width, resulting in text shifted 1px down on the left side of the screen. Improve this: clip text...

Currently there are a few string-related functions strewn across various applications and libraries that should be looked into, especially: * _wcstof() * wctype*() functions Those functions might not be needed...

Currently the API is documented but overall use of library functions is only apparent in source code. Add developer documentation to the Wiki: explain the basic workflows for various modules...

Currently PCI devices are identified by their vendor and device IDs, but the subvendor and subdevice IDs are ignored. Add subvendor and subdevice IDs to: * pci.ids parser * "find...

Currently there's a global command-line argument for selecting a graphics mode, but the text mode has to be set manually in code. Add a global text mode argument, the default...

Currently parameter placeholder lengths aren't being considered when padding the argument column in the `-help` screen. Additionally, when combining argument groups (with 2nd+ having empty group names) the groups' arguments...

Currently both the memory page and memory pool trackers support a fixed amount of pointers each. The data structures already hint at linked lists but the code doesn't actually support...

Currently there's no contribution info, aside from a few sentences in the Wiki. Add a CONTRIBUTING file: include all the usual stuff and explain the forward compatibility issues with UCL.

Currently the included applications are documented in code only. This documentation is meant for developers but doesn't show how to use an application. Write documentation for end users. This should...