Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add block to handle flashing thelio-mega-r3 #114

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions res/firmware.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,14 @@ if "%2" == "bios" then
exit %lasterror%
endif

# Flash with WRX90AfuEfix64 and exit if possible
# For: thelio-mega-r3
if exist WRX90AfuEfix64.efi then
WRX90AfuEfix64.efi firmware.rom /P /B /N /L /CAPSULE

exit %lasterror%
endif

# Flash with efiflash and exit if possible
if exist efiflash.efi then
efiflash.efi firmware.rom /C /NR \NoOemId
Expand Down