We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was trying to extract a NERF kernel from an existing BIOS and what I had to do was:
$ utk bios extract dir/ $ utk table
then I had to find the GUID in the table from the "NERF" name (because the directory structure doesn't include the names)
so then I found the right directory, but the file has the 4 byte EFI section header, so you gotta
$ cd <guid whatever> $ dd if=0.sec of=linux.bin bs=1 skip=4 $ file linux.bin linux.bin: Linux kernel x86 boot executable bzImage, ...
A command for doing this would be easier
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was trying to extract a NERF kernel from an existing BIOS and what I had to do was:
then I had to find the GUID in the table from the "NERF" name (because the directory structure doesn't include the names)
so then I found the right directory, but the file has the 4 byte EFI section header, so you gotta
A command for doing this would be easier
The text was updated successfully, but these errors were encountered: