Update comments
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
#!/usr/bin/python
|
||||
#
|
||||
# Locates the image base from the current RIP value. This can be manually invoked
|
||||
# from the IDA Pro during the GDB remote debug session to load symbols (a PDB file).
|
||||
#
|
||||
# Author: Satoshi Tanda
|
||||
current_page_base = idaapi.get_reg_val('rip') & (~0xfff)
|
||||
offset = 0
|
||||
while idc.read_dbg_word(current_page_base - offset) != 0x5a4d:
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
#!/usr/bin/python
|
||||
#
|
||||
# Copies the lib files created by the EDK2's build command to a single specified
|
||||
# locations, so that Visual Studio can easily find and link them. Invoked as
|
||||
# part of Pre-Link Event of the MiniVisor project.
|
||||
#
|
||||
# Author: Satoshi Tanda
|
||||
import os
|
||||
import sys
|
||||
import shutil
|
||||
|
||||
Reference in New Issue
Block a user