├── .github └── workflows │ └── build.yml ├── .pylintrc ├── README.md ├── __init__.py ├── guids.csv ├── headers ├── efi_pei_services_64.h └── efi_system_table_64.h ├── helper.py ├── plugin.json ├── screen.gif └── teloader.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zznop/bn-uefi-helper/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zznop/bn-uefi-helper/HEAD/.pylintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zznop/bn-uefi-helper/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zznop/bn-uefi-helper/HEAD/__init__.py -------------------------------------------------------------------------------- /guids.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zznop/bn-uefi-helper/HEAD/guids.csv -------------------------------------------------------------------------------- /headers/efi_pei_services_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zznop/bn-uefi-helper/HEAD/headers/efi_pei_services_64.h -------------------------------------------------------------------------------- /headers/efi_system_table_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zznop/bn-uefi-helper/HEAD/headers/efi_system_table_64.h -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zznop/bn-uefi-helper/HEAD/helper.py -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zznop/bn-uefi-helper/HEAD/plugin.json -------------------------------------------------------------------------------- /screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zznop/bn-uefi-helper/HEAD/screen.gif -------------------------------------------------------------------------------- /teloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zznop/bn-uefi-helper/HEAD/teloader.py --------------------------------------------------------------------------------