├── .gitignore ├── .gitmodules ├── AppPkg ├── AppPkg.dec ├── AppPkg.dsc ├── Applications │ ├── ArithChk │ │ ├── ArithChk.inf │ │ └── arithchk.c │ ├── Enquire │ │ ├── Enquire.c │ │ └── Enquire.inf │ ├── Hello │ │ ├── Hello.c │ │ └── Hello.inf │ ├── Lua │ │ ├── Copyright.txt │ │ ├── Lua.inf │ │ ├── LuaLib.inf │ │ ├── ReadMe.txt │ │ ├── doc │ │ │ ├── contents.html │ │ │ ├── logo.gif │ │ │ ├── lua.1 │ │ │ ├── lua.css │ │ │ ├── luac.1 │ │ │ ├── manual.css │ │ │ ├── manual.html │ │ │ ├── osi-certified-72x60.png │ │ │ └── readme.html │ │ ├── scripts │ │ │ ├── Fact.lua │ │ │ └── Hello.lua │ │ └── src │ │ │ ├── Makefile │ │ │ ├── lapi.c │ │ │ ├── lapi.h │ │ │ ├── lauxlib.c │ │ │ ├── lauxlib.h │ │ │ ├── lbaselib.c │ │ │ ├── lbitlib.c │ │ │ ├── lcode.c │ │ │ ├── lcode.h │ │ │ ├── lcorolib.c │ │ │ ├── lctype.c │ │ │ ├── lctype.h │ │ │ ├── ldblib.c │ │ │ ├── ldebug.c │ │ │ ├── ldebug.h │ │ │ ├── ldo.c │ │ │ ├── ldo.h │ │ │ ├── ldump.c │ │ │ ├── lfunc.c │ │ │ ├── lfunc.h │ │ │ ├── lgc.c │ │ │ ├── lgc.h │ │ │ ├── linit.c │ │ │ ├── liolib.c │ │ │ ├── llex.c │ │ │ ├── llex.h │ │ │ ├── llimits.h │ │ │ ├── lmathlib.c │ │ │ ├── lmem.c │ │ │ ├── lmem.h │ │ │ ├── loadlib.c │ │ │ ├── lobject.c │ │ │ ├── lobject.h │ │ │ ├── lopcodes.c │ │ │ ├── lopcodes.h │ │ │ ├── loslib.c │ │ │ ├── lparser.c │ │ │ ├── lparser.h │ │ │ ├── lstate.c │ │ │ ├── lstate.h │ │ │ ├── lstring.c │ │ │ ├── lstring.h │ │ │ ├── lstrlib.c │ │ │ ├── ltable.c │ │ │ ├── ltable.h │ │ │ ├── ltablib.c │ │ │ ├── ltm.c │ │ │ ├── ltm.h │ │ │ ├── lua.c │ │ │ ├── lua.h │ │ │ ├── lua.hpp │ │ │ ├── luac.c │ │ │ ├── luaconf.h │ │ │ ├── lualib.h │ │ │ ├── lundump.c │ │ │ ├── lundump.h │ │ │ ├── lvm.c │ │ │ ├── lvm.h │ │ │ ├── lzio.c │ │ │ └── lzio.h │ ├── Main │ │ ├── Main.c │ │ └── Main.inf │ ├── OrderedCollectionTest │ │ ├── OrderedCollectionTest.c │ │ ├── OrderedCollectionTest.inf │ │ └── gentest.sh │ ├── Python │ │ ├── Efi │ │ │ ├── config.c │ │ │ ├── edk2module.c │ │ │ └── getpath.c │ │ ├── Ia32 │ │ │ └── pyconfig.h │ │ ├── Ipf │ │ │ └── pyconfig.h │ │ ├── PyMod-2.7.2 │ │ │ ├── Include │ │ │ │ ├── fileobject.h │ │ │ │ ├── osdefs.h │ │ │ │ └── pyport.h │ │ │ ├── Lib │ │ │ │ ├── ntpath.py │ │ │ │ ├── os.py │ │ │ │ ├── pydoc.py │ │ │ │ └── site.py │ │ │ ├── Modules │ │ │ │ ├── _sre.c │ │ │ │ ├── addrinfo.h │ │ │ │ ├── errnomodule.c │ │ │ │ ├── expat │ │ │ │ │ ├── expat_external.h │ │ │ │ │ └── xmlparse.c │ │ │ │ ├── selectmodule.c │ │ │ │ ├── socketmodule.h │ │ │ │ └── zlib │ │ │ │ │ └── zutil.h │ │ │ ├── Objects │ │ │ │ ├── longobject.c │ │ │ │ └── stringlib │ │ │ │ │ └── localeutil.h │ │ │ └── Python │ │ │ │ ├── getcopyright.c │ │ │ │ ├── import.c │ │ │ │ └── marshal.c │ │ ├── Python-2.7.2 │ │ │ ├── Demo │ │ │ │ ├── README │ │ │ │ ├── cgi │ │ │ │ │ ├── README │ │ │ │ │ ├── cgi0.sh │ │ │ │ │ ├── cgi1.py │ │ │ │ │ ├── cgi2.py │ │ │ │ │ ├── cgi3.py │ │ │ │ │ └── wiki.py │ │ │ │ ├── classes │ │ │ │ │ ├── Complex.py │ │ │ │ │ ├── Dates.py │ │ │ │ │ ├── Dbm.py │ │ │ │ │ ├── README │ │ │ │ │ ├── Range.py │ │ │ │ │ ├── Rev.py │ │ │ │ │ ├── Vec.py │ │ │ │ │ └── bitvec.py │ │ │ │ ├── comparisons │ │ │ │ │ ├── README │ │ │ │ │ ├── patterns │ │ │ │ │ ├── regextest.py │ │ │ │ │ ├── sortingtest.py │ │ │ │ │ └── systemtest.py │ │ │ │ ├── md5test │ │ │ │ │ ├── README │ │ │ │ │ ├── foo │ │ │ │ │ └── md5driver.py │ │ │ │ ├── metaclasses │ │ │ │ │ ├── Eiffel.py │ │ │ │ │ ├── Enum.py │ │ │ │ │ ├── Meta.py │ │ │ │ │ ├── Simple.py │ │ │ │ │ ├── Synch.py │ │ │ │ │ ├── Trace.py │ │ │ │ │ ├── index.html │ │ │ │ │ └── meta-vladimir.txt │ │ │ │ ├── newmetaclasses │ │ │ │ │ ├── Eiffel.py │ │ │ │ │ └── Enum.py │ │ │ │ ├── parser │ │ │ │ │ ├── FILES │ │ │ │ │ ├── README │ │ │ │ │ ├── docstring.py │ │ │ │ │ ├── example.py │ │ │ │ │ ├── simple.py │ │ │ │ │ ├── source.py │ │ │ │ │ ├── test_parser.py │ │ │ │ │ ├── test_unparse.py │ │ │ │ │ └── unparse.py │ │ │ │ ├── pdist │ │ │ │ │ ├── FSProxy.py │ │ │ │ │ ├── RCSProxy.py │ │ │ │ │ ├── README │ │ │ │ │ ├── client.py │ │ │ │ │ ├── cmdfw.py │ │ │ │ │ ├── cmptree.py │ │ │ │ │ ├── cvslib.py │ │ │ │ │ ├── cvslock.py │ │ │ │ │ ├── mac.py │ │ │ │ │ ├── makechangelog.py │ │ │ │ │ ├── rcsbump │ │ │ │ │ ├── rcsclient.py │ │ │ │ │ ├── rcslib.py │ │ │ │ │ ├── rcvs │ │ │ │ │ ├── rcvs.py │ │ │ │ │ ├── rrcs │ │ │ │ │ ├── rrcs.py │ │ │ │ │ ├── security.py │ │ │ │ │ ├── server.py │ │ │ │ │ └── sumtree.py │ │ │ │ ├── scripts │ │ │ │ │ ├── README │ │ │ │ │ ├── beer.py │ │ │ │ │ ├── eqfix.py │ │ │ │ │ ├── fact.py │ │ │ │ │ ├── find-uname.py │ │ │ │ │ ├── from.py │ │ │ │ │ ├── lpwatch.py │ │ │ │ │ ├── makedir.py │ │ │ │ │ ├── markov.py │ │ │ │ │ ├── mboxconvert.py │ │ │ │ │ ├── morse.py │ │ │ │ │ ├── newslist.doc │ │ │ │ │ ├── newslist.py │ │ │ │ │ ├── pi.py │ │ │ │ │ ├── pp.py │ │ │ │ │ ├── primes.py │ │ │ │ │ ├── queens.py │ │ │ │ │ ├── script.py │ │ │ │ │ ├── unbirthday.py │ │ │ │ │ └── update.py │ │ │ │ ├── sockets │ │ │ │ │ ├── README │ │ │ │ │ ├── broadcast.py │ │ │ │ │ ├── echosvr.py │ │ │ │ │ ├── finger.py │ │ │ │ │ ├── ftp.py │ │ │ │ │ ├── gopher.py │ │ │ │ │ ├── mcast.py │ │ │ │ │ ├── radio.py │ │ │ │ │ ├── rpython.py │ │ │ │ │ ├── rpythond.py │ │ │ │ │ ├── telnet.py │ │ │ │ │ ├── throughput.py │ │ │ │ │ ├── udpecho.py │ │ │ │ │ ├── unicast.py │ │ │ │ │ ├── unixclient.py │ │ │ │ │ └── unixserver.py │ │ │ │ ├── xml │ │ │ │ │ ├── elem_count.py │ │ │ │ │ ├── roundtrip.py │ │ │ │ │ └── rss2html.py │ │ │ │ └── zlib │ │ │ │ │ ├── minigzip.py │ │ │ │ │ └── zlibdemo.py │ │ │ ├── Grammar │ │ │ │ └── Grammar │ │ │ ├── Include │ │ │ │ ├── Python-ast.h │ │ │ │ ├── Python.h │ │ │ │ ├── abstract.h │ │ │ │ ├── asdl.h │ │ │ │ ├── ast.h │ │ │ │ ├── bitset.h │ │ │ │ ├── boolobject.h │ │ │ │ ├── bufferobject.h │ │ │ │ ├── bytearrayobject.h │ │ │ │ ├── bytes_methods.h │ │ │ │ ├── bytesobject.h │ │ │ │ ├── cStringIO.h │ │ │ │ ├── cellobject.h │ │ │ │ ├── ceval.h │ │ │ │ ├── classobject.h │ │ │ │ ├── cobject.h │ │ │ │ ├── code.h │ │ │ │ ├── codecs.h │ │ │ │ ├── compile.h │ │ │ │ ├── complexobject.h │ │ │ │ ├── datetime.h │ │ │ │ ├── descrobject.h │ │ │ │ ├── dictobject.h │ │ │ │ ├── dtoa.h │ │ │ │ ├── enumobject.h │ │ │ │ ├── errcode.h │ │ │ │ ├── eval.h │ │ │ │ ├── fileobject.h │ │ │ │ ├── floatobject.h │ │ │ │ ├── frameobject.h │ │ │ │ ├── funcobject.h │ │ │ │ ├── genobject.h │ │ │ │ ├── graminit.h │ │ │ │ ├── grammar.h │ │ │ │ ├── import.h │ │ │ │ ├── intobject.h │ │ │ │ ├── intrcheck.h │ │ │ │ ├── iterobject.h │ │ │ │ ├── listobject.h │ │ │ │ ├── longintrepr.h │ │ │ │ ├── longobject.h │ │ │ │ ├── marshal.h │ │ │ │ ├── memoryobject.h │ │ │ │ ├── metagrammar.h │ │ │ │ ├── methodobject.h │ │ │ │ ├── modsupport.h │ │ │ │ ├── moduleobject.h │ │ │ │ ├── node.h │ │ │ │ ├── object.h │ │ │ │ ├── objimpl.h │ │ │ │ ├── opcode.h │ │ │ │ ├── osdefs.h │ │ │ │ ├── parsetok.h │ │ │ │ ├── patchlevel.h │ │ │ │ ├── pgen.h │ │ │ │ ├── pgenheaders.h │ │ │ │ ├── py_curses.h │ │ │ │ ├── pyarena.h │ │ │ │ ├── pycapsule.h │ │ │ │ ├── pyctype.h │ │ │ │ ├── pydebug.h │ │ │ │ ├── pyerrors.h │ │ │ │ ├── pyexpat.h │ │ │ │ ├── pyfpe.h │ │ │ │ ├── pygetopt.h │ │ │ │ ├── pymacconfig.h │ │ │ │ ├── pymactoolbox.h │ │ │ │ ├── pymath.h │ │ │ │ ├── pymem.h │ │ │ │ ├── pyport.h │ │ │ │ ├── pystate.h │ │ │ │ ├── pystrcmp.h │ │ │ │ ├── pystrtod.h │ │ │ │ ├── pythonrun.h │ │ │ │ ├── pythread.h │ │ │ │ ├── rangeobject.h │ │ │ │ ├── setobject.h │ │ │ │ ├── sliceobject.h │ │ │ │ ├── stringobject.h │ │ │ │ ├── structmember.h │ │ │ │ ├── structseq.h │ │ │ │ ├── symtable.h │ │ │ │ ├── sysmodule.h │ │ │ │ ├── timefuncs.h │ │ │ │ ├── token.h │ │ │ │ ├── traceback.h │ │ │ │ ├── tupleobject.h │ │ │ │ ├── ucnhash.h │ │ │ │ ├── unicodeobject.h │ │ │ │ ├── warnings.h │ │ │ │ └── weakrefobject.h │ │ │ ├── LICENSE │ │ │ ├── Lib │ │ │ │ ├── BaseHTTPServer.py │ │ │ │ ├── Bastion.py │ │ │ │ ├── CGIHTTPServer.py │ │ │ │ ├── ConfigParser.py │ │ │ │ ├── Cookie.py │ │ │ │ ├── DocXMLRPCServer.py │ │ │ │ ├── HTMLParser.py │ │ │ │ ├── MimeWriter.py │ │ │ │ ├── Queue.py │ │ │ │ ├── SimpleHTTPServer.py │ │ │ │ ├── SimpleXMLRPCServer.py │ │ │ │ ├── SocketServer.py │ │ │ │ ├── StringIO.py │ │ │ │ ├── UserDict.py │ │ │ │ ├── UserList.py │ │ │ │ ├── UserString.py │ │ │ │ ├── _LWPCookieJar.py │ │ │ │ ├── _MozillaCookieJar.py │ │ │ │ ├── __future__.py │ │ │ │ ├── __phello__.foo.py │ │ │ │ ├── _abcoll.py │ │ │ │ ├── _pyio.py │ │ │ │ ├── _strptime.py │ │ │ │ ├── _weakrefset.py │ │ │ │ ├── abc.py │ │ │ │ ├── aifc.py │ │ │ │ ├── antigravity.py │ │ │ │ ├── anydbm.py │ │ │ │ ├── argparse.py │ │ │ │ ├── ast.py │ │ │ │ ├── asynchat.py │ │ │ │ ├── asyncore.py │ │ │ │ ├── atexit.py │ │ │ │ ├── base64.py │ │ │ │ ├── bdb.py │ │ │ │ ├── binhex.py │ │ │ │ ├── bisect.py │ │ │ │ ├── cProfile.py │ │ │ │ ├── calendar.py │ │ │ │ ├── cgi.py │ │ │ │ ├── cgitb.py │ │ │ │ ├── chunk.py │ │ │ │ ├── cmd.py │ │ │ │ ├── code.py │ │ │ │ ├── codecs.py │ │ │ │ ├── codeop.py │ │ │ │ ├── collections.py │ │ │ │ ├── colorsys.py │ │ │ │ ├── commands.py │ │ │ │ ├── compileall.py │ │ │ │ ├── compiler │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ast.py │ │ │ │ │ ├── consts.py │ │ │ │ │ ├── future.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── pyassem.py │ │ │ │ │ ├── pycodegen.py │ │ │ │ │ ├── symbols.py │ │ │ │ │ ├── syntax.py │ │ │ │ │ ├── transformer.py │ │ │ │ │ └── visitor.py │ │ │ │ ├── contextlib.py │ │ │ │ ├── cookielib.py │ │ │ │ ├── copy.py │ │ │ │ ├── copy_reg.py │ │ │ │ ├── csv.py │ │ │ │ ├── dbhash.py │ │ │ │ ├── decimal.py │ │ │ │ ├── difflib.py │ │ │ │ ├── dircache.py │ │ │ │ ├── dis.py │ │ │ │ ├── distutils │ │ │ │ │ ├── README │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── archive_util.py │ │ │ │ │ ├── bcppcompiler.py │ │ │ │ │ ├── ccompiler.py │ │ │ │ │ ├── cmd.py │ │ │ │ │ ├── command │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bdist.py │ │ │ │ │ │ ├── bdist_dumb.py │ │ │ │ │ │ ├── bdist_msi.py │ │ │ │ │ │ ├── bdist_rpm.py │ │ │ │ │ │ ├── bdist_wininst.py │ │ │ │ │ │ ├── build.py │ │ │ │ │ │ ├── build_clib.py │ │ │ │ │ │ ├── build_ext.py │ │ │ │ │ │ ├── build_py.py │ │ │ │ │ │ ├── build_scripts.py │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ ├── clean.py │ │ │ │ │ │ ├── command_template │ │ │ │ │ │ ├── config.py │ │ │ │ │ │ ├── install.py │ │ │ │ │ │ ├── install_data.py │ │ │ │ │ │ ├── install_egg_info.py │ │ │ │ │ │ ├── install_headers.py │ │ │ │ │ │ ├── install_lib.py │ │ │ │ │ │ ├── install_scripts.py │ │ │ │ │ │ ├── register.py │ │ │ │ │ │ ├── sdist.py │ │ │ │ │ │ ├── upload.py │ │ │ │ │ │ ├── wininst-6.0.exe │ │ │ │ │ │ ├── wininst-7.1.exe │ │ │ │ │ │ ├── wininst-8.0.exe │ │ │ │ │ │ ├── wininst-9.0-amd64.exe │ │ │ │ │ │ └── wininst-9.0.exe │ │ │ │ │ ├── config.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── cygwinccompiler.py │ │ │ │ │ ├── debug.py │ │ │ │ │ ├── dep_util.py │ │ │ │ │ ├── dir_util.py │ │ │ │ │ ├── dist.py │ │ │ │ │ ├── emxccompiler.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── extension.py │ │ │ │ │ ├── fancy_getopt.py │ │ │ │ │ ├── file_util.py │ │ │ │ │ ├── filelist.py │ │ │ │ │ ├── log.py │ │ │ │ │ ├── msvc9compiler.py │ │ │ │ │ ├── msvccompiler.py │ │ │ │ │ ├── spawn.py │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── Setup.sample │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── setuptools_build_ext.py │ │ │ │ │ │ ├── setuptools_extension.py │ │ │ │ │ │ ├── support.py │ │ │ │ │ │ ├── test_archive_util.py │ │ │ │ │ │ ├── test_bdist.py │ │ │ │ │ │ ├── test_bdist_dumb.py │ │ │ │ │ │ ├── test_bdist_msi.py │ │ │ │ │ │ ├── test_bdist_rpm.py │ │ │ │ │ │ ├── test_bdist_wininst.py │ │ │ │ │ │ ├── test_build.py │ │ │ │ │ │ ├── test_build_clib.py │ │ │ │ │ │ ├── test_build_ext.py │ │ │ │ │ │ ├── test_build_py.py │ │ │ │ │ │ ├── test_build_scripts.py │ │ │ │ │ │ ├── test_ccompiler.py │ │ │ │ │ │ ├── test_check.py │ │ │ │ │ │ ├── test_clean.py │ │ │ │ │ │ ├── test_cmd.py │ │ │ │ │ │ ├── test_config.py │ │ │ │ │ │ ├── test_config_cmd.py │ │ │ │ │ │ ├── test_core.py │ │ │ │ │ │ ├── test_dep_util.py │ │ │ │ │ │ ├── test_dir_util.py │ │ │ │ │ │ ├── test_dist.py │ │ │ │ │ │ ├── test_file_util.py │ │ │ │ │ │ ├── test_filelist.py │ │ │ │ │ │ ├── test_install.py │ │ │ │ │ │ ├── test_install_data.py │ │ │ │ │ │ ├── test_install_headers.py │ │ │ │ │ │ ├── test_install_lib.py │ │ │ │ │ │ ├── test_install_scripts.py │ │ │ │ │ │ ├── test_msvc9compiler.py │ │ │ │ │ │ ├── test_register.py │ │ │ │ │ │ ├── test_sdist.py │ │ │ │ │ │ ├── test_spawn.py │ │ │ │ │ │ ├── test_sysconfig.py │ │ │ │ │ │ ├── test_text_file.py │ │ │ │ │ │ ├── test_unixccompiler.py │ │ │ │ │ │ ├── test_upload.py │ │ │ │ │ │ ├── test_util.py │ │ │ │ │ │ ├── test_version.py │ │ │ │ │ │ └── test_versionpredicate.py │ │ │ │ │ ├── text_file.py │ │ │ │ │ ├── unixccompiler.py │ │ │ │ │ ├── util.py │ │ │ │ │ ├── version.py │ │ │ │ │ └── versionpredicate.py │ │ │ │ ├── doctest.py │ │ │ │ ├── dumbdbm.py │ │ │ │ ├── dummy_thread.py │ │ │ │ ├── dummy_threading.py │ │ │ │ ├── email │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _parseaddr.py │ │ │ │ │ ├── base64mime.py │ │ │ │ │ ├── charset.py │ │ │ │ │ ├── encoders.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── feedparser.py │ │ │ │ │ ├── generator.py │ │ │ │ │ ├── header.py │ │ │ │ │ ├── iterators.py │ │ │ │ │ ├── message.py │ │ │ │ │ ├── mime │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── application.py │ │ │ │ │ │ ├── audio.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── image.py │ │ │ │ │ │ ├── message.py │ │ │ │ │ │ ├── multipart.py │ │ │ │ │ │ ├── nonmultipart.py │ │ │ │ │ │ └── text.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── quoprimime.py │ │ │ │ │ ├── test │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── PyBanner048.gif │ │ │ │ │ │ │ ├── audiotest.au │ │ │ │ │ │ │ ├── msg_01.txt │ │ │ │ │ │ │ ├── msg_02.txt │ │ │ │ │ │ │ ├── msg_03.txt │ │ │ │ │ │ │ ├── msg_04.txt │ │ │ │ │ │ │ ├── msg_05.txt │ │ │ │ │ │ │ ├── msg_06.txt │ │ │ │ │ │ │ ├── msg_07.txt │ │ │ │ │ │ │ ├── msg_08.txt │ │ │ │ │ │ │ ├── msg_09.txt │ │ │ │ │ │ │ ├── msg_10.txt │ │ │ │ │ │ │ ├── msg_11.txt │ │ │ │ │ │ │ ├── msg_12.txt │ │ │ │ │ │ │ ├── msg_12a.txt │ │ │ │ │ │ │ ├── msg_13.txt │ │ │ │ │ │ │ ├── msg_14.txt │ │ │ │ │ │ │ ├── msg_15.txt │ │ │ │ │ │ │ ├── msg_16.txt │ │ │ │ │ │ │ ├── msg_17.txt │ │ │ │ │ │ │ ├── msg_18.txt │ │ │ │ │ │ │ ├── msg_19.txt │ │ │ │ │ │ │ ├── msg_20.txt │ │ │ │ │ │ │ ├── msg_21.txt │ │ │ │ │ │ │ ├── msg_22.txt │ │ │ │ │ │ │ ├── msg_23.txt │ │ │ │ │ │ │ ├── msg_24.txt │ │ │ │ │ │ │ ├── msg_25.txt │ │ │ │ │ │ │ ├── msg_26.txt │ │ │ │ │ │ │ ├── msg_27.txt │ │ │ │ │ │ │ ├── msg_28.txt │ │ │ │ │ │ │ ├── msg_29.txt │ │ │ │ │ │ │ ├── msg_30.txt │ │ │ │ │ │ │ ├── msg_31.txt │ │ │ │ │ │ │ ├── msg_32.txt │ │ │ │ │ │ │ ├── msg_33.txt │ │ │ │ │ │ │ ├── msg_34.txt │ │ │ │ │ │ │ ├── msg_35.txt │ │ │ │ │ │ │ ├── msg_36.txt │ │ │ │ │ │ │ ├── msg_37.txt │ │ │ │ │ │ │ ├── msg_38.txt │ │ │ │ │ │ │ ├── msg_39.txt │ │ │ │ │ │ │ ├── msg_40.txt │ │ │ │ │ │ │ ├── msg_41.txt │ │ │ │ │ │ │ ├── msg_42.txt │ │ │ │ │ │ │ ├── msg_43.txt │ │ │ │ │ │ │ ├── msg_44.txt │ │ │ │ │ │ │ ├── msg_45.txt │ │ │ │ │ │ │ └── msg_46.txt │ │ │ │ │ │ ├── test_email.py │ │ │ │ │ │ ├── test_email_codecs.py │ │ │ │ │ │ ├── test_email_codecs_renamed.py │ │ │ │ │ │ ├── test_email_renamed.py │ │ │ │ │ │ └── test_email_torture.py │ │ │ │ │ └── utils.py │ │ │ │ ├── encodings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aliases.py │ │ │ │ │ ├── ascii.py │ │ │ │ │ ├── base64_codec.py │ │ │ │ │ ├── big5.py │ │ │ │ │ ├── big5hkscs.py │ │ │ │ │ ├── bz2_codec.py │ │ │ │ │ ├── charmap.py │ │ │ │ │ ├── cp037.py │ │ │ │ │ ├── cp1006.py │ │ │ │ │ ├── cp1026.py │ │ │ │ │ ├── cp1140.py │ │ │ │ │ ├── cp1250.py │ │ │ │ │ ├── cp1251.py │ │ │ │ │ ├── cp1252.py │ │ │ │ │ ├── cp1253.py │ │ │ │ │ ├── cp1254.py │ │ │ │ │ ├── cp1255.py │ │ │ │ │ ├── cp1256.py │ │ │ │ │ ├── cp1257.py │ │ │ │ │ ├── cp1258.py │ │ │ │ │ ├── cp424.py │ │ │ │ │ ├── cp437.py │ │ │ │ │ ├── cp500.py │ │ │ │ │ ├── cp720.py │ │ │ │ │ ├── cp737.py │ │ │ │ │ ├── cp775.py │ │ │ │ │ ├── cp850.py │ │ │ │ │ ├── cp852.py │ │ │ │ │ ├── cp855.py │ │ │ │ │ ├── cp856.py │ │ │ │ │ ├── cp857.py │ │ │ │ │ ├── cp858.py │ │ │ │ │ ├── cp860.py │ │ │ │ │ ├── cp861.py │ │ │ │ │ ├── cp862.py │ │ │ │ │ ├── cp863.py │ │ │ │ │ ├── cp864.py │ │ │ │ │ ├── cp865.py │ │ │ │ │ ├── cp866.py │ │ │ │ │ ├── cp869.py │ │ │ │ │ ├── cp874.py │ │ │ │ │ ├── cp875.py │ │ │ │ │ ├── cp932.py │ │ │ │ │ ├── cp949.py │ │ │ │ │ ├── cp950.py │ │ │ │ │ ├── euc_jis_2004.py │ │ │ │ │ ├── euc_jisx0213.py │ │ │ │ │ ├── euc_jp.py │ │ │ │ │ ├── euc_kr.py │ │ │ │ │ ├── gb18030.py │ │ │ │ │ ├── gb2312.py │ │ │ │ │ ├── gbk.py │ │ │ │ │ ├── hex_codec.py │ │ │ │ │ ├── hp_roman8.py │ │ │ │ │ ├── hz.py │ │ │ │ │ ├── idna.py │ │ │ │ │ ├── iso2022_jp.py │ │ │ │ │ ├── iso2022_jp_1.py │ │ │ │ │ ├── iso2022_jp_2.py │ │ │ │ │ ├── iso2022_jp_2004.py │ │ │ │ │ ├── iso2022_jp_3.py │ │ │ │ │ ├── iso2022_jp_ext.py │ │ │ │ │ ├── iso2022_kr.py │ │ │ │ │ ├── iso8859_1.py │ │ │ │ │ ├── iso8859_10.py │ │ │ │ │ ├── iso8859_11.py │ │ │ │ │ ├── iso8859_13.py │ │ │ │ │ ├── iso8859_14.py │ │ │ │ │ ├── iso8859_15.py │ │ │ │ │ ├── iso8859_16.py │ │ │ │ │ ├── iso8859_2.py │ │ │ │ │ ├── iso8859_3.py │ │ │ │ │ ├── iso8859_4.py │ │ │ │ │ ├── iso8859_5.py │ │ │ │ │ ├── iso8859_6.py │ │ │ │ │ ├── iso8859_7.py │ │ │ │ │ ├── iso8859_8.py │ │ │ │ │ ├── iso8859_9.py │ │ │ │ │ ├── johab.py │ │ │ │ │ ├── koi8_r.py │ │ │ │ │ ├── koi8_u.py │ │ │ │ │ ├── latin_1.py │ │ │ │ │ ├── mac_arabic.py │ │ │ │ │ ├── mac_centeuro.py │ │ │ │ │ ├── mac_croatian.py │ │ │ │ │ ├── mac_cyrillic.py │ │ │ │ │ ├── mac_farsi.py │ │ │ │ │ ├── mac_greek.py │ │ │ │ │ ├── mac_iceland.py │ │ │ │ │ ├── mac_latin2.py │ │ │ │ │ ├── mac_roman.py │ │ │ │ │ ├── mac_romanian.py │ │ │ │ │ ├── mac_turkish.py │ │ │ │ │ ├── mbcs.py │ │ │ │ │ ├── palmos.py │ │ │ │ │ ├── ptcp154.py │ │ │ │ │ ├── punycode.py │ │ │ │ │ ├── quopri_codec.py │ │ │ │ │ ├── raw_unicode_escape.py │ │ │ │ │ ├── rot_13.py │ │ │ │ │ ├── shift_jis.py │ │ │ │ │ ├── shift_jis_2004.py │ │ │ │ │ ├── shift_jisx0213.py │ │ │ │ │ ├── string_escape.py │ │ │ │ │ ├── tis_620.py │ │ │ │ │ ├── undefined.py │ │ │ │ │ ├── unicode_escape.py │ │ │ │ │ ├── unicode_internal.py │ │ │ │ │ ├── utf_16.py │ │ │ │ │ ├── utf_16_be.py │ │ │ │ │ ├── utf_16_le.py │ │ │ │ │ ├── utf_32.py │ │ │ │ │ ├── utf_32_be.py │ │ │ │ │ ├── utf_32_le.py │ │ │ │ │ ├── utf_7.py │ │ │ │ │ ├── utf_8.py │ │ │ │ │ ├── utf_8_sig.py │ │ │ │ │ ├── uu_codec.py │ │ │ │ │ └── zlib_codec.py │ │ │ │ ├── filecmp.py │ │ │ │ ├── fileinput.py │ │ │ │ ├── fnmatch.py │ │ │ │ ├── formatter.py │ │ │ │ ├── fpformat.py │ │ │ │ ├── fractions.py │ │ │ │ ├── ftplib.py │ │ │ │ ├── functools.py │ │ │ │ ├── genericpath.py │ │ │ │ ├── getopt.py │ │ │ │ ├── getpass.py │ │ │ │ ├── gettext.py │ │ │ │ ├── glob.py │ │ │ │ ├── gzip.py │ │ │ │ ├── hashlib.py │ │ │ │ ├── heapq.py │ │ │ │ ├── hmac.py │ │ │ │ ├── hotshot │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── log.py │ │ │ │ │ ├── stats.py │ │ │ │ │ └── stones.py │ │ │ │ ├── htmlentitydefs.py │ │ │ │ ├── htmllib.py │ │ │ │ ├── httplib.py │ │ │ │ ├── ihooks.py │ │ │ │ ├── imaplib.py │ │ │ │ ├── imghdr.py │ │ │ │ ├── importlib │ │ │ │ │ └── __init__.py │ │ │ │ ├── imputil.py │ │ │ │ ├── inspect.py │ │ │ │ ├── io.py │ │ │ │ ├── json │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── encoder.py │ │ │ │ │ ├── scanner.py │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_check_circular.py │ │ │ │ │ │ ├── test_decode.py │ │ │ │ │ │ ├── test_default.py │ │ │ │ │ │ ├── test_dump.py │ │ │ │ │ │ ├── test_encode_basestring_ascii.py │ │ │ │ │ │ ├── test_fail.py │ │ │ │ │ │ ├── test_float.py │ │ │ │ │ │ ├── test_indent.py │ │ │ │ │ │ ├── test_pass1.py │ │ │ │ │ │ ├── test_pass2.py │ │ │ │ │ │ ├── test_pass3.py │ │ │ │ │ │ ├── test_recursion.py │ │ │ │ │ │ ├── test_scanstring.py │ │ │ │ │ │ ├── test_separators.py │ │ │ │ │ │ ├── test_speedups.py │ │ │ │ │ │ └── test_unicode.py │ │ │ │ │ └── tool.py │ │ │ │ ├── keyword.py │ │ │ │ ├── lib2to3 │ │ │ │ │ ├── Grammar.txt │ │ │ │ │ ├── PatternGrammar.txt │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── btm_matcher.py │ │ │ │ │ ├── btm_utils.py │ │ │ │ │ ├── fixer_base.py │ │ │ │ │ ├── fixer_util.py │ │ │ │ │ ├── fixes │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── fix_apply.py │ │ │ │ │ │ ├── fix_basestring.py │ │ │ │ │ │ ├── fix_buffer.py │ │ │ │ │ │ ├── fix_callable.py │ │ │ │ │ │ ├── fix_dict.py │ │ │ │ │ │ ├── fix_except.py │ │ │ │ │ │ ├── fix_exec.py │ │ │ │ │ │ ├── fix_execfile.py │ │ │ │ │ │ ├── fix_exitfunc.py │ │ │ │ │ │ ├── fix_filter.py │ │ │ │ │ │ ├── fix_funcattrs.py │ │ │ │ │ │ ├── fix_future.py │ │ │ │ │ │ ├── fix_getcwdu.py │ │ │ │ │ │ ├── fix_has_key.py │ │ │ │ │ │ ├── fix_idioms.py │ │ │ │ │ │ ├── fix_import.py │ │ │ │ │ │ ├── fix_imports.py │ │ │ │ │ │ ├── fix_imports2.py │ │ │ │ │ │ ├── fix_input.py │ │ │ │ │ │ ├── fix_intern.py │ │ │ │ │ │ ├── fix_isinstance.py │ │ │ │ │ │ ├── fix_itertools.py │ │ │ │ │ │ ├── fix_itertools_imports.py │ │ │ │ │ │ ├── fix_long.py │ │ │ │ │ │ ├── fix_map.py │ │ │ │ │ │ ├── fix_metaclass.py │ │ │ │ │ │ ├── fix_methodattrs.py │ │ │ │ │ │ ├── fix_ne.py │ │ │ │ │ │ ├── fix_next.py │ │ │ │ │ │ ├── fix_nonzero.py │ │ │ │ │ │ ├── fix_numliterals.py │ │ │ │ │ │ ├── fix_operator.py │ │ │ │ │ │ ├── fix_paren.py │ │ │ │ │ │ ├── fix_print.py │ │ │ │ │ │ ├── fix_raise.py │ │ │ │ │ │ ├── fix_raw_input.py │ │ │ │ │ │ ├── fix_reduce.py │ │ │ │ │ │ ├── fix_renames.py │ │ │ │ │ │ ├── fix_repr.py │ │ │ │ │ │ ├── fix_set_literal.py │ │ │ │ │ │ ├── fix_standarderror.py │ │ │ │ │ │ ├── fix_sys_exc.py │ │ │ │ │ │ ├── fix_throw.py │ │ │ │ │ │ ├── fix_tuple_params.py │ │ │ │ │ │ ├── fix_types.py │ │ │ │ │ │ ├── fix_unicode.py │ │ │ │ │ │ ├── fix_urllib.py │ │ │ │ │ │ ├── fix_ws_comma.py │ │ │ │ │ │ ├── fix_xrange.py │ │ │ │ │ │ ├── fix_xreadlines.py │ │ │ │ │ │ └── fix_zip.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── patcomp.py │ │ │ │ │ ├── pgen2 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── conv.py │ │ │ │ │ │ ├── driver.py │ │ │ │ │ │ ├── grammar.py │ │ │ │ │ │ ├── literals.py │ │ │ │ │ │ ├── parse.py │ │ │ │ │ │ ├── pgen.py │ │ │ │ │ │ ├── token.py │ │ │ │ │ │ └── tokenize.py │ │ │ │ │ ├── pygram.py │ │ │ │ │ ├── pytree.py │ │ │ │ │ ├── refactor.py │ │ │ │ │ └── tests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── bom.py │ │ │ │ │ │ ├── crlf.py │ │ │ │ │ │ ├── different_encoding.py │ │ │ │ │ │ ├── fixers │ │ │ │ │ │ │ ├── bad_order.py │ │ │ │ │ │ │ ├── myfixes │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── fix_explicit.py │ │ │ │ │ │ │ │ ├── fix_first.py │ │ │ │ │ │ │ │ ├── fix_last.py │ │ │ │ │ │ │ │ ├── fix_parrot.py │ │ │ │ │ │ │ │ └── fix_preorder.py │ │ │ │ │ │ │ ├── no_fixer_cls.py │ │ │ │ │ │ │ └── parrot_example.py │ │ │ │ │ │ ├── infinite_recursion.py │ │ │ │ │ │ ├── py2_test_grammar.py │ │ │ │ │ │ └── py3_test_grammar.py │ │ │ │ │ │ ├── pytree_idempotency.py │ │ │ │ │ │ ├── support.py │ │ │ │ │ │ ├── test_all_fixers.py │ │ │ │ │ │ ├── test_fixers.py │ │ │ │ │ │ ├── test_main.py │ │ │ │ │ │ ├── test_parser.py │ │ │ │ │ │ ├── test_pytree.py │ │ │ │ │ │ ├── test_refactor.py │ │ │ │ │ │ └── test_util.py │ │ │ │ ├── linecache.py │ │ │ │ ├── locale.py │ │ │ │ ├── logging │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── config.py │ │ │ │ │ └── handlers.py │ │ │ │ ├── mailbox.py │ │ │ │ ├── mailcap.py │ │ │ │ ├── markupbase.py │ │ │ │ ├── md5.py │ │ │ │ ├── mhlib.py │ │ │ │ ├── mimetools.py │ │ │ │ ├── mimetypes.py │ │ │ │ ├── mimify.py │ │ │ │ ├── modulefinder.py │ │ │ │ ├── multifile.py │ │ │ │ ├── mutex.py │ │ │ │ ├── netrc.py │ │ │ │ ├── new.py │ │ │ │ ├── nntplib.py │ │ │ │ ├── ntpath.py │ │ │ │ ├── nturl2path.py │ │ │ │ ├── numbers.py │ │ │ │ ├── opcode.py │ │ │ │ ├── optparse.py │ │ │ │ ├── os.py │ │ │ │ ├── pdb.doc │ │ │ │ ├── pdb.py │ │ │ │ ├── pickle.py │ │ │ │ ├── pickletools.py │ │ │ │ ├── pipes.py │ │ │ │ ├── pkgutil.py │ │ │ │ ├── platform.py │ │ │ │ ├── plistlib.py │ │ │ │ ├── popen2.py │ │ │ │ ├── poplib.py │ │ │ │ ├── posixfile.py │ │ │ │ ├── posixpath.py │ │ │ │ ├── pprint.py │ │ │ │ ├── profile.py │ │ │ │ ├── pstats.py │ │ │ │ ├── pty.py │ │ │ │ ├── py_compile.py │ │ │ │ ├── pyclbr.py │ │ │ │ ├── pydoc.py │ │ │ │ ├── pydoc_data │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── topics.py │ │ │ │ ├── quopri.py │ │ │ │ ├── random.py │ │ │ │ ├── re.py │ │ │ │ ├── repr.py │ │ │ │ ├── rexec.py │ │ │ │ ├── rfc822.py │ │ │ │ ├── rlcompleter.py │ │ │ │ ├── robotparser.py │ │ │ │ ├── runpy.py │ │ │ │ ├── sched.py │ │ │ │ ├── sets.py │ │ │ │ ├── sgmllib.py │ │ │ │ ├── sha.py │ │ │ │ ├── shelve.py │ │ │ │ ├── shlex.py │ │ │ │ ├── shutil.py │ │ │ │ ├── site-packages │ │ │ │ │ └── README │ │ │ │ ├── site.py │ │ │ │ ├── smtpd.py │ │ │ │ ├── smtplib.py │ │ │ │ ├── sndhdr.py │ │ │ │ ├── socket.py │ │ │ │ ├── sre.py │ │ │ │ ├── sre_compile.py │ │ │ │ ├── sre_constants.py │ │ │ │ ├── sre_parse.py │ │ │ │ ├── ssl.py │ │ │ │ ├── stat.py │ │ │ │ ├── statvfs.py │ │ │ │ ├── string.py │ │ │ │ ├── stringold.py │ │ │ │ ├── stringprep.py │ │ │ │ ├── struct.py │ │ │ │ ├── symbol.py │ │ │ │ ├── symtable.py │ │ │ │ ├── sysconfig.py │ │ │ │ ├── tabnanny.py │ │ │ │ ├── tarfile.py │ │ │ │ ├── telnetlib.py │ │ │ │ ├── tempfile.py │ │ │ │ ├── test │ │ │ │ │ ├── 185test.db │ │ │ │ │ ├── Sine-1000Hz-300ms.aif │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audiotest.au │ │ │ │ │ ├── autotest.py │ │ │ │ │ ├── bad_coding.py │ │ │ │ │ ├── bad_coding2.py │ │ │ │ │ ├── badcert.pem │ │ │ │ │ ├── badkey.pem │ │ │ │ │ ├── badsyntax_future3.py │ │ │ │ │ ├── badsyntax_future4.py │ │ │ │ │ ├── badsyntax_future5.py │ │ │ │ │ ├── badsyntax_future6.py │ │ │ │ │ ├── badsyntax_future7.py │ │ │ │ │ ├── badsyntax_future8.py │ │ │ │ │ ├── badsyntax_future9.py │ │ │ │ │ ├── badsyntax_nocaret.py │ │ │ │ │ ├── buffer_tests.py │ │ │ │ │ ├── cfgparser.1 │ │ │ │ │ ├── check_soundcard.vbs │ │ │ │ │ ├── cjkencodings │ │ │ │ │ │ ├── big5-utf8.txt │ │ │ │ │ │ ├── big5.txt │ │ │ │ │ │ ├── big5hkscs-utf8.txt │ │ │ │ │ │ ├── big5hkscs.txt │ │ │ │ │ │ ├── cp949-utf8.txt │ │ │ │ │ │ ├── cp949.txt │ │ │ │ │ │ ├── euc_jisx0213-utf8.txt │ │ │ │ │ │ ├── euc_jisx0213.txt │ │ │ │ │ │ ├── euc_jp-utf8.txt │ │ │ │ │ │ ├── euc_jp.txt │ │ │ │ │ │ ├── euc_kr-utf8.txt │ │ │ │ │ │ ├── euc_kr.txt │ │ │ │ │ │ ├── gb18030-utf8.txt │ │ │ │ │ │ ├── gb18030.txt │ │ │ │ │ │ ├── gb2312-utf8.txt │ │ │ │ │ │ ├── gb2312.txt │ │ │ │ │ │ ├── gbk-utf8.txt │ │ │ │ │ │ ├── gbk.txt │ │ │ │ │ │ ├── hz-utf8.txt │ │ │ │ │ │ ├── hz.txt │ │ │ │ │ │ ├── johab-utf8.txt │ │ │ │ │ │ ├── johab.txt │ │ │ │ │ │ ├── shift_jis-utf8.txt │ │ │ │ │ │ ├── shift_jis.txt │ │ │ │ │ │ ├── shift_jisx0213-utf8.txt │ │ │ │ │ │ └── shift_jisx0213.txt │ │ │ │ │ ├── cmath_testcases.txt │ │ │ │ │ ├── crashers │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── bogus_code_obj.py │ │ │ │ │ │ ├── borrowed_ref_1.py │ │ │ │ │ │ ├── borrowed_ref_2.py │ │ │ │ │ │ ├── compiler_recursion.py │ │ │ │ │ │ ├── gc_has_finalizer.py │ │ │ │ │ │ ├── gc_inspection.py │ │ │ │ │ │ ├── infinite_loop_re.py │ │ │ │ │ │ ├── loosing_mro_ref.py │ │ │ │ │ │ ├── mutation_inside_cyclegc.py │ │ │ │ │ │ ├── nasty_eq_vs_dict.py │ │ │ │ │ │ ├── recursion_limit_too_high.py │ │ │ │ │ │ └── recursive_call.py │ │ │ │ │ ├── curses_tests.py │ │ │ │ │ ├── data │ │ │ │ │ │ └── README │ │ │ │ │ ├── decimaltestdata │ │ │ │ │ │ ├── abs.decTest │ │ │ │ │ │ ├── add.decTest │ │ │ │ │ │ ├── and.decTest │ │ │ │ │ │ ├── base.decTest │ │ │ │ │ │ ├── clamp.decTest │ │ │ │ │ │ ├── class.decTest │ │ │ │ │ │ ├── compare.decTest │ │ │ │ │ │ ├── comparetotal.decTest │ │ │ │ │ │ ├── comparetotmag.decTest │ │ │ │ │ │ ├── copy.decTest │ │ │ │ │ │ ├── copyabs.decTest │ │ │ │ │ │ ├── copynegate.decTest │ │ │ │ │ │ ├── copysign.decTest │ │ │ │ │ │ ├── ddAbs.decTest │ │ │ │ │ │ ├── ddAdd.decTest │ │ │ │ │ │ ├── ddAnd.decTest │ │ │ │ │ │ ├── ddBase.decTest │ │ │ │ │ │ ├── ddCanonical.decTest │ │ │ │ │ │ ├── ddClass.decTest │ │ │ │ │ │ ├── ddCompare.decTest │ │ │ │ │ │ ├── ddCompareSig.decTest │ │ │ │ │ │ ├── ddCompareTotal.decTest │ │ │ │ │ │ ├── ddCompareTotalMag.decTest │ │ │ │ │ │ ├── ddCopy.decTest │ │ │ │ │ │ ├── ddCopyAbs.decTest │ │ │ │ │ │ ├── ddCopyNegate.decTest │ │ │ │ │ │ ├── ddCopySign.decTest │ │ │ │ │ │ ├── ddDivide.decTest │ │ │ │ │ │ ├── ddDivideInt.decTest │ │ │ │ │ │ ├── ddEncode.decTest │ │ │ │ │ │ ├── ddFMA.decTest │ │ │ │ │ │ ├── ddInvert.decTest │ │ │ │ │ │ ├── ddLogB.decTest │ │ │ │ │ │ ├── ddMax.decTest │ │ │ │ │ │ ├── ddMaxMag.decTest │ │ │ │ │ │ ├── ddMin.decTest │ │ │ │ │ │ ├── ddMinMag.decTest │ │ │ │ │ │ ├── ddMinus.decTest │ │ │ │ │ │ ├── ddMultiply.decTest │ │ │ │ │ │ ├── ddNextMinus.decTest │ │ │ │ │ │ ├── ddNextPlus.decTest │ │ │ │ │ │ ├── ddNextToward.decTest │ │ │ │ │ │ ├── ddOr.decTest │ │ │ │ │ │ ├── ddPlus.decTest │ │ │ │ │ │ ├── ddQuantize.decTest │ │ │ │ │ │ ├── ddReduce.decTest │ │ │ │ │ │ ├── ddRemainder.decTest │ │ │ │ │ │ ├── ddRemainderNear.decTest │ │ │ │ │ │ ├── ddRotate.decTest │ │ │ │ │ │ ├── ddSameQuantum.decTest │ │ │ │ │ │ ├── ddScaleB.decTest │ │ │ │ │ │ ├── ddShift.decTest │ │ │ │ │ │ ├── ddSubtract.decTest │ │ │ │ │ │ ├── ddToIntegral.decTest │ │ │ │ │ │ ├── ddXor.decTest │ │ │ │ │ │ ├── decDouble.decTest │ │ │ │ │ │ ├── decQuad.decTest │ │ │ │ │ │ ├── decSingle.decTest │ │ │ │ │ │ ├── divide.decTest │ │ │ │ │ │ ├── divideint.decTest │ │ │ │ │ │ ├── dqAbs.decTest │ │ │ │ │ │ ├── dqAdd.decTest │ │ │ │ │ │ ├── dqAnd.decTest │ │ │ │ │ │ ├── dqBase.decTest │ │ │ │ │ │ ├── dqCanonical.decTest │ │ │ │ │ │ ├── dqClass.decTest │ │ │ │ │ │ ├── dqCompare.decTest │ │ │ │ │ │ ├── dqCompareSig.decTest │ │ │ │ │ │ ├── dqCompareTotal.decTest │ │ │ │ │ │ ├── dqCompareTotalMag.decTest │ │ │ │ │ │ ├── dqCopy.decTest │ │ │ │ │ │ ├── dqCopyAbs.decTest │ │ │ │ │ │ ├── dqCopyNegate.decTest │ │ │ │ │ │ ├── dqCopySign.decTest │ │ │ │ │ │ ├── dqDivide.decTest │ │ │ │ │ │ ├── dqDivideInt.decTest │ │ │ │ │ │ ├── dqEncode.decTest │ │ │ │ │ │ ├── dqFMA.decTest │ │ │ │ │ │ ├── dqInvert.decTest │ │ │ │ │ │ ├── dqLogB.decTest │ │ │ │ │ │ ├── dqMax.decTest │ │ │ │ │ │ ├── dqMaxMag.decTest │ │ │ │ │ │ ├── dqMin.decTest │ │ │ │ │ │ ├── dqMinMag.decTest │ │ │ │ │ │ ├── dqMinus.decTest │ │ │ │ │ │ ├── dqMultiply.decTest │ │ │ │ │ │ ├── dqNextMinus.decTest │ │ │ │ │ │ ├── dqNextPlus.decTest │ │ │ │ │ │ ├── dqNextToward.decTest │ │ │ │ │ │ ├── dqOr.decTest │ │ │ │ │ │ ├── dqPlus.decTest │ │ │ │ │ │ ├── dqQuantize.decTest │ │ │ │ │ │ ├── dqReduce.decTest │ │ │ │ │ │ ├── dqRemainder.decTest │ │ │ │ │ │ ├── dqRemainderNear.decTest │ │ │ │ │ │ ├── dqRotate.decTest │ │ │ │ │ │ ├── dqSameQuantum.decTest │ │ │ │ │ │ ├── dqScaleB.decTest │ │ │ │ │ │ ├── dqShift.decTest │ │ │ │ │ │ ├── dqSubtract.decTest │ │ │ │ │ │ ├── dqToIntegral.decTest │ │ │ │ │ │ ├── dqXor.decTest │ │ │ │ │ │ ├── dsBase.decTest │ │ │ │ │ │ ├── dsEncode.decTest │ │ │ │ │ │ ├── exp.decTest │ │ │ │ │ │ ├── extra.decTest │ │ │ │ │ │ ├── fma.decTest │ │ │ │ │ │ ├── inexact.decTest │ │ │ │ │ │ ├── invert.decTest │ │ │ │ │ │ ├── ln.decTest │ │ │ │ │ │ ├── log10.decTest │ │ │ │ │ │ ├── logb.decTest │ │ │ │ │ │ ├── max.decTest │ │ │ │ │ │ ├── maxmag.decTest │ │ │ │ │ │ ├── min.decTest │ │ │ │ │ │ ├── minmag.decTest │ │ │ │ │ │ ├── minus.decTest │ │ │ │ │ │ ├── multiply.decTest │ │ │ │ │ │ ├── nextminus.decTest │ │ │ │ │ │ ├── nextplus.decTest │ │ │ │ │ │ ├── nexttoward.decTest │ │ │ │ │ │ ├── or.decTest │ │ │ │ │ │ ├── plus.decTest │ │ │ │ │ │ ├── power.decTest │ │ │ │ │ │ ├── powersqrt.decTest │ │ │ │ │ │ ├── quantize.decTest │ │ │ │ │ │ ├── randomBound32.decTest │ │ │ │ │ │ ├── randoms.decTest │ │ │ │ │ │ ├── reduce.decTest │ │ │ │ │ │ ├── remainder.decTest │ │ │ │ │ │ ├── remainderNear.decTest │ │ │ │ │ │ ├── rescale.decTest │ │ │ │ │ │ ├── rotate.decTest │ │ │ │ │ │ ├── rounding.decTest │ │ │ │ │ │ ├── samequantum.decTest │ │ │ │ │ │ ├── scaleb.decTest │ │ │ │ │ │ ├── shift.decTest │ │ │ │ │ │ ├── squareroot.decTest │ │ │ │ │ │ ├── subtract.decTest │ │ │ │ │ │ ├── testall.decTest │ │ │ │ │ │ ├── tointegral.decTest │ │ │ │ │ │ ├── tointegralx.decTest │ │ │ │ │ │ └── xor.decTest │ │ │ │ │ ├── doctest_aliases.py │ │ │ │ │ ├── double_const.py │ │ │ │ │ ├── empty.vbs │ │ │ │ │ ├── exception_hierarchy.txt │ │ │ │ │ ├── floating_points.txt │ │ │ │ │ ├── fork_wait.py │ │ │ │ │ ├── formatfloat_testcases.txt │ │ │ │ │ ├── gdb_sample.py │ │ │ │ │ ├── greyrgb.uue │ │ │ │ │ ├── https_svn_python_org_root.pem │ │ │ │ │ ├── ieee754.txt │ │ │ │ │ ├── infinite_reload.py │ │ │ │ │ ├── inspect_fodder.py │ │ │ │ │ ├── inspect_fodder2.py │ │ │ │ │ ├── keycert.pem │ │ │ │ │ ├── leakers │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── test_ctypes.py │ │ │ │ │ │ ├── test_dictself.py │ │ │ │ │ │ ├── test_gestalt.py │ │ │ │ │ │ └── test_selftype.py │ │ │ │ │ ├── list_tests.py │ │ │ │ │ ├── lock_tests.py │ │ │ │ │ ├── mapping_tests.py │ │ │ │ │ ├── math_testcases.txt │ │ │ │ │ ├── nullcert.pem │ │ │ │ │ ├── outstanding_bugs.py │ │ │ │ │ ├── pickletester.py │ │ │ │ │ ├── profilee.py │ │ │ │ │ ├── pyclbr_input.py │ │ │ │ │ ├── pydoc_mod.py │ │ │ │ │ ├── pydocfodder.py │ │ │ │ │ ├── pystone.py │ │ │ │ │ ├── randv2_32.pck │ │ │ │ │ ├── randv2_64.pck │ │ │ │ │ ├── randv3.pck │ │ │ │ │ ├── re_tests.py │ │ │ │ │ ├── regex_tests.py │ │ │ │ │ ├── regrtest.py │ │ │ │ │ ├── relimport.py │ │ │ │ │ ├── reperf.py │ │ │ │ │ ├── sample_doctest.py │ │ │ │ │ ├── script_helper.py │ │ │ │ │ ├── seq_tests.py │ │ │ │ │ ├── sgml_input.html │ │ │ │ │ ├── sha256.pem │ │ │ │ │ ├── sortperf.py │ │ │ │ │ ├── ssl_cert.pem │ │ │ │ │ ├── ssl_key.pem │ │ │ │ │ ├── string_tests.py │ │ │ │ │ ├── subprocessdata │ │ │ │ │ │ └── sigchild_ignore.py │ │ │ │ │ ├── svn_python_org_https_cert.pem │ │ │ │ │ ├── test_MimeWriter.py │ │ │ │ │ ├── test_SimpleHTTPServer.py │ │ │ │ │ ├── test_StringIO.py │ │ │ │ │ ├── test___all__.py │ │ │ │ │ ├── test___future__.py │ │ │ │ │ ├── test__locale.py │ │ │ │ │ ├── test_abc.py │ │ │ │ │ ├── test_abstract_numbers.py │ │ │ │ │ ├── test_aepack.py │ │ │ │ │ ├── test_aifc.py │ │ │ │ │ ├── test_al.py │ │ │ │ │ ├── test_anydbm.py │ │ │ │ │ ├── test_applesingle.py │ │ │ │ │ ├── test_argparse.py │ │ │ │ │ ├── test_array.py │ │ │ │ │ ├── test_ascii_formatd.py │ │ │ │ │ ├── test_ast.py │ │ │ │ │ ├── test_asynchat.py │ │ │ │ │ ├── test_asyncore.py │ │ │ │ │ ├── test_atexit.py │ │ │ │ │ ├── test_audioop.py │ │ │ │ │ ├── test_augassign.py │ │ │ │ │ ├── test_base64.py │ │ │ │ │ ├── test_bastion.py │ │ │ │ │ ├── test_bigaddrspace.py │ │ │ │ │ ├── test_bigmem.py │ │ │ │ │ ├── test_binascii.py │ │ │ │ │ ├── test_binhex.py │ │ │ │ │ ├── test_binop.py │ │ │ │ │ ├── test_bisect.py │ │ │ │ │ ├── test_bool.py │ │ │ │ │ ├── test_bsddb.py │ │ │ │ │ ├── test_bsddb185.py │ │ │ │ │ ├── test_bsddb3.py │ │ │ │ │ ├── test_buffer.py │ │ │ │ │ ├── test_bufio.py │ │ │ │ │ ├── test_builtin.py │ │ │ │ │ ├── test_bytes.py │ │ │ │ │ ├── test_bz2.py │ │ │ │ │ ├── test_calendar.py │ │ │ │ │ ├── test_call.py │ │ │ │ │ ├── test_capi.py │ │ │ │ │ ├── test_cd.py │ │ │ │ │ ├── test_cfgparser.py │ │ │ │ │ ├── test_cgi.py │ │ │ │ │ ├── test_charmapcodec.py │ │ │ │ │ ├── test_cl.py │ │ │ │ │ ├── test_class.py │ │ │ │ │ ├── test_cmath.py │ │ │ │ │ ├── test_cmd.py │ │ │ │ │ ├── test_cmd_line.py │ │ │ │ │ ├── test_cmd_line_script.py │ │ │ │ │ ├── test_code.py │ │ │ │ │ ├── test_codeccallbacks.py │ │ │ │ │ ├── test_codecencodings_cn.py │ │ │ │ │ ├── test_codecencodings_hk.py │ │ │ │ │ ├── test_codecencodings_jp.py │ │ │ │ │ ├── test_codecencodings_kr.py │ │ │ │ │ ├── test_codecencodings_tw.py │ │ │ │ │ ├── test_codecmaps_cn.py │ │ │ │ │ ├── test_codecmaps_hk.py │ │ │ │ │ ├── test_codecmaps_jp.py │ │ │ │ │ ├── test_codecmaps_kr.py │ │ │ │ │ ├── test_codecmaps_tw.py │ │ │ │ │ ├── test_codecs.py │ │ │ │ │ ├── test_codeop.py │ │ │ │ │ ├── test_coding.py │ │ │ │ │ ├── test_coercion.py │ │ │ │ │ ├── test_collections.py │ │ │ │ │ ├── test_colorsys.py │ │ │ │ │ ├── test_commands.py │ │ │ │ │ ├── test_compare.py │ │ │ │ │ ├── test_compile.py │ │ │ │ │ ├── test_compileall.py │ │ │ │ │ ├── test_compiler.py │ │ │ │ │ ├── test_complex.py │ │ │ │ │ ├── test_complex_args.py │ │ │ │ │ ├── test_contains.py │ │ │ │ │ ├── test_contextlib.py │ │ │ │ │ ├── test_cookie.py │ │ │ │ │ ├── test_cookielib.py │ │ │ │ │ ├── test_copy.py │ │ │ │ │ ├── test_copy_reg.py │ │ │ │ │ ├── test_cpickle.py │ │ │ │ │ ├── test_cprofile.py │ │ │ │ │ ├── test_crypt.py │ │ │ │ │ ├── test_csv.py │ │ │ │ │ ├── test_ctypes.py │ │ │ │ │ ├── test_curses.py │ │ │ │ │ ├── test_datetime.py │ │ │ │ │ ├── test_dbm.py │ │ │ │ │ ├── test_decimal.py │ │ │ │ │ ├── test_decorators.py │ │ │ │ │ ├── test_defaultdict.py │ │ │ │ │ ├── test_deque.py │ │ │ │ │ ├── test_descr.py │ │ │ │ │ ├── test_descrtut.py │ │ │ │ │ ├── test_dict.py │ │ │ │ │ ├── test_dictcomps.py │ │ │ │ │ ├── test_dictviews.py │ │ │ │ │ ├── test_difflib.py │ │ │ │ │ ├── test_difflib_expect.html │ │ │ │ │ ├── test_dircache.py │ │ │ │ │ ├── test_dis.py │ │ │ │ │ ├── test_distutils.py │ │ │ │ │ ├── test_dl.py │ │ │ │ │ ├── test_doctest.py │ │ │ │ │ ├── test_doctest.txt │ │ │ │ │ ├── test_doctest2.py │ │ │ │ │ ├── test_doctest2.txt │ │ │ │ │ ├── test_doctest3.txt │ │ │ │ │ ├── test_doctest4.txt │ │ │ │ │ ├── test_docxmlrpc.py │ │ │ │ │ ├── test_dumbdbm.py │ │ │ │ │ ├── test_dummy_thread.py │ │ │ │ │ ├── test_dummy_threading.py │ │ │ │ │ ├── test_email.py │ │ │ │ │ ├── test_email_codecs.py │ │ │ │ │ ├── test_email_renamed.py │ │ │ │ │ ├── test_enumerate.py │ │ │ │ │ ├── test_eof.py │ │ │ │ │ ├── test_epoll.py │ │ │ │ │ ├── test_errno.py │ │ │ │ │ ├── test_exception_variations.py │ │ │ │ │ ├── test_exceptions.py │ │ │ │ │ ├── test_extcall.py │ │ │ │ │ ├── test_fcntl.py │ │ │ │ │ ├── test_file.py │ │ │ │ │ ├── test_file2k.py │ │ │ │ │ ├── test_filecmp.py │ │ │ │ │ ├── test_fileinput.py │ │ │ │ │ ├── test_fileio.py │ │ │ │ │ ├── test_float.py │ │ │ │ │ ├── test_fnmatch.py │ │ │ │ │ ├── test_fork1.py │ │ │ │ │ ├── test_format.py │ │ │ │ │ ├── test_fpformat.py │ │ │ │ │ ├── test_fractions.py │ │ │ │ │ ├── test_frozen.py │ │ │ │ │ ├── test_ftplib.py │ │ │ │ │ ├── test_funcattrs.py │ │ │ │ │ ├── test_functools.py │ │ │ │ │ ├── test_future.py │ │ │ │ │ ├── test_future1.py │ │ │ │ │ ├── test_future2.py │ │ │ │ │ ├── test_future3.py │ │ │ │ │ ├── test_future4.py │ │ │ │ │ ├── test_future5.py │ │ │ │ │ ├── test_future_builtins.py │ │ │ │ │ ├── test_gc.py │ │ │ │ │ ├── test_gdb.py │ │ │ │ │ ├── test_gdbm.py │ │ │ │ │ ├── test_generators.py │ │ │ │ │ ├── test_genericpath.py │ │ │ │ │ ├── test_genexps.py │ │ │ │ │ ├── test_getargs.py │ │ │ │ │ ├── test_getargs2.py │ │ │ │ │ ├── test_getopt.py │ │ │ │ │ ├── test_gettext.py │ │ │ │ │ ├── test_gl.py │ │ │ │ │ ├── test_glob.py │ │ │ │ │ ├── test_global.py │ │ │ │ │ ├── test_grammar.py │ │ │ │ │ ├── test_grp.py │ │ │ │ │ ├── test_gzip.py │ │ │ │ │ ├── test_hash.py │ │ │ │ │ ├── test_hashlib.py │ │ │ │ │ ├── test_heapq.py │ │ │ │ │ ├── test_hmac.py │ │ │ │ │ ├── test_hotshot.py │ │ │ │ │ ├── test_htmllib.py │ │ │ │ │ ├── test_htmlparser.py │ │ │ │ │ ├── test_httplib.py │ │ │ │ │ ├── test_httpservers.py │ │ │ │ │ ├── test_imageop.py │ │ │ │ │ ├── test_imaplib.py │ │ │ │ │ ├── test_imgfile.py │ │ │ │ │ ├── test_imp.py │ │ │ │ │ ├── test_import.py │ │ │ │ │ ├── test_importhooks.py │ │ │ │ │ ├── test_importlib.py │ │ │ │ │ ├── test_index.py │ │ │ │ │ ├── test_inspect.py │ │ │ │ │ ├── test_int.py │ │ │ │ │ ├── test_int_literal.py │ │ │ │ │ ├── test_io.py │ │ │ │ │ ├── test_ioctl.py │ │ │ │ │ ├── test_isinstance.py │ │ │ │ │ ├── test_iter.py │ │ │ │ │ ├── test_iterlen.py │ │ │ │ │ ├── test_itertools.py │ │ │ │ │ ├── test_json.py │ │ │ │ │ ├── test_kqueue.py │ │ │ │ │ ├── test_largefile.py │ │ │ │ │ ├── test_lib2to3.py │ │ │ │ │ ├── test_linecache.py │ │ │ │ │ ├── test_linuxaudiodev.py │ │ │ │ │ ├── test_list.py │ │ │ │ │ ├── test_locale.py │ │ │ │ │ ├── test_logging.py │ │ │ │ │ ├── test_long.py │ │ │ │ │ ├── test_long_future.py │ │ │ │ │ ├── test_longexp.py │ │ │ │ │ ├── test_macos.py │ │ │ │ │ ├── test_macostools.py │ │ │ │ │ ├── test_macpath.py │ │ │ │ │ ├── test_mailbox.py │ │ │ │ │ ├── test_marshal.py │ │ │ │ │ ├── test_math.py │ │ │ │ │ ├── test_md5.py │ │ │ │ │ ├── test_memoryio.py │ │ │ │ │ ├── test_memoryview.py │ │ │ │ │ ├── test_mhlib.py │ │ │ │ │ ├── test_mimetools.py │ │ │ │ │ ├── test_mimetypes.py │ │ │ │ │ ├── test_minidom.py │ │ │ │ │ ├── test_mmap.py │ │ │ │ │ ├── test_module.py │ │ │ │ │ ├── test_modulefinder.py │ │ │ │ │ ├── test_msilib.py │ │ │ │ │ ├── test_multibytecodec.py │ │ │ │ │ ├── test_multibytecodec_support.py │ │ │ │ │ ├── test_multifile.py │ │ │ │ │ ├── test_multiprocessing.py │ │ │ │ │ ├── test_mutants.py │ │ │ │ │ ├── test_mutex.py │ │ │ │ │ ├── test_netrc.py │ │ │ │ │ ├── test_new.py │ │ │ │ │ ├── test_nis.py │ │ │ │ │ ├── test_normalization.py │ │ │ │ │ ├── test_ntpath.py │ │ │ │ │ ├── test_old_mailbox.py │ │ │ │ │ ├── test_opcodes.py │ │ │ │ │ ├── test_openpty.py │ │ │ │ │ ├── test_operator.py │ │ │ │ │ ├── test_optparse.py │ │ │ │ │ ├── test_os.py │ │ │ │ │ ├── test_ossaudiodev.py │ │ │ │ │ ├── test_parser.py │ │ │ │ │ ├── test_pdb.py │ │ │ │ │ ├── test_peepholer.py │ │ │ │ │ ├── test_pep247.py │ │ │ │ │ ├── test_pep263.py │ │ │ │ │ ├── test_pep277.py │ │ │ │ │ ├── test_pep292.py │ │ │ │ │ ├── test_pep352.py │ │ │ │ │ ├── test_pickle.py │ │ │ │ │ ├── test_pickletools.py │ │ │ │ │ ├── test_pipes.py │ │ │ │ │ ├── test_pkg.py │ │ │ │ │ ├── test_pkgimport.py │ │ │ │ │ ├── test_pkgutil.py │ │ │ │ │ ├── test_platform.py │ │ │ │ │ ├── test_plistlib.py │ │ │ │ │ ├── test_poll.py │ │ │ │ │ ├── test_popen.py │ │ │ │ │ ├── test_popen2.py │ │ │ │ │ ├── test_poplib.py │ │ │ │ │ ├── test_posix.py │ │ │ │ │ ├── test_posixpath.py │ │ │ │ │ ├── test_pow.py │ │ │ │ │ ├── test_pprint.py │ │ │ │ │ ├── test_print.py │ │ │ │ │ ├── test_profile.py │ │ │ │ │ ├── test_property.py │ │ │ │ │ ├── test_pstats.py │ │ │ │ │ ├── test_pty.py │ │ │ │ │ ├── test_pwd.py │ │ │ │ │ ├── test_py3kwarn.py │ │ │ │ │ ├── test_pyclbr.py │ │ │ │ │ ├── test_pydoc.py │ │ │ │ │ ├── test_pyexpat.py │ │ │ │ │ ├── test_queue.py │ │ │ │ │ ├── test_quopri.py │ │ │ │ │ ├── test_random.py │ │ │ │ │ ├── test_re.py │ │ │ │ │ ├── test_readline.py │ │ │ │ │ ├── test_repr.py │ │ │ │ │ ├── test_resource.py │ │ │ │ │ ├── test_rfc822.py │ │ │ │ │ ├── test_richcmp.py │ │ │ │ │ ├── test_rlcompleter.py │ │ │ │ │ ├── test_robotparser.py │ │ │ │ │ ├── test_runpy.py │ │ │ │ │ ├── test_sax.py │ │ │ │ │ ├── test_scope.py │ │ │ │ │ ├── test_scriptpackages.py │ │ │ │ │ ├── test_select.py │ │ │ │ │ ├── test_set.py │ │ │ │ │ ├── test_setcomps.py │ │ │ │ │ ├── test_sets.py │ │ │ │ │ ├── test_sgmllib.py │ │ │ │ │ ├── test_sha.py │ │ │ │ │ ├── test_shelve.py │ │ │ │ │ ├── test_shlex.py │ │ │ │ │ ├── test_shutil.py │ │ │ │ │ ├── test_signal.py │ │ │ │ │ ├── test_site.py │ │ │ │ │ ├── test_slice.py │ │ │ │ │ ├── test_smtplib.py │ │ │ │ │ ├── test_smtpnet.py │ │ │ │ │ ├── test_socket.py │ │ │ │ │ ├── test_socketserver.py │ │ │ │ │ ├── test_softspace.py │ │ │ │ │ ├── test_sort.py │ │ │ │ │ ├── test_sqlite.py │ │ │ │ │ ├── test_ssl.py │ │ │ │ │ ├── test_startfile.py │ │ │ │ │ ├── test_str.py │ │ │ │ │ ├── test_strftime.py │ │ │ │ │ ├── test_string.py │ │ │ │ │ ├── test_stringprep.py │ │ │ │ │ ├── test_strop.py │ │ │ │ │ ├── test_strptime.py │ │ │ │ │ ├── test_strtod.py │ │ │ │ │ ├── test_struct.py │ │ │ │ │ ├── test_structmembers.py │ │ │ │ │ ├── test_structseq.py │ │ │ │ │ ├── test_subprocess.py │ │ │ │ │ ├── test_sunaudiodev.py │ │ │ │ │ ├── test_sundry.py │ │ │ │ │ ├── test_support.py │ │ │ │ │ ├── test_symtable.py │ │ │ │ │ ├── test_syntax.py │ │ │ │ │ ├── test_sys.py │ │ │ │ │ ├── test_sys_setprofile.py │ │ │ │ │ ├── test_sys_settrace.py │ │ │ │ │ ├── test_sysconfig.py │ │ │ │ │ ├── test_tarfile.py │ │ │ │ │ ├── test_tcl.py │ │ │ │ │ ├── test_telnetlib.py │ │ │ │ │ ├── test_tempfile.py │ │ │ │ │ ├── test_textwrap.py │ │ │ │ │ ├── test_thread.py │ │ │ │ │ ├── test_threaded_import.py │ │ │ │ │ ├── test_threadedtempfile.py │ │ │ │ │ ├── test_threading.py │ │ │ │ │ ├── test_threading_local.py │ │ │ │ │ ├── test_threadsignals.py │ │ │ │ │ ├── test_time.py │ │ │ │ │ ├── test_timeout.py │ │ │ │ │ ├── test_tk.py │ │ │ │ │ ├── test_tokenize.py │ │ │ │ │ ├── test_trace.py │ │ │ │ │ ├── test_traceback.py │ │ │ │ │ ├── test_transformer.py │ │ │ │ │ ├── test_ttk_guionly.py │ │ │ │ │ ├── test_ttk_textonly.py │ │ │ │ │ ├── test_tuple.py │ │ │ │ │ ├── test_typechecks.py │ │ │ │ │ ├── test_types.py │ │ │ │ │ ├── test_ucn.py │ │ │ │ │ ├── test_unary.py │ │ │ │ │ ├── test_undocumented_details.py │ │ │ │ │ ├── test_unicode.py │ │ │ │ │ ├── test_unicode_file.py │ │ │ │ │ ├── test_unicodedata.py │ │ │ │ │ ├── test_unittest.py │ │ │ │ │ ├── test_univnewlines.py │ │ │ │ │ ├── test_univnewlines2k.py │ │ │ │ │ ├── test_unpack.py │ │ │ │ │ ├── test_urllib.py │ │ │ │ │ ├── test_urllib2.py │ │ │ │ │ ├── test_urllib2_localnet.py │ │ │ │ │ ├── test_urllib2net.py │ │ │ │ │ ├── test_urllibnet.py │ │ │ │ │ ├── test_urlparse.py │ │ │ │ │ ├── test_userdict.py │ │ │ │ │ ├── test_userlist.py │ │ │ │ │ ├── test_userstring.py │ │ │ │ │ ├── test_uu.py │ │ │ │ │ ├── test_uuid.py │ │ │ │ │ ├── test_wait3.py │ │ │ │ │ ├── test_wait4.py │ │ │ │ │ ├── test_warnings.py │ │ │ │ │ ├── test_wave.py │ │ │ │ │ ├── test_weakref.py │ │ │ │ │ ├── test_weakset.py │ │ │ │ │ ├── test_whichdb.py │ │ │ │ │ ├── test_winreg.py │ │ │ │ │ ├── test_winsound.py │ │ │ │ │ ├── test_with.py │ │ │ │ │ ├── test_wsgiref.py │ │ │ │ │ ├── test_xdrlib.py │ │ │ │ │ ├── test_xml_etree.py │ │ │ │ │ ├── test_xml_etree_c.py │ │ │ │ │ ├── test_xmllib.py │ │ │ │ │ ├── test_xmlrpc.py │ │ │ │ │ ├── test_xpickle.py │ │ │ │ │ ├── test_xrange.py │ │ │ │ │ ├── test_zipfile.py │ │ │ │ │ ├── test_zipfile64.py │ │ │ │ │ ├── test_zipimport.py │ │ │ │ │ ├── test_zipimport_support.py │ │ │ │ │ ├── test_zlib.py │ │ │ │ │ ├── testall.py │ │ │ │ │ ├── testcodec.py │ │ │ │ │ ├── testimg.uue │ │ │ │ │ ├── testimgr.uue │ │ │ │ │ ├── testrgb.uue │ │ │ │ │ ├── testtar.tar │ │ │ │ │ ├── tf_inherit_check.py │ │ │ │ │ ├── threaded_import_hangers.py │ │ │ │ │ ├── time_hashlib.py │ │ │ │ │ ├── tokenize_tests.txt │ │ │ │ │ ├── tracedmodules │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── testmod.py │ │ │ │ │ ├── warning_tests.py │ │ │ │ │ ├── win_console_handler.py │ │ │ │ │ ├── wrongcert.pem │ │ │ │ │ ├── xmltestdata │ │ │ │ │ │ ├── simple-ns.xml │ │ │ │ │ │ ├── simple.xml │ │ │ │ │ │ ├── test.xml │ │ │ │ │ │ └── test.xml.out │ │ │ │ │ ├── xmltests.py │ │ │ │ │ └── zipdir.zip │ │ │ │ ├── textwrap.py │ │ │ │ ├── this.py │ │ │ │ ├── timeit.py │ │ │ │ ├── toaiff.py │ │ │ │ ├── token.py │ │ │ │ ├── tokenize.py │ │ │ │ ├── trace.py │ │ │ │ ├── traceback.py │ │ │ │ ├── tty.py │ │ │ │ ├── types.py │ │ │ │ ├── unittest │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── case.py │ │ │ │ │ ├── loader.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── result.py │ │ │ │ │ ├── runner.py │ │ │ │ │ ├── signals.py │ │ │ │ │ ├── suite.py │ │ │ │ │ ├── test │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── dummy.py │ │ │ │ │ │ ├── support.py │ │ │ │ │ │ ├── test_assertions.py │ │ │ │ │ │ ├── test_break.py │ │ │ │ │ │ ├── test_case.py │ │ │ │ │ │ ├── test_discovery.py │ │ │ │ │ │ ├── test_functiontestcase.py │ │ │ │ │ │ ├── test_loader.py │ │ │ │ │ │ ├── test_program.py │ │ │ │ │ │ ├── test_result.py │ │ │ │ │ │ ├── test_runner.py │ │ │ │ │ │ ├── test_setups.py │ │ │ │ │ │ ├── test_skipping.py │ │ │ │ │ │ └── test_suite.py │ │ │ │ │ └── util.py │ │ │ │ ├── urllib.py │ │ │ │ ├── urllib2.py │ │ │ │ ├── urlparse.py │ │ │ │ ├── user.py │ │ │ │ ├── uu.py │ │ │ │ ├── uuid.py │ │ │ │ ├── warnings.py │ │ │ │ ├── wave.py │ │ │ │ ├── weakref.py │ │ │ │ ├── webbrowser.py │ │ │ │ ├── whichdb.py │ │ │ │ ├── wsgiref.egg-info │ │ │ │ ├── wsgiref │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── handlers.py │ │ │ │ │ ├── headers.py │ │ │ │ │ ├── simple_server.py │ │ │ │ │ ├── util.py │ │ │ │ │ └── validate.py │ │ │ │ ├── xdrlib.py │ │ │ │ ├── xml │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dom │ │ │ │ │ │ ├── NodeFilter.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── domreg.py │ │ │ │ │ │ ├── expatbuilder.py │ │ │ │ │ │ ├── minicompat.py │ │ │ │ │ │ ├── minidom.py │ │ │ │ │ │ ├── pulldom.py │ │ │ │ │ │ └── xmlbuilder.py │ │ │ │ │ ├── etree │ │ │ │ │ │ ├── ElementInclude.py │ │ │ │ │ │ ├── ElementPath.py │ │ │ │ │ │ ├── ElementTree.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── cElementTree.py │ │ │ │ │ ├── parsers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── expat.py │ │ │ │ │ └── sax │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _exceptions.py │ │ │ │ │ │ ├── expatreader.py │ │ │ │ │ │ ├── handler.py │ │ │ │ │ │ ├── saxutils.py │ │ │ │ │ │ └── xmlreader.py │ │ │ │ ├── xmllib.py │ │ │ │ ├── xmlrpclib.py │ │ │ │ └── zipfile.py │ │ │ ├── Modules │ │ │ │ ├── _bisectmodule.c │ │ │ │ ├── _codecsmodule.c │ │ │ │ ├── _collectionsmodule.c │ │ │ │ ├── _csv.c │ │ │ │ ├── _elementtree.c │ │ │ │ ├── _functoolsmodule.c │ │ │ │ ├── _hashopenssl.c │ │ │ │ ├── _heapqmodule.c │ │ │ │ ├── _hotshot.c │ │ │ │ ├── _io │ │ │ │ │ ├── _iomodule.c │ │ │ │ │ ├── _iomodule.h │ │ │ │ │ ├── bufferedio.c │ │ │ │ │ ├── bytesio.c │ │ │ │ │ ├── fileio.c │ │ │ │ │ ├── iobase.c │ │ │ │ │ ├── stringio.c │ │ │ │ │ └── textio.c │ │ │ │ ├── _json.c │ │ │ │ ├── _localemodule.c │ │ │ │ ├── _lsprof.c │ │ │ │ ├── _math.c │ │ │ │ ├── _math.h │ │ │ │ ├── _randommodule.c │ │ │ │ ├── _sqlite │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── connection.c │ │ │ │ │ ├── connection.h │ │ │ │ │ ├── cursor.c │ │ │ │ │ ├── cursor.h │ │ │ │ │ ├── microprotocols.c │ │ │ │ │ ├── microprotocols.h │ │ │ │ │ ├── module.c │ │ │ │ │ ├── module.h │ │ │ │ │ ├── prepare_protocol.c │ │ │ │ │ ├── prepare_protocol.h │ │ │ │ │ ├── row.c │ │ │ │ │ ├── row.h │ │ │ │ │ ├── sqlitecompat.h │ │ │ │ │ ├── statement.c │ │ │ │ │ ├── statement.h │ │ │ │ │ ├── util.c │ │ │ │ │ └── util.h │ │ │ │ ├── _sre.c │ │ │ │ ├── _ssl.c │ │ │ │ ├── _struct.c │ │ │ │ ├── _testcapimodule.c │ │ │ │ ├── _weakref.c │ │ │ │ ├── addrinfo.h │ │ │ │ ├── arraymodule.c │ │ │ │ ├── binascii.c │ │ │ │ ├── bz2module.c │ │ │ │ ├── cPickle.c │ │ │ │ ├── cStringIO.c │ │ │ │ ├── cjkcodecs │ │ │ │ │ ├── README │ │ │ │ │ ├── _codecs_cn.c │ │ │ │ │ ├── _codecs_hk.c │ │ │ │ │ ├── _codecs_iso2022.c │ │ │ │ │ ├── _codecs_jp.c │ │ │ │ │ ├── _codecs_kr.c │ │ │ │ │ ├── _codecs_tw.c │ │ │ │ │ ├── alg_jisx0201.h │ │ │ │ │ ├── cjkcodecs.h │ │ │ │ │ ├── emu_jisx0213_2000.h │ │ │ │ │ ├── mappings_cn.h │ │ │ │ │ ├── mappings_hk.h │ │ │ │ │ ├── mappings_jisx0213_pair.h │ │ │ │ │ ├── mappings_jp.h │ │ │ │ │ ├── mappings_kr.h │ │ │ │ │ ├── mappings_tw.h │ │ │ │ │ ├── multibytecodec.c │ │ │ │ │ └── multibytecodec.h │ │ │ │ ├── cmathmodule.c │ │ │ │ ├── cryptmodule.c │ │ │ │ ├── datetimemodule.c │ │ │ │ ├── errnomodule.c │ │ │ │ ├── expat │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── amigaconfig.h │ │ │ │ │ ├── ascii.h │ │ │ │ │ ├── asciitab.h │ │ │ │ │ ├── expat.h │ │ │ │ │ ├── expat_config.h │ │ │ │ │ ├── expat_external.h │ │ │ │ │ ├── iasciitab.h │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── latin1tab.h │ │ │ │ │ ├── macconfig.h │ │ │ │ │ ├── nametab.h │ │ │ │ │ ├── pyexpatns.h │ │ │ │ │ ├── utf8tab.h │ │ │ │ │ ├── winconfig.h │ │ │ │ │ ├── xmlparse.c │ │ │ │ │ ├── xmlrole.c │ │ │ │ │ ├── xmlrole.h │ │ │ │ │ ├── xmltok.c │ │ │ │ │ ├── xmltok.h │ │ │ │ │ ├── xmltok_impl.c │ │ │ │ │ ├── xmltok_impl.h │ │ │ │ │ └── xmltok_ns.c │ │ │ │ ├── fcntlmodule.c │ │ │ │ ├── flmodule.c │ │ │ │ ├── fmmodule.c │ │ │ │ ├── fpectlmodule.c │ │ │ │ ├── fpetestmodule.c │ │ │ │ ├── future_builtins.c │ │ │ │ ├── gc_weakref.txt │ │ │ │ ├── gcmodule.c │ │ │ │ ├── getaddrinfo.c │ │ │ │ ├── getbuildinfo.c │ │ │ │ ├── getnameinfo.c │ │ │ │ ├── getpath.c │ │ │ │ ├── imageop.c │ │ │ │ ├── itertoolsmodule.c │ │ │ │ ├── main.c │ │ │ │ ├── mathmodule.c │ │ │ │ ├── md5.c │ │ │ │ ├── md5.h │ │ │ │ ├── md5module.c │ │ │ │ ├── operator.c │ │ │ │ ├── parsermodule.c │ │ │ │ ├── posixmodule.c │ │ │ │ ├── puremodule.c │ │ │ │ ├── pwdmodule.c │ │ │ │ ├── pyexpat.c │ │ │ │ ├── python.c │ │ │ │ ├── readline.c │ │ │ │ ├── resource.c │ │ │ │ ├── rotatingtree.c │ │ │ │ ├── rotatingtree.h │ │ │ │ ├── selectmodule.c │ │ │ │ ├── sha256module.c │ │ │ │ ├── sha512module.c │ │ │ │ ├── shamodule.c │ │ │ │ ├── signalmodule.c │ │ │ │ ├── socketmodule.c │ │ │ │ ├── socketmodule.h │ │ │ │ ├── sre.h │ │ │ │ ├── sre_constants.h │ │ │ │ ├── stropmodule.c │ │ │ │ ├── symtablemodule.c │ │ │ │ ├── testcapi_long.h │ │ │ │ ├── threadmodule.c │ │ │ │ ├── timemodule.c │ │ │ │ ├── timing.h │ │ │ │ ├── timingmodule.c │ │ │ │ ├── unicodedata.c │ │ │ │ ├── unicodedata_db.h │ │ │ │ ├── unicodename_db.h │ │ │ │ ├── xxmodule.c │ │ │ │ ├── xxsubtype.c │ │ │ │ ├── yuv.h │ │ │ │ ├── yuvconvert.c │ │ │ │ ├── zipimport.c │ │ │ │ ├── zlib │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── FAQ │ │ │ │ │ ├── INDEX │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── adler32.c │ │ │ │ │ ├── algorithm.txt │ │ │ │ │ ├── compress.c │ │ │ │ │ ├── configure │ │ │ │ │ ├── crc32.c │ │ │ │ │ ├── crc32.h │ │ │ │ │ ├── deflate.c │ │ │ │ │ ├── deflate.h │ │ │ │ │ ├── example.c │ │ │ │ │ ├── gzio.c │ │ │ │ │ ├── infback.c │ │ │ │ │ ├── inffast.c │ │ │ │ │ ├── inffast.h │ │ │ │ │ ├── inffixed.h │ │ │ │ │ ├── inflate.c │ │ │ │ │ ├── inflate.h │ │ │ │ │ ├── inftrees.c │ │ │ │ │ ├── inftrees.h │ │ │ │ │ ├── make_vms.com │ │ │ │ │ ├── minigzip.c │ │ │ │ │ ├── trees.c │ │ │ │ │ ├── trees.h │ │ │ │ │ ├── uncompr.c │ │ │ │ │ ├── zconf.h │ │ │ │ │ ├── zconf.in.h │ │ │ │ │ ├── zlib.3 │ │ │ │ │ ├── zlib.h │ │ │ │ │ ├── zutil.c │ │ │ │ │ └── zutil.h │ │ │ │ └── zlibmodule.c │ │ │ ├── Objects │ │ │ │ ├── abstract.c │ │ │ │ ├── boolobject.c │ │ │ │ ├── bufferobject.c │ │ │ │ ├── bytearrayobject.c │ │ │ │ ├── bytes_methods.c │ │ │ │ ├── capsule.c │ │ │ │ ├── cellobject.c │ │ │ │ ├── classobject.c │ │ │ │ ├── cobject.c │ │ │ │ ├── codeobject.c │ │ │ │ ├── complexobject.c │ │ │ │ ├── descrobject.c │ │ │ │ ├── dictnotes.txt │ │ │ │ ├── dictobject.c │ │ │ │ ├── enumobject.c │ │ │ │ ├── exceptions.c │ │ │ │ ├── fileobject.c │ │ │ │ ├── floatobject.c │ │ │ │ ├── frameobject.c │ │ │ │ ├── funcobject.c │ │ │ │ ├── genobject.c │ │ │ │ ├── intobject.c │ │ │ │ ├── iterobject.c │ │ │ │ ├── listobject.c │ │ │ │ ├── listsort.txt │ │ │ │ ├── lnotab_notes.txt │ │ │ │ ├── longobject.c │ │ │ │ ├── memoryobject.c │ │ │ │ ├── methodobject.c │ │ │ │ ├── moduleobject.c │ │ │ │ ├── object.c │ │ │ │ ├── obmalloc.c │ │ │ │ ├── rangeobject.c │ │ │ │ ├── setobject.c │ │ │ │ ├── sliceobject.c │ │ │ │ ├── stringlib │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── count.h │ │ │ │ │ ├── ctype.h │ │ │ │ │ ├── fastsearch.h │ │ │ │ │ ├── find.h │ │ │ │ │ ├── formatter.h │ │ │ │ │ ├── localeutil.h │ │ │ │ │ ├── partition.h │ │ │ │ │ ├── split.h │ │ │ │ │ ├── string_format.h │ │ │ │ │ ├── stringdefs.h │ │ │ │ │ ├── transmogrify.h │ │ │ │ │ └── unicodedefs.h │ │ │ │ ├── stringobject.c │ │ │ │ ├── structseq.c │ │ │ │ ├── tupleobject.c │ │ │ │ ├── typeobject.c │ │ │ │ ├── unicodectype.c │ │ │ │ ├── unicodeobject.c │ │ │ │ ├── unicodetype_db.h │ │ │ │ └── weakrefobject.c │ │ │ ├── Parser │ │ │ │ ├── Python.asdl │ │ │ │ ├── acceler.c │ │ │ │ ├── asdl.py │ │ │ │ ├── asdl_c.py │ │ │ │ ├── bitset.c │ │ │ │ ├── firstsets.c │ │ │ │ ├── grammar.c │ │ │ │ ├── grammar1.c │ │ │ │ ├── intrcheck.c │ │ │ │ ├── listnode.c │ │ │ │ ├── metagrammar.c │ │ │ │ ├── myreadline.c │ │ │ │ ├── node.c │ │ │ │ ├── parser.c │ │ │ │ ├── parser.h │ │ │ │ ├── parsetok.c │ │ │ │ ├── pgen.c │ │ │ │ ├── pgenmain.c │ │ │ │ ├── printgrammar.c │ │ │ │ ├── spark.py │ │ │ │ ├── tokenizer.c │ │ │ │ ├── tokenizer.h │ │ │ │ └── tokenizer_pgen.c │ │ │ ├── Python │ │ │ │ ├── Python-ast.c │ │ │ │ ├── _warnings.c │ │ │ │ ├── asdl.c │ │ │ │ ├── ast.c │ │ │ │ ├── atof.c │ │ │ │ ├── bltinmodule.c │ │ │ │ ├── ceval.c │ │ │ │ ├── codecs.c │ │ │ │ ├── compile.c │ │ │ │ ├── dtoa.c │ │ │ │ ├── dup2.c │ │ │ │ ├── dynload_aix.c │ │ │ │ ├── dynload_atheos.c │ │ │ │ ├── dynload_beos.c │ │ │ │ ├── dynload_dl.c │ │ │ │ ├── dynload_hpux.c │ │ │ │ ├── dynload_next.c │ │ │ │ ├── dynload_os2.c │ │ │ │ ├── dynload_shlib.c │ │ │ │ ├── dynload_stub.c │ │ │ │ ├── dynload_win.c │ │ │ │ ├── errors.c │ │ │ │ ├── formatter_string.c │ │ │ │ ├── formatter_unicode.c │ │ │ │ ├── frozen.c │ │ │ │ ├── frozenmain.c │ │ │ │ ├── future.c │ │ │ │ ├── getargs.c │ │ │ │ ├── getcompiler.c │ │ │ │ ├── getcopyright.c │ │ │ │ ├── getcwd.c │ │ │ │ ├── getopt.c │ │ │ │ ├── getplatform.c │ │ │ │ ├── getversion.c │ │ │ │ ├── graminit.c │ │ │ │ ├── import.c │ │ │ │ ├── importdl.c │ │ │ │ ├── importdl.h │ │ │ │ ├── mactoolboxglue.c │ │ │ │ ├── marshal.c │ │ │ │ ├── modsupport.c │ │ │ │ ├── mysnprintf.c │ │ │ │ ├── mystrtoul.c │ │ │ │ ├── peephole.c │ │ │ │ ├── pyarena.c │ │ │ │ ├── pyctype.c │ │ │ │ ├── pyfpe.c │ │ │ │ ├── pymath.c │ │ │ │ ├── pystate.c │ │ │ │ ├── pystrcmp.c │ │ │ │ ├── pystrtod.c │ │ │ │ ├── pythonrun.c │ │ │ │ ├── sigcheck.c │ │ │ │ ├── strdup.c │ │ │ │ ├── strtod.c │ │ │ │ ├── structmember.c │ │ │ │ ├── symtable.c │ │ │ │ ├── sysmodule.c │ │ │ │ ├── thread.c │ │ │ │ ├── thread_atheos.h │ │ │ │ ├── thread_beos.h │ │ │ │ ├── thread_cthread.h │ │ │ │ ├── thread_foobar.h │ │ │ │ ├── thread_lwp.h │ │ │ │ ├── thread_nt.h │ │ │ │ ├── thread_os2.h │ │ │ │ ├── thread_pth.h │ │ │ │ ├── thread_pthread.h │ │ │ │ ├── thread_sgi.h │ │ │ │ ├── thread_solaris.h │ │ │ │ ├── thread_wince.h │ │ │ │ └── traceback.c │ │ │ ├── README │ │ │ └── Tools │ │ │ │ ├── README │ │ │ │ ├── bgen │ │ │ │ ├── README │ │ │ │ └── bgen │ │ │ │ │ ├── bgen.py │ │ │ │ │ ├── bgenBuffer.py │ │ │ │ │ ├── bgenGenerator.py │ │ │ │ │ ├── bgenGeneratorGroup.py │ │ │ │ │ ├── bgenHeapBuffer.py │ │ │ │ │ ├── bgenModule.py │ │ │ │ │ ├── bgenObjectDefinition.py │ │ │ │ │ ├── bgenOutput.py │ │ │ │ │ ├── bgenStackBuffer.py │ │ │ │ │ ├── bgenStringBuffer.py │ │ │ │ │ ├── bgenType.py │ │ │ │ │ ├── bgenVariable.py │ │ │ │ │ ├── macsupport.py │ │ │ │ │ └── scantools.py │ │ │ │ ├── buildbot │ │ │ │ ├── README.tcltk-AMD64 │ │ │ │ ├── build-amd64.bat │ │ │ │ ├── build.bat │ │ │ │ ├── buildmsi.bat │ │ │ │ ├── clean-amd64.bat │ │ │ │ ├── clean.bat │ │ │ │ ├── external-amd64.bat │ │ │ │ ├── external-common.bat │ │ │ │ ├── external.bat │ │ │ │ ├── test-amd64.bat │ │ │ │ └── test.bat │ │ │ │ ├── ccbench │ │ │ │ └── ccbench.py │ │ │ │ ├── compiler │ │ │ │ ├── ACKS │ │ │ │ ├── README │ │ │ │ ├── ast.txt │ │ │ │ ├── astgen.py │ │ │ │ ├── compile.py │ │ │ │ ├── demo.py │ │ │ │ ├── dumppyc.py │ │ │ │ ├── regrtest.py │ │ │ │ └── stacktest.py │ │ │ │ ├── faqwiz │ │ │ │ ├── README │ │ │ │ ├── faqconf.py │ │ │ │ ├── faqcust.py │ │ │ │ ├── faqw.py │ │ │ │ ├── faqwiz.py │ │ │ │ └── move-faqwiz.sh │ │ │ │ ├── framer │ │ │ │ ├── README.txt │ │ │ │ ├── TODO.txt │ │ │ │ ├── example.py │ │ │ │ └── framer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bases.py │ │ │ │ │ ├── function.py │ │ │ │ │ ├── member.py │ │ │ │ │ ├── slots.py │ │ │ │ │ ├── struct.py │ │ │ │ │ ├── structparse.py │ │ │ │ │ ├── template.py │ │ │ │ │ └── util.py │ │ │ │ ├── freeze │ │ │ │ ├── README │ │ │ │ ├── bkfile.py │ │ │ │ ├── checkextensions.py │ │ │ │ ├── checkextensions_win32.py │ │ │ │ ├── extensions_win32.ini │ │ │ │ ├── freeze.py │ │ │ │ ├── hello.py │ │ │ │ ├── makeconfig.py │ │ │ │ ├── makefreeze.py │ │ │ │ ├── makemakefile.py │ │ │ │ ├── parsesetup.py │ │ │ │ ├── win32.html │ │ │ │ └── winmakemakefile.py │ │ │ │ ├── gdb │ │ │ │ └── libpython.py │ │ │ │ ├── i18n │ │ │ │ ├── makelocalealias.py │ │ │ │ ├── msgfmt.py │ │ │ │ └── pygettext.py │ │ │ │ ├── iobench │ │ │ │ └── iobench.py │ │ │ │ ├── msi │ │ │ │ ├── README.txt │ │ │ │ ├── crtlicense.txt │ │ │ │ ├── msi.py │ │ │ │ ├── msilib.py │ │ │ │ ├── msisupport.c │ │ │ │ ├── msisupport.mak │ │ │ │ ├── schema.py │ │ │ │ ├── sequence.py │ │ │ │ ├── uisample.py │ │ │ │ └── uuids.py │ │ │ │ ├── pybench │ │ │ │ ├── Arithmetic.py │ │ │ │ ├── Calls.py │ │ │ │ ├── CommandLine.py │ │ │ │ ├── Constructs.py │ │ │ │ ├── Dict.py │ │ │ │ ├── Exceptions.py │ │ │ │ ├── Imports.py │ │ │ │ ├── Instances.py │ │ │ │ ├── LICENSE │ │ │ │ ├── Lists.py │ │ │ │ ├── Lookups.py │ │ │ │ ├── NewInstances.py │ │ │ │ ├── Numbers.py │ │ │ │ ├── README │ │ │ │ ├── Setup.py │ │ │ │ ├── Strings.py │ │ │ │ ├── Tuples.py │ │ │ │ ├── Unicode.py │ │ │ │ ├── With.py │ │ │ │ ├── clockres.py │ │ │ │ ├── package │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── submodule.py │ │ │ │ ├── pybench.py │ │ │ │ └── systimes.py │ │ │ │ ├── scripts │ │ │ │ ├── 2to3 │ │ │ │ ├── README │ │ │ │ ├── analyze_dxp.py │ │ │ │ ├── byext.py │ │ │ │ ├── byteyears.py │ │ │ │ ├── checkappend.py │ │ │ │ ├── checkpyc.py │ │ │ │ ├── classfix.py │ │ │ │ ├── cleanfuture.py │ │ │ │ ├── combinerefs.py │ │ │ │ ├── copytime.py │ │ │ │ ├── crlf.py │ │ │ │ ├── cvsfiles.py │ │ │ │ ├── db2pickle.py │ │ │ │ ├── diff.py │ │ │ │ ├── dutree.doc │ │ │ │ ├── dutree.py │ │ │ │ ├── eptags.py │ │ │ │ ├── find_recursionlimit.py │ │ │ │ ├── finddiv.py │ │ │ │ ├── findlinksto.py │ │ │ │ ├── findnocoding.py │ │ │ │ ├── fixcid.py │ │ │ │ ├── fixdiv.py │ │ │ │ ├── fixheader.py │ │ │ │ ├── fixnotice.py │ │ │ │ ├── fixps.py │ │ │ │ ├── ftpmirror.py │ │ │ │ ├── google.py │ │ │ │ ├── gprof2html.py │ │ │ │ ├── h2py.py │ │ │ │ ├── hotshotmain.py │ │ │ │ ├── idle │ │ │ │ ├── ifdef.py │ │ │ │ ├── lfcr.py │ │ │ │ ├── linktree.py │ │ │ │ ├── lll.py │ │ │ │ ├── logmerge.py │ │ │ │ ├── mailerdaemon.py │ │ │ │ ├── md5sum.py │ │ │ │ ├── methfix.py │ │ │ │ ├── mkreal.py │ │ │ │ ├── ndiff.py │ │ │ │ ├── nm2def.py │ │ │ │ ├── objgraph.py │ │ │ │ ├── parseentities.py │ │ │ │ ├── patchcheck.py │ │ │ │ ├── pathfix.py │ │ │ │ ├── pdeps.py │ │ │ │ ├── pickle2db.py │ │ │ │ ├── pindent.py │ │ │ │ ├── ptags.py │ │ │ │ ├── pydoc │ │ │ │ ├── pydocgui.pyw │ │ │ │ ├── pysource.py │ │ │ │ ├── redemo.py │ │ │ │ ├── reindent-rst.py │ │ │ │ ├── reindent.py │ │ │ │ ├── rgrep.py │ │ │ │ ├── serve.py │ │ │ │ ├── setup.py │ │ │ │ ├── suff.py │ │ │ │ ├── svneol.py │ │ │ │ ├── texcheck.py │ │ │ │ ├── texi2html.py │ │ │ │ ├── treesync.py │ │ │ │ ├── untabify.py │ │ │ │ ├── which.py │ │ │ │ ├── win_add2path.py │ │ │ │ └── xxci.py │ │ │ │ ├── ssl │ │ │ │ └── get-remote-certificate.py │ │ │ │ ├── unicode │ │ │ │ ├── Makefile │ │ │ │ ├── comparecodecs.py │ │ │ │ ├── gencjkcodecs.py │ │ │ │ ├── gencodec.py │ │ │ │ ├── genwincodec.py │ │ │ │ ├── genwincodecs.bat │ │ │ │ ├── listcodecs.py │ │ │ │ ├── makeunicodedata.py │ │ │ │ ├── mkstringprep.py │ │ │ │ └── python-mappings │ │ │ │ │ ├── CP1140.TXT │ │ │ │ │ ├── KOI8-U.TXT │ │ │ │ │ └── TIS-620.TXT │ │ │ │ ├── versioncheck │ │ │ │ ├── README │ │ │ │ ├── _checkversion.py │ │ │ │ ├── checkversions.py │ │ │ │ └── pyversioncheck.py │ │ │ │ ├── webchecker │ │ │ │ ├── README │ │ │ │ ├── tktools.py │ │ │ │ ├── wcgui.py │ │ │ │ ├── wcmac.py │ │ │ │ ├── webchecker.py │ │ │ │ ├── websucker.py │ │ │ │ └── wsgui.py │ │ │ │ └── world │ │ │ │ ├── README │ │ │ │ └── world │ │ ├── PythonCore.inf │ │ ├── PythonReadMe.txt │ │ └── X64 │ │ │ └── pyconfig.h │ └── Sockets │ │ ├── DataSink │ │ ├── DataSink.c │ │ └── DataSink.inf │ │ ├── DataSource │ │ ├── DataSource.c │ │ └── DataSource.inf │ │ ├── GetAddrInfo │ │ ├── GetAddrInfo.c │ │ └── GetAddrInfo.inf │ │ ├── GetHostByAddr │ │ ├── GetHostByAddr.c │ │ └── GetHostByAddr.inf │ │ ├── GetHostByDns │ │ ├── GetHostByDns.c │ │ └── GetHostByDns.inf │ │ ├── GetHostByName │ │ ├── GetHostByName.c │ │ └── GetHostByName.inf │ │ ├── GetNameInfo │ │ ├── GetNameInfo.c │ │ └── GetNameInfo.inf │ │ ├── GetNetByAddr │ │ ├── GetNetByAddr.c │ │ └── GetNetByAddr.inf │ │ ├── GetNetByName │ │ ├── GetNetByName.c │ │ └── GetNetByName.inf │ │ ├── GetServByName │ │ ├── GetServByName.c │ │ └── GetServByName.inf │ │ ├── GetServByPort │ │ ├── GetServByPort.c │ │ └── GetServByPort.inf │ │ ├── OobRx │ │ ├── Main.c │ │ ├── OobRx.c │ │ ├── OobRx.h │ │ ├── OobRx.inf │ │ └── Windows │ │ │ ├── OobRx.sln │ │ │ ├── OobRx.suo │ │ │ ├── OobRx.vcproj │ │ │ └── main.c │ │ ├── OobTx │ │ ├── Main.c │ │ ├── OobTx.c │ │ ├── OobTx.h │ │ ├── OobTx.inf │ │ └── Windows │ │ │ ├── OobTx.sln │ │ │ ├── OobTx.suo │ │ │ ├── OobTx.vcproj │ │ │ └── main.c │ │ ├── RawIp4Rx │ │ ├── Main.c │ │ ├── RawIp4Rx.c │ │ ├── RawIp4Rx.h │ │ ├── RawIp4Rx.inf │ │ └── Windows │ │ │ ├── RawIp4Rx.sln │ │ │ ├── RawIp4Rx.vcproj │ │ │ └── main.c │ │ ├── RawIp4Tx │ │ ├── Main.c │ │ ├── RawIp4Tx.c │ │ ├── RawIp4Tx.h │ │ ├── RawIp4Tx.inf │ │ └── Windows │ │ │ ├── RawIp4Tx.sln │ │ │ ├── RawIp4Tx.vcproj │ │ │ └── main.c │ │ ├── ReadMe.txt │ │ ├── RecvDgram │ │ ├── RecvDgram.c │ │ └── RecvDgram.inf │ │ ├── SetHostName │ │ ├── SetHostName.c │ │ └── SetHostName.inf │ │ ├── SetSockOpt │ │ ├── SetSockOpt.c │ │ └── SetSockOpt.inf │ │ ├── Sockets.inc │ │ ├── TftpServer │ │ ├── TftpServer.c │ │ ├── TftpServer.h │ │ └── TftpServer.inf │ │ └── WebServer │ │ ├── ACPI.c │ │ ├── BootServicesTable.c │ │ ├── ConfigurationTable.c │ │ ├── DhcpOptions.c │ │ ├── DxeServicesTable.c │ │ ├── Exit.c │ │ ├── Firmware.c │ │ ├── HTTP.c │ │ ├── Handles.c │ │ ├── Hello.c │ │ ├── Index.c │ │ ├── MemoryMap.c │ │ ├── Mtrr.c │ │ ├── PageList.c │ │ ├── Ports.c │ │ ├── Reboot.c │ │ ├── RuntimeServicesTable.c │ │ ├── SystemTable.c │ │ ├── WebServer.c │ │ ├── WebServer.h │ │ └── WebServer.inf ├── Contributions.txt ├── ISSUES.txt ├── License.txt └── ReadMe.txt ├── ArmPkg ├── Application │ └── LinuxLoader │ │ ├── AArch64 │ │ ├── LinuxStarter.c │ │ └── LinuxStarterHelper.S │ │ ├── Arm │ │ ├── LinuxAtag.c │ │ ├── LinuxAtag.h │ │ └── LinuxStarter.c │ │ ├── LinuxLoader.c │ │ ├── LinuxLoader.h │ │ ├── LinuxLoader.inf │ │ ├── LinuxLoader.uni │ │ ├── LinuxLoaderEfiApp.c │ │ ├── LinuxLoaderFdt.c │ │ ├── LinuxLoaderHelper.c │ │ └── LinuxLoaderShellApp.c ├── ArmPkg.dec ├── ArmPkg.dsc ├── Contributions.txt ├── Drivers │ ├── ArmCpuLib │ │ ├── ArmCortexA15Lib │ │ │ ├── ArmCortexA15Lib.c │ │ │ └── ArmCortexA15Lib.inf │ │ ├── ArmCortexA5xLib │ │ │ ├── AArch64 │ │ │ │ └── ArmCortexA5xHelper.S │ │ │ ├── ArmCortexA5xLib.c │ │ │ └── ArmCortexA5xLib.inf │ │ ├── ArmCortexA8Lib │ │ │ ├── ArmCortexA8Lib.c │ │ │ └── ArmCortexA8Lib.inf │ │ ├── ArmCortexA9Lib │ │ │ ├── ArmCortexA9Helper.S │ │ │ ├── ArmCortexA9Helper.asm │ │ │ ├── ArmCortexA9Lib.c │ │ │ └── ArmCortexA9Lib.inf │ │ └── ArmCortexAEMv8Lib │ │ │ ├── ArmCortexAEMv8Lib.c │ │ │ └── ArmCortexAEMv8Lib.inf │ ├── ArmGic │ │ ├── ArmGicCommonDxe.c │ │ ├── ArmGicDxe.c │ │ ├── ArmGicDxe.h │ │ ├── ArmGicDxe.inf │ │ ├── ArmGicLib.c │ │ ├── ArmGicLib.inf │ │ ├── ArmGicNonSecLib.c │ │ ├── ArmGicSecLib.c │ │ ├── ArmGicSecLib.inf │ │ ├── GicV2 │ │ │ ├── ArmGicV2Dxe.c │ │ │ ├── ArmGicV2Lib.c │ │ │ ├── ArmGicV2NonSecLib.c │ │ │ └── ArmGicV2SecLib.c │ │ └── GicV3 │ │ │ ├── AArch64 │ │ │ └── ArmGicV3.S │ │ │ ├── Arm │ │ │ ├── ArmGicV3.S │ │ │ └── ArmGicV3.asm │ │ │ └── ArmGicV3Dxe.c │ ├── CpuDxe │ │ ├── AArch64 │ │ │ ├── Exception.c │ │ │ ├── ExceptionSupport.S │ │ │ └── Mmu.c │ │ ├── ArmV4 │ │ │ ├── ExceptionSupport.S │ │ │ └── ExceptionSupport.asm │ │ ├── ArmV6 │ │ │ ├── Exception.c │ │ │ ├── ExceptionSupport.S │ │ │ ├── ExceptionSupport.asm │ │ │ └── Mmu.c │ │ ├── CpuDxe.c │ │ ├── CpuDxe.h │ │ ├── CpuDxe.inf │ │ ├── CpuMmuCommon.c │ │ └── CpuMpCore.c │ ├── CpuPei │ │ ├── CpuPei.c │ │ └── CpuPei.inf │ ├── GenericWatchdogDxe │ │ ├── GenericWatchdog.h │ │ ├── GenericWatchdogDxe.c │ │ └── GenericWatchdogDxe.inf │ └── TimerDxe │ │ ├── TimerDxe.c │ │ └── TimerDxe.inf ├── Filesystem │ └── SemihostFs │ │ ├── Arm │ │ ├── SemihostFs.c │ │ └── SemihostFs.h │ │ └── SemihostFs.inf ├── Include │ ├── AsmMacroIoLib.h │ ├── AsmMacroIoLib.inc │ ├── AsmMacroIoLibV8.h │ ├── Chipset │ │ ├── AArch64.h │ │ ├── AArch64Mmu.h │ │ ├── ARM1176JZ-S.h │ │ ├── ARM926EJ-S.h │ │ ├── ArmAemV8.h │ │ ├── ArmArchTimer.h │ │ ├── ArmCortexA15.h │ │ ├── ArmCortexA5x.h │ │ ├── ArmCortexA9.h │ │ ├── ArmV7.h │ │ └── ArmV7Mmu.h │ ├── Guid │ │ └── ArmMpCoreInfo.h │ ├── IndustryStandard │ │ ├── ArmStdSmc.h │ │ └── ArmTrustZoneSmc.h │ ├── Library │ │ ├── ArmArchTimer.h │ │ ├── ArmCpuLib.h │ │ ├── ArmDisassemblerLib.h │ │ ├── ArmGenericTimerCounterLib.h │ │ ├── ArmGicArchLib.h │ │ ├── ArmGicLib.h │ │ ├── ArmHvcLib.h │ │ ├── ArmLib.h │ │ ├── ArmSmcLib.h │ │ ├── BdsLib.h │ │ ├── DefaultExceptionHandlerLib.h │ │ ├── SemihostLib.h │ │ └── UncachedMemoryAllocationLib.h │ ├── Ppi │ │ └── ArmMpCoreInfo.h │ └── Protocol │ │ └── VirtualUncachedPages.h ├── Library │ ├── ArmArchTimerLib │ │ ├── ArmArchTimerLib.c │ │ └── ArmArchTimerLib.inf │ ├── ArmCacheMaintenanceLib │ │ ├── ArmCacheMaintenanceLib.c │ │ └── ArmCacheMaintenanceLib.inf │ ├── ArmDisassemblerLib │ │ ├── Aarch64Disassembler.c │ │ ├── ArmDisassembler.c │ │ ├── ArmDisassemblerLib.inf │ │ └── ThumbDisassembler.c │ ├── ArmDmaLib │ │ ├── ArmDmaLib.c │ │ └── ArmDmaLib.inf │ ├── ArmGenericTimerPhyCounterLib │ │ ├── ArmGenericTimerPhyCounterLib.c │ │ └── ArmGenericTimerPhyCounterLib.inf │ ├── ArmGenericTimerVirtCounterLib │ │ ├── ArmGenericTimerVirtCounterLib.c │ │ └── ArmGenericTimerVirtCounterLib.inf │ ├── ArmGicArchLib │ │ ├── AArch64 │ │ │ └── ArmGicArchLib.c │ │ ├── Arm │ │ │ └── ArmGicArchLib.c │ │ └── ArmGicArchLib.inf │ ├── ArmGicArchSecLib │ │ ├── AArch64 │ │ │ └── ArmGicArchLib.c │ │ ├── Arm │ │ │ └── ArmGicArchLib.c │ │ └── ArmGicArchSecLib.inf │ ├── ArmHvcLib │ │ ├── AArch64 │ │ │ └── ArmHvc.S │ │ ├── Arm │ │ │ ├── ArmHvc.S │ │ │ └── ArmHvc.asm │ │ └── ArmHvcLib.inf │ ├── ArmLib │ │ ├── AArch64 │ │ │ ├── AArch64ArchTimer.c │ │ │ ├── AArch64ArchTimerSupport.S │ │ │ ├── AArch64Lib.c │ │ │ ├── AArch64Lib.h │ │ │ ├── AArch64Lib.inf │ │ │ ├── AArch64LibPrePi.inf │ │ │ ├── AArch64LibSec.inf │ │ │ ├── AArch64Mmu.c │ │ │ ├── AArch64Support.S │ │ │ └── ArmLibSupportV8.S │ │ ├── Arm9 │ │ │ ├── Arm9ArmLib.inf │ │ │ ├── Arm9ArmLibPrePi.inf │ │ │ ├── Arm9CacheInformation.c │ │ │ ├── Arm9Lib.c │ │ │ ├── Arm9Support.S │ │ │ └── Arm9Support.asm │ │ ├── ArmV7 │ │ │ ├── ArmLibSupportV7.S │ │ │ ├── ArmLibSupportV7.asm │ │ │ ├── ArmV7ArchTimer.c │ │ │ ├── ArmV7ArchTimerSupport.S │ │ │ ├── ArmV7ArchTimerSupport.asm │ │ │ ├── ArmV7Lib.c │ │ │ ├── ArmV7Lib.h │ │ │ ├── ArmV7Lib.inf │ │ │ ├── ArmV7LibPrePi.inf │ │ │ ├── ArmV7LibSec.inf │ │ │ ├── ArmV7Mmu.c │ │ │ ├── ArmV7Support.S │ │ │ └── ArmV7Support.asm │ │ ├── Common │ │ │ ├── AArch64 │ │ │ │ └── ArmLibSupport.S │ │ │ ├── Arm │ │ │ │ ├── ArmLibSupport.S │ │ │ │ └── ArmLibSupport.asm │ │ │ ├── ArmLib.c │ │ │ └── ArmLibPrivate.h │ │ └── Null │ │ │ ├── NullArmCacheInformation.c │ │ │ ├── NullArmLib.c │ │ │ └── NullArmLib.inf │ ├── ArmPsciResetSystemLib │ │ ├── ArmPsciResetSystemLib.c │ │ └── ArmPsciResetSystemLib.inf │ ├── ArmSmcLib │ │ ├── AArch64 │ │ │ └── ArmSmc.S │ │ ├── Arm │ │ │ ├── ArmSmc.S │ │ │ └── ArmSmc.asm │ │ └── ArmSmcLib.inf │ ├── ArmSmcLibNull │ │ ├── AArch64 │ │ │ └── ArmSmcNull.S │ │ ├── Arm │ │ │ ├── ArmSmcNull.S │ │ │ └── ArmSmcNull.asm │ │ └── ArmSmcLibNull.inf │ ├── BaseMemoryLibStm │ │ ├── AArch64 │ │ │ ├── CopyMem.c │ │ │ └── SetMem.c │ │ ├── Arm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── SetMem.S │ │ │ └── SetMem.asm │ │ ├── BaseMemoryLibStm.inf │ │ ├── CompareMemWrapper.c │ │ ├── CopyMem.c │ │ ├── CopyMemWrapper.c │ │ ├── MemLibGeneric.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibVstm │ │ ├── Arm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── SetMem.S │ │ │ └── SetMem.asm │ │ ├── BaseMemoryLibVstm.inf │ │ ├── CompareMemWrapper.c │ │ ├── CopyMem.c │ │ ├── CopyMemWrapper.c │ │ ├── MemLibGeneric.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ └── ZeroMemWrapper.c │ ├── BdsLib │ │ ├── BdsAppLoader.c │ │ ├── BdsFilePath.c │ │ ├── BdsHelper.c │ │ ├── BdsInternal.h │ │ ├── BdsLib.inf │ │ └── BdsLoadOption.c │ ├── CompilerIntrinsicsLib │ │ ├── AArch64 │ │ │ ├── memcpy.S │ │ │ └── memset.c │ │ ├── Arm │ │ │ ├── Llvm_int_lib.h │ │ │ ├── ashldi3.S │ │ │ ├── ashldi3.c │ │ │ ├── ashrdi3.S │ │ │ ├── ashrdi3.c │ │ │ ├── clzsi2.S │ │ │ ├── clzsi2.c │ │ │ ├── ctzsi2.S │ │ │ ├── ctzsi2.c │ │ │ ├── div.S │ │ │ ├── div.asm │ │ │ ├── divdi3.S │ │ │ ├── divdi3.c │ │ │ ├── divsi3.S │ │ │ ├── divsi3.c │ │ │ ├── lasr.asm │ │ │ ├── ldivmod.S │ │ │ ├── ldivmod.asm │ │ │ ├── llsl.S │ │ │ ├── llsl.asm │ │ │ ├── llsr.S │ │ │ ├── llsr.asm │ │ │ ├── lshrdi3.S │ │ │ ├── lshrdi3.c │ │ │ ├── memcpy.S │ │ │ ├── memcpy.asm │ │ │ ├── memcpy4.asm │ │ │ ├── memmove.S │ │ │ ├── memmove.asm │ │ │ ├── memset.S │ │ │ ├── memset.asm │ │ │ ├── moddi3.S │ │ │ ├── moddi3.c │ │ │ ├── modsi3.S │ │ │ ├── modsi3.c │ │ │ ├── muldi3.S │ │ │ ├── muldi3.c │ │ │ ├── mullu.S │ │ │ ├── mullu.asm │ │ │ ├── sourcery.S │ │ │ ├── switch.asm │ │ │ ├── switch16.S │ │ │ ├── switch32.S │ │ │ ├── switch8.S │ │ │ ├── switchu8.S │ │ │ ├── ucmpdi2.S │ │ │ ├── ucmpdi2.c │ │ │ ├── udivdi3.S │ │ │ ├── udivdi3.c │ │ │ ├── udivmoddi4.S │ │ │ ├── udivmoddi4.c │ │ │ ├── udivsi3.S │ │ │ ├── udivsi3.c │ │ │ ├── uldiv.S │ │ │ ├── uldiv.asm │ │ │ ├── uldivmod.c │ │ │ ├── umoddi3.S │ │ │ ├── umoddi3.c │ │ │ ├── umodsi3.S │ │ │ ├── umodsi3.c │ │ │ ├── uread.asm │ │ │ └── uwrite.asm │ │ └── CompilerIntrinsicsLib.inf │ ├── DebugAgentSymbolsBaseLib │ │ ├── AArch64 │ │ │ └── DebugAgentException.S │ │ ├── Arm │ │ │ ├── DebugAgentException.S │ │ │ └── DebugAgentException.asm │ │ ├── DebugAgentSymbolsBaseLib.c │ │ └── DebugAgentSymbolsBaseLib.inf │ ├── DebugPeCoffExtraActionLib │ │ ├── DebugPeCoffExtraActionLib.c │ │ └── DebugPeCoffExtraActionLib.inf │ ├── DebugUncachedMemoryAllocationLib │ │ ├── DebugUncachedMemoryAllocationLib.c │ │ └── DebugUncachedMemoryAllocationLib.inf │ ├── DefaultExceptionHandlerLib │ │ ├── AArch64 │ │ │ └── DefaultExceptionHandler.c │ │ ├── Arm │ │ │ └── DefaultExceptionHandler.c │ │ ├── DefaultExceptionHandlerBase.c │ │ ├── DefaultExceptionHandlerLib.inf │ │ ├── DefaultExceptionHandlerLibBase.inf │ │ └── DefaultExceptionHandlerUefi.c │ ├── PeiServicesTablePointerLib │ │ ├── PeiServicesTablePointer.c │ │ └── PeiServicesTablePointerLib.inf │ ├── RvdPeCoffExtraActionLib │ │ ├── RvdPeCoffExtraActionLib.c │ │ └── RvdPeCoffExtraActionLib.inf │ ├── SemiHostingDebugLib │ │ ├── DebugLib.c │ │ └── SemiHostingDebugLib.inf │ ├── SemiHostingSerialPortLib │ │ ├── SemiHostingSerialPortLib.inf │ │ └── SerialPortLib.c │ ├── SemihostLib │ │ ├── AArch64 │ │ │ └── GccSemihost.S │ │ ├── Arm │ │ │ └── GccSemihost.S │ │ ├── SemihostLib.c │ │ ├── SemihostLib.inf │ │ └── SemihostPrivate.h │ └── UncachedMemoryAllocationLib │ │ ├── UncachedMemoryAllocationLib.c │ │ └── UncachedMemoryAllocationLib.inf └── License.txt ├── ArmPlatformPkg ├── ArmJunoPkg │ ├── AcpiTables │ │ ├── AcpiSsdtRootPci.asl │ │ ├── AcpiTables.inf │ │ ├── Dsdt.asl │ │ ├── Facs.aslc │ │ ├── Fadt.aslc │ │ ├── Gtdt.aslc │ │ └── Madt.aslc │ ├── ArmJuno.dec │ ├── ArmJuno.dsc │ ├── ArmJuno.fdf │ ├── Drivers │ │ ├── ArmJunoDxe │ │ │ ├── AcpiTables.c │ │ │ ├── ArmJunoDxe.c │ │ │ ├── ArmJunoDxe.inf │ │ │ ├── ArmJunoDxeInternal.h │ │ │ ├── PciEmulation.c │ │ │ ├── PciEmulation.h │ │ │ └── PciRootBridgeIo.c │ │ └── PciHostBridgeDxe │ │ │ ├── PciHostBridge.c │ │ │ ├── PciHostBridge.h │ │ │ ├── PciHostBridgeDxe.inf │ │ │ ├── PciHostBridgeResourceAllocation.c │ │ │ ├── PciRootBridge.c │ │ │ ├── XPressRich3.c │ │ │ └── XPressRich3.h │ ├── Include │ │ └── ArmPlatform.h │ ├── Library │ │ ├── ArmJunoLib │ │ │ ├── AArch64 │ │ │ │ └── ArmJunoHelper.S │ │ │ ├── Arm │ │ │ │ └── ArmJunoHelper.S │ │ │ ├── ArmJuno.c │ │ │ ├── ArmJunoLib.inf │ │ │ └── ArmJunoMem.c │ │ └── NorFlashJunoLib │ │ │ ├── NorFlashJuno.c │ │ │ └── NorFlashJunoLib.inf │ └── Makefile ├── ArmPlatformPkg-2ndstage.dsc ├── ArmPlatformPkg-2ndstage.fdf ├── ArmPlatformPkg.dec ├── ArmPlatformPkg.dsc ├── ArmPlatformPkg.fdf ├── ArmVExpressPkg │ ├── ArmVExpress-CTA15-A7.dsc │ ├── ArmVExpress-CTA15-A7.fdf │ ├── ArmVExpress-FVP-AArch64.dsc │ ├── ArmVExpress-FVP-AArch64.fdf │ ├── ArmVExpress-RTSM-A15_MPCore.dsc │ ├── ArmVExpress-RTSM-A15_MPCore.fdf │ ├── ArmVExpress.dsc.inc │ ├── ArmVExpressDxe │ │ ├── AArch64 │ │ │ └── ArmFvpDxeAArch64.c │ │ ├── Arm │ │ │ └── ArmFvpDxeArm.c │ │ ├── ArmFvpDxe.c │ │ ├── ArmFvpDxe.inf │ │ ├── ArmHwDxe.c │ │ ├── ArmHwDxe.inf │ │ ├── ArmVExpressCommon.c │ │ └── ArmVExpressInternal.h │ ├── ArmVExpressFastBootDxe │ │ ├── ArmVExpressFastBoot.c │ │ └── ArmVExpressFastBootDxe.inf │ ├── ArmVExpressPkg.dec │ ├── Include │ │ ├── Platform │ │ │ ├── CTA15-A7 │ │ │ │ └── ArmPlatform.h │ │ │ ├── CTA9x4 │ │ │ │ └── ArmPlatform.h │ │ │ └── RTSM │ │ │ │ └── ArmPlatform.h │ │ └── VExpressMotherBoard.h │ ├── Library │ │ ├── ArmVExpressLibCTA15-A7 │ │ │ ├── ArmVExpressLib.inf │ │ │ ├── CTA15-A7.c │ │ │ ├── CTA15-A7Helper.S │ │ │ ├── CTA15-A7Helper.asm │ │ │ └── CTA15-A7Mem.c │ │ ├── ArmVExpressLibCTA9x4 │ │ │ ├── ArmVExpressLib.inf │ │ │ ├── ArmVExpressLibSec.inf │ │ │ ├── CTA9x4.c │ │ │ ├── CTA9x4Helper.S │ │ │ ├── CTA9x4Helper.asm │ │ │ └── CTA9x4Mem.c │ │ ├── ArmVExpressLibRTSM │ │ │ ├── AArch64 │ │ │ │ └── RTSMHelper.S │ │ │ ├── Arm │ │ │ │ ├── RTSMHelper.S │ │ │ │ └── RTSMHelper.asm │ │ │ ├── ArmVExpressFoundationLib.inf │ │ │ ├── ArmVExpressFoundationLibSec.inf │ │ │ ├── ArmVExpressLib.inf │ │ │ ├── ArmVExpressLibSec.inf │ │ │ ├── RTSM.c │ │ │ ├── RTSMFoundation.c │ │ │ ├── RTSMFoundationMem.c │ │ │ └── RTSMMem.c │ │ ├── ArmVExpressSecLibCTA9x4 │ │ │ ├── ArmVExpressSecLib.inf │ │ │ ├── CTA9x4Boot.S │ │ │ ├── CTA9x4Boot.asm │ │ │ └── CTA9x4Sec.c │ │ ├── ArmVExpressSecLibRTSM │ │ │ ├── AArch64 │ │ │ │ ├── GicV3.S │ │ │ │ ├── RTSMBoot.S │ │ │ │ └── RTSMFoundationBoot.S │ │ │ ├── Arm │ │ │ │ ├── GicV3.S │ │ │ │ ├── GicV3.asm │ │ │ │ ├── RTSMBoot.S │ │ │ │ └── RTSMBoot.asm │ │ │ ├── ArmVExpressFoundationSecLib.inf │ │ │ ├── ArmVExpressSecLib.inf │ │ │ ├── RTSMFoundationSec.c │ │ │ └── RTSMSec.c │ │ ├── ArmVExpressSysConfigLib │ │ │ ├── ArmVExpressSysConfig.c │ │ │ └── ArmVExpressSysConfigLib.inf │ │ ├── ArmVExpressSysConfigRuntimeLib │ │ │ ├── ArmVExpressSysConfigRuntimeLib.c │ │ │ └── ArmVExpressSysConfigRuntimeLib.inf │ │ ├── HdLcdArmVExpressLib │ │ │ ├── HdLcdArmVExpress.c │ │ │ └── HdLcdArmVExpressLib.inf │ │ ├── NorFlashArmVExpressLib │ │ │ ├── NorFlashArmVExpress.c │ │ │ └── NorFlashArmVExpressLib.inf │ │ ├── PL111LcdArmVExpressLib │ │ │ ├── PL111LcdArmVExpress.c │ │ │ └── PL111LcdArmVExpressLib.inf │ │ └── ResetSystemLib │ │ │ ├── ResetSystemLib.c │ │ │ └── ResetSystemLib.inf │ └── Scripts │ │ └── uefi-aarch64-bootstrap │ │ ├── LICENSE.TXT │ │ ├── Makefile │ │ ├── boot.S │ │ ├── model.lds.S │ │ ├── readme.html │ │ └── readme.txt ├── Bds │ ├── Bds.c │ ├── Bds.inf │ ├── BdsHelper.c │ ├── BdsInternal.h │ ├── BootLinux.c │ ├── BootMenu.c │ ├── BootOption.c │ └── BootOptionSupport.c ├── Contributions.txt ├── Documentation │ ├── ARM-EDK2-Overview.png │ ├── ArmPlatformLib-2nd-Stage.png │ ├── ArmPlatformLib-Full-Boot.png │ └── ArmPlatformPkg.txt ├── Drivers │ ├── ArmTrustZone │ │ ├── ArmTrustZone.c │ │ └── ArmTrustZone.inf │ ├── LcdGraphicsOutputDxe │ │ ├── HdLcd.c │ │ ├── HdLcdGraphicsOutputDxe.inf │ │ ├── LcdGraphicsOutputBlt.c │ │ ├── LcdGraphicsOutputDxe.c │ │ ├── LcdGraphicsOutputDxe.h │ │ ├── PL111Lcd.c │ │ └── PL111LcdGraphicsOutputDxe.inf │ ├── NorFlashDxe │ │ ├── NorFlashAuthenticatedDxe.inf │ │ ├── NorFlashAuthenticatedVariableDep.c │ │ ├── NorFlashBlockIoDxe.c │ │ ├── NorFlashDxe.c │ │ ├── NorFlashDxe.h │ │ ├── NorFlashDxe.inf │ │ ├── NorFlashFvbDxe.c │ │ └── NorFlashVariableDep.c │ ├── PL011Uart │ │ ├── PL011Uart.c │ │ └── PL011Uart.inf │ ├── PL061GpioDxe │ │ ├── PL061Gpio.c │ │ └── PL061GpioDxe.inf │ ├── PL180MciDxe │ │ ├── PL180Mci.c │ │ ├── PL180Mci.h │ │ └── PL180MciDxe.inf │ ├── PL301Axi │ │ ├── PL301Axi.c │ │ └── PL301Axi.inf │ ├── PL310L2Cache │ │ ├── PL310L2Cache.c │ │ └── PL310L2CacheSec.inf │ ├── PL34xDmc │ │ ├── PL341Dmc.c │ │ └── PL341Dmc.inf │ ├── PL35xSmc │ │ ├── InitializeSMC.S │ │ ├── InitializeSMC.asm │ │ └── PL35xSmc.inf │ ├── SP804TimerDxe │ │ ├── SP804Timer.c │ │ └── SP804TimerDxe.inf │ └── SP805WatchdogDxe │ │ ├── SP805Watchdog.c │ │ └── SP805WatchdogDxe.inf ├── FileSystem │ └── BootMonFs │ │ ├── BootMonFs.inf │ │ ├── BootMonFsApi.h │ │ ├── BootMonFsDir.c │ │ ├── BootMonFsEntryPoint.c │ │ ├── BootMonFsHw.h │ │ ├── BootMonFsImages.c │ │ ├── BootMonFsInternal.h │ │ ├── BootMonFsOpenClose.c │ │ ├── BootMonFsReadWrite.c │ │ └── BootMonFsUnsupported.c ├── Include │ ├── Drivers │ │ ├── ArmTrustzone.h │ │ ├── HdLcd.h │ │ ├── PL011Uart.h │ │ ├── PL031RealTimeClock.h │ │ ├── PL061Gpio.h │ │ ├── PL111Lcd.h │ │ ├── PL301Axi.h │ │ ├── PL310L2Cache.h │ │ ├── PL341Dmc.h │ │ ├── PL35xSmc.h │ │ ├── SP804Timer.h │ │ └── SP805Watchdog.h │ ├── Guid │ │ ├── ArmGlobalVariableHob.h │ │ └── BootMonFsFileInfo.h │ ├── Library │ │ ├── ArmPlatformGlobalVariableLib.h │ │ ├── ArmPlatformLib.h │ │ ├── ArmPlatformSecLib.h │ │ ├── ArmPlatformSysConfigLib.h │ │ ├── ArmShellCmdLib.h │ │ ├── ArmTrustedMonitorLib.h │ │ ├── LcdPlatformLib.h │ │ └── NorFlashPlatformLib.h │ └── Ppi │ │ └── ArmGlobalVariable.h ├── Library │ ├── ArmPlatformGlobalVariableLib │ │ ├── Dxe │ │ │ ├── DxeArmPlatformGlobalVariableLib.c │ │ │ └── DxeArmPlatformGlobalVariableLib.inf │ │ ├── Pei │ │ │ ├── PeiArmPlatformGlobalVariableLib.c │ │ │ └── PeiArmPlatformGlobalVariableLib.inf │ │ ├── PrePi │ │ │ ├── PrePiArmPlatformGlobalVariableLib.c │ │ │ └── PrePiArmPlatformGlobalVariableLib.inf │ │ └── Sec │ │ │ ├── SecArmPlatformGlobalVariableLib.c │ │ │ └── SecArmPlatformGlobalVariableLib.inf │ ├── ArmPlatformLibNull │ │ ├── AArch64 │ │ │ └── ArmPlatformHelper.S │ │ ├── Arm │ │ │ ├── ArmPlatformHelper.S │ │ │ └── ArmPlatformHelper.asm │ │ ├── ArmPlatformLibNull.c │ │ ├── ArmPlatformLibNull.inf │ │ ├── ArmPlatformLibNullMem.c │ │ └── ArmPlatformLibNullSec.inf │ ├── ArmPlatformSecLibNull │ │ ├── AArch64 │ │ │ └── ArmPlatformLibNullBoot.S │ │ ├── Arm │ │ │ ├── ArmPlatformLibNullBoot.S │ │ │ └── ArmPlatformLibNullBoot.asm │ │ ├── ArmPlatformLibNullSec.c │ │ └── ArmPlatformLibNullSec.inf │ ├── ArmPlatformStackLib │ │ ├── AArch64 │ │ │ └── ArmPlatformStackLib.S │ │ ├── Arm │ │ │ ├── ArmPlatformStackLib.S │ │ │ └── ArmPlatformStackLib.asm │ │ └── ArmPlatformStackLib.inf │ ├── ArmPlatformSysConfigLibNull │ │ ├── ArmPlatformSysConfigLibNull.c │ │ └── ArmPlatformSysConfigLibNull.inf │ ├── ArmShellCmdRunAxf │ │ ├── ArmShellCmdRunAxf.c │ │ ├── ArmShellCmdRunAxf.h │ │ ├── ArmShellCmdRunAxf.inf │ │ ├── ArmShellCmdRunAxf.uni │ │ ├── BootMonFsLoader.c │ │ ├── BootMonFsLoader.h │ │ ├── ElfLoader.c │ │ ├── ElfLoader.h │ │ ├── RunAxf.c │ │ ├── elf32.h │ │ ├── elf64.h │ │ └── elf_common.h │ ├── ArmTrustedMonitorLibNull │ │ ├── AArch64 │ │ │ └── ArmTrustedMonitorLibNull.c │ │ ├── Arm │ │ │ ├── ArmTrustedMonitorLibNull.c │ │ │ ├── MonitorTable.S │ │ │ └── MonitorTable.asm │ │ └── ArmTrustedMonitorLibNull.inf │ ├── DebugSecExtraActionLib │ │ ├── DebugSecExtraActionLib.c │ │ └── DebugSecExtraActionLib.inf │ ├── EblCmdLib │ │ ├── AArch64 │ │ │ └── EblCmdMmu.c │ │ ├── Arm │ │ │ └── EblCmdMmu.c │ │ ├── EblCmdFdt.c │ │ ├── EblCmdLib.c │ │ └── EblCmdLib.inf │ ├── L2X0CacheLibNull │ │ ├── L2X0Cache.c │ │ └── L2X0CacheLibNull.inf │ ├── PL011SerialPortLib │ │ ├── PL011SerialPortExtLib.c │ │ ├── PL011SerialPortExtLib.inf │ │ ├── PL011SerialPortLib.c │ │ └── PL011SerialPortLib.inf │ ├── PL031RealTimeClockLib │ │ ├── PL031RealTimeClockLib.c │ │ └── PL031RealTimeClockLib.inf │ ├── PeiServicesTablePointerLib │ │ ├── PeiServicesTablePointer.c │ │ └── PeiServicesTablePointerLib.inf │ ├── PlatformIntelBdsLib │ │ ├── IntelBdsPlatform.c │ │ ├── IntelBdsPlatform.h │ │ └── PlatformIntelBdsLib.inf │ ├── PrePiHobListPointerLib │ │ ├── PrePiHobListPointer.c │ │ └── PrePiHobListPointerLib.inf │ └── SP804TimerLib │ │ ├── SP804TimerLib.c │ │ └── SP804TimerLib.inf ├── License.txt ├── MemoryInitPei │ ├── MemoryInitPeiLib.c │ ├── MemoryInitPeiLib.inf │ ├── MemoryInitPeim.c │ └── MemoryInitPeim.inf ├── PlatformPei │ ├── PlatformPeiLib.c │ ├── PlatformPeiLib.inf │ ├── PlatformPeim.c │ └── PlatformPeim.inf ├── PrePeiCore │ ├── AArch64 │ │ ├── ArchPrePeiCore.c │ │ ├── Exception.S │ │ ├── Helper.S │ │ ├── PrePeiCoreEntryPoint.S │ │ └── SwitchStack.S │ ├── Arm │ │ ├── ArchPrePeiCore.c │ │ ├── Exception.S │ │ ├── Exception.asm │ │ ├── PrePeiCoreEntryPoint.S │ │ ├── PrePeiCoreEntryPoint.asm │ │ ├── SwitchStack.S │ │ └── SwitchStack.asm │ ├── MainMPCore.c │ ├── MainUniCore.c │ ├── PrePeiCore.c │ ├── PrePeiCore.h │ ├── PrePeiCoreMPCore.inf │ └── PrePeiCoreUniCore.inf ├── PrePi │ ├── AArch64 │ │ ├── ArchPrePi.c │ │ └── ModuleEntryPoint.S │ ├── Arm │ │ ├── ArchPrePi.c │ │ ├── ModuleEntryPoint.S │ │ └── ModuleEntryPoint.asm │ ├── LzmaDecompress.h │ ├── MainMPCore.c │ ├── MainUniCore.c │ ├── PeiMPCore.inf │ ├── PeiUniCore.inf │ ├── PrePi.c │ └── PrePi.h ├── Scripts │ ├── Ds5 │ │ ├── build_report.py │ │ ├── cmd_load_symbols.py │ │ ├── edk2_debugger.py │ │ ├── firmware_volume.py │ │ ├── profile.py │ │ └── system_table.py │ └── Makefile └── Sec │ ├── AArch64 │ ├── Arch.c │ ├── Helper.S │ └── SecEntryPoint.S │ ├── Arm │ ├── Arch.c │ ├── Helper.S │ ├── Helper.asm │ ├── SecEntryPoint.S │ └── SecEntryPoint.asm │ ├── Sec.c │ ├── Sec.inf │ └── SecInternal.h ├── ArmVirtPkg ├── ArmVirt.dsc.inc ├── ArmVirtPkg.dec ├── ArmVirtQemu.dsc ├── ArmVirtQemu.fdf ├── ArmVirtXen.dsc ├── ArmVirtXen.fdf ├── Contributions.txt ├── Include │ ├── ArmPlatform.h │ └── Guid │ │ └── EarlyPL011BaseAddress.h ├── Library │ ├── ArmVirtDxeHobLib │ │ ├── ArmVirtDxeHobLib.inf │ │ └── HobLib.c │ ├── ArmVirtGicArchLib │ │ ├── ArmVirtGicArchLib.c │ │ └── ArmVirtGicArchLib.inf │ ├── ArmVirtMemoryInitPeiLib │ │ ├── ArmVirtMemoryInitPeiLib.c │ │ └── ArmVirtMemoryInitPeiLib.inf │ ├── ArmVirtPlatformLib │ │ ├── AARCH64 │ │ │ └── VirtHelper.S │ │ ├── ARM │ │ │ ├── VirtHelper.S │ │ │ └── VirtHelper.asm │ │ ├── ArmVirtPlatformLib.inf │ │ ├── Virt.c │ │ └── VirtMem.c │ ├── ArmVirtPsciResetSystemLib │ │ ├── ArmVirtPsciResetSystemLib.c │ │ └── ArmVirtPsciResetSystemLib.inf │ ├── ArmXenRelocatablePlatformLib │ │ ├── AARCH64 │ │ │ ├── MemnodeParser.S │ │ │ └── RelocatableVirtHelper.S │ │ ├── ArmXenRelocatablePlatformLib.inf │ │ ├── RelocatableVirt.c │ │ └── XenVirtMem.c │ ├── BaseCachingPciExpressLib │ │ ├── BaseCachingPciExpressLib.inf │ │ └── PciExpressLib.c │ ├── FdtPL011SerialPortLib │ │ ├── EarlyFdtPL011SerialPortLib.c │ │ ├── EarlyFdtPL011SerialPortLib.inf │ │ ├── FdtPL011SerialPortLib.c │ │ └── FdtPL011SerialPortLib.inf │ ├── NorFlashQemuLib │ │ ├── NorFlashQemuLib.c │ │ └── NorFlashQemuLib.inf │ ├── PlatformIntelBdsLib │ │ ├── IntelBdsPlatform.c │ │ ├── IntelBdsPlatform.h │ │ ├── PlatformIntelBdsLib.inf │ │ └── QemuKernel.c │ ├── PlatformPeiLib │ │ ├── PlatformPeiLib.c │ │ └── PlatformPeiLib.inf │ ├── QemuFwCfgLib │ │ ├── QemuFwCfgLib.c │ │ └── QemuFwCfgLib.inf │ └── XenRealTimeClockLib │ │ ├── XenRealTimeClockLib.c │ │ └── XenRealTimeClockLib.inf ├── License.txt ├── PciHostBridgeDxe │ ├── PciHostBridge.c │ ├── PciHostBridge.h │ ├── PciHostBridgeDxe.inf │ └── PciRootBridgeIo.c ├── PrePi │ ├── AArch64 │ │ ├── ArchPrePi.c │ │ └── ModuleEntryPoint.S │ ├── ArmVirtPrePiUniCoreRelocatable.inf │ ├── LzmaDecompress.h │ ├── PrePi.c │ ├── PrePi.h │ └── Scripts │ │ └── PrePi-PIE.lds └── VirtFdtDxe │ ├── VirtFdtDxe.c │ └── VirtFdtDxe.inf ├── BaseTools ├── .gitignore ├── Bin │ ├── CYGWIN_NT-5.1-i686 │ │ ├── BootSectImage │ │ ├── BuildEnv │ │ ├── Ecc │ │ ├── EfiLdrImage │ │ ├── EfiRom │ │ ├── GenCrc32 │ │ ├── GenDepex │ │ ├── GenFds │ │ ├── GenFfs │ │ ├── GenFv │ │ ├── GenFw │ │ ├── GenPage │ │ ├── GenSec │ │ ├── GenVtf │ │ ├── GnuGenBootSector │ │ ├── LzmaCompress │ │ ├── LzmaF86Compress │ │ ├── RunBinToolFromBuildDir │ │ ├── RunToolFromSource │ │ ├── Split │ │ ├── TargetTool │ │ ├── TianoCompress │ │ ├── Trim │ │ ├── VfrCompile │ │ ├── VolInfo │ │ ├── armcc_wrapper.py │ │ └── build │ ├── Darwin-i386 │ │ └── Arm │ │ │ ├── DEBUG_XCODE31 │ │ │ └── CompilerIntrinsicsLib.lib │ │ │ ├── DEBUG_XCODE32 │ │ │ └── CompilerIntrinsicsLib.lib │ │ │ ├── RELEASE_XCODE31 │ │ │ └── CompilerIntrinsicsLib.lib │ │ │ └── RELEASE_XCODE32 │ │ │ └── CompilerIntrinsicsLib.lib │ └── externals.txt ├── BinWrappers │ └── PosixLike │ │ ├── BPDG │ │ ├── BootSectImage │ │ ├── Ecc │ │ ├── EfiLdrImage │ │ ├── EfiRom │ │ ├── GenCrc32 │ │ ├── GenDepex │ │ ├── GenFds │ │ ├── GenFfs │ │ ├── GenFv │ │ ├── GenFw │ │ ├── GenPage │ │ ├── GenPatchPcdTable │ │ ├── GenSec │ │ ├── GenVtf │ │ ├── GnuGenBootSector │ │ ├── LzmaCompress │ │ ├── LzmaF86Compress │ │ ├── PatchPcdValue │ │ ├── Split │ │ ├── TargetTool │ │ ├── TianoCompress │ │ ├── Trim │ │ ├── UPT │ │ ├── VfrCompile │ │ ├── VolInfo │ │ └── build ├── BuildEnv ├── BuildNotes.txt ├── Conf │ ├── Empty_Package_Information_Data_File.ini │ ├── FrameworkDatabase.template │ ├── ReadMe.txt │ ├── XMLSchema │ │ └── DistributionPackage.xsd │ ├── build_rule.template │ ├── target.template │ └── tools_def.template ├── Contributions.txt ├── GNUmakefile ├── License.txt ├── Makefile ├── ReadMe.txt ├── Scripts │ ├── ConvertMasmToNasm.py │ ├── GccBase.lds │ ├── SetVisualStudio.bat │ ├── ShowEnvironment.bat │ └── UpdateBuildVersions.py ├── Source │ ├── BinaryFiles.txt │ ├── C │ │ ├── BootSectImage │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── bootsectimage.c │ │ │ ├── fat.h │ │ │ └── mbr.h │ │ ├── Common │ │ │ ├── BasePeCoff.c │ │ │ ├── BinderFuncs.c │ │ │ ├── BinderFuncs.h │ │ │ ├── CommonLib.c │ │ │ ├── CommonLib.h │ │ │ ├── Compress.h │ │ │ ├── Crc32.c │ │ │ ├── Crc32.h │ │ │ ├── Decompress.c │ │ │ ├── Decompress.h │ │ │ ├── EfiCompress.c │ │ │ ├── EfiUtilityMsgs.c │ │ │ ├── EfiUtilityMsgs.h │ │ │ ├── FirmwareVolumeBuffer.c │ │ │ ├── FirmwareVolumeBufferLib.h │ │ │ ├── FvLib.c │ │ │ ├── FvLib.h │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── MemoryFile.c │ │ │ ├── MemoryFile.h │ │ │ ├── MyAlloc.c │ │ │ ├── MyAlloc.h │ │ │ ├── OsPath.c │ │ │ ├── OsPath.h │ │ │ ├── ParseGuidedSectionTools.c │ │ │ ├── ParseGuidedSectionTools.h │ │ │ ├── ParseInf.c │ │ │ ├── ParseInf.h │ │ │ ├── PeCoffLib.h │ │ │ ├── PeCoffLoaderEx.c │ │ │ ├── SimpleFileParsing.c │ │ │ ├── SimpleFileParsing.h │ │ │ ├── StringFuncs.c │ │ │ ├── StringFuncs.h │ │ │ ├── TianoCompress.c │ │ │ └── WinNtInclude.h │ │ ├── EfiLdrImage │ │ │ ├── EfiLdrImage.c │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── EfiRom │ │ │ ├── EfiRom.c │ │ │ ├── EfiRom.h │ │ │ ├── GNUmakefile │ │ │ └── Makefile │ │ ├── GNUmakefile │ │ ├── GenBootSector │ │ │ ├── FatFormat.h │ │ │ ├── GenBootSector.c │ │ │ ├── GetDrvNumOffset.c │ │ │ └── Makefile │ │ ├── GenCrc32 │ │ │ ├── GNUmakefile │ │ │ ├── GenCrc32.c │ │ │ └── Makefile │ │ ├── GenFfs │ │ │ ├── GNUmakefile │ │ │ ├── GenFfs.c │ │ │ └── Makefile │ │ ├── GenFv │ │ │ ├── GNUmakefile │ │ │ ├── GenFv.c │ │ │ ├── GenFvInternalLib.c │ │ │ ├── GenFvInternalLib.h │ │ │ └── Makefile │ │ ├── GenFw │ │ │ ├── Elf32Convert.c │ │ │ ├── Elf32Convert.h │ │ │ ├── Elf64Convert.c │ │ │ ├── Elf64Convert.h │ │ │ ├── ElfConvert.c │ │ │ ├── ElfConvert.h │ │ │ ├── GNUmakefile │ │ │ ├── GenFw.c │ │ │ ├── GenFw.h │ │ │ ├── Makefile │ │ │ ├── elf32.h │ │ │ ├── elf64.h │ │ │ └── elf_common.h │ │ ├── GenPage │ │ │ ├── GNUmakefile │ │ │ ├── GenPage.c │ │ │ ├── Makefile │ │ │ └── VirtualMemory.h │ │ ├── GenSec │ │ │ ├── GNUmakefile │ │ │ ├── GenSec.c │ │ │ └── Makefile │ │ ├── GenVtf │ │ │ ├── GNUmakefile │ │ │ ├── GenVtf.c │ │ │ ├── GenVtf.h │ │ │ └── Makefile │ │ ├── GnuGenBootSector │ │ │ ├── FatFormat.h │ │ │ ├── GNUmakefile │ │ │ └── GnuGenBootSector.c │ │ ├── Include │ │ │ ├── AArch64 │ │ │ │ └── ProcessorBind.h │ │ │ ├── Arm │ │ │ │ └── ProcessorBind.h │ │ │ ├── Common │ │ │ │ ├── BaseTypes.h │ │ │ │ ├── BuildVersion.h │ │ │ │ ├── MdeModuleHii.h │ │ │ │ ├── PiFirmwareFile.h │ │ │ │ ├── PiFirmwareVolume.h │ │ │ │ ├── UefiBaseTypes.h │ │ │ │ ├── UefiCapsule.h │ │ │ │ ├── UefiInternalFormRepresentation.h │ │ │ │ ├── UefiMultiPhase.h │ │ │ │ ├── VariableFormat.h │ │ │ │ └── WorkingBlockHeader.h │ │ │ ├── Guid │ │ │ │ ├── FfsSectionAlignmentPadding.h │ │ │ │ ├── PcAnsi.h │ │ │ │ └── PiFirmwareFileSystem.h │ │ │ ├── Ia32 │ │ │ │ └── ProcessorBind.h │ │ │ ├── IndustryStandard │ │ │ │ ├── Acpi.h │ │ │ │ ├── Acpi1_0.h │ │ │ │ ├── Acpi2_0.h │ │ │ │ ├── Acpi3_0.h │ │ │ │ ├── EfiPci.h │ │ │ │ ├── MemoryMappedConfigurationSpaceAccessTable.h │ │ │ │ ├── PeImage.h │ │ │ │ ├── pci22.h │ │ │ │ ├── pci23.h │ │ │ │ └── pci30.h │ │ │ ├── PPC64 │ │ │ │ └── ProcessorBind.h │ │ │ ├── Protocol │ │ │ │ ├── GraphicsOutput.h │ │ │ │ ├── GuidedSectionExtraction.h │ │ │ │ ├── HiiFramework.h │ │ │ │ └── UgaDraw.h │ │ │ └── X64 │ │ │ │ └── ProcessorBind.h │ │ ├── LzmaCompress │ │ │ ├── GNUmakefile │ │ │ ├── LZMA-SDK-README.txt │ │ │ ├── LzmaCompress.c │ │ │ ├── LzmaF86Compress.bat │ │ │ ├── Makefile │ │ │ └── Sdk │ │ │ │ ├── C │ │ │ │ ├── 7zFile.c │ │ │ │ ├── 7zFile.h │ │ │ │ ├── 7zStream.c │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Alloc.c │ │ │ │ ├── Alloc.h │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── CpuArch.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzFindMt.c │ │ │ │ ├── LzFindMt.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.c │ │ │ │ ├── LzmaEnc.h │ │ │ │ ├── Threads.c │ │ │ │ ├── Threads.h │ │ │ │ └── Types.h │ │ │ │ ├── history.txt │ │ │ │ └── lzma.txt │ │ ├── Makefile │ │ ├── Makefiles │ │ │ ├── NmakeSubdirs.bat │ │ │ ├── app.makefile │ │ │ ├── footer.makefile │ │ │ ├── header.makefile │ │ │ ├── lib.makefile │ │ │ ├── ms.app │ │ │ ├── ms.common │ │ │ ├── ms.lib │ │ │ └── ms.rule │ │ ├── PyEfiCompressor │ │ │ ├── EfiCompressor.c │ │ │ ├── Makefile │ │ │ └── setup.py │ │ ├── PyUtility │ │ │ ├── Makefile │ │ │ ├── PyUtility.c │ │ │ └── setup.py │ │ ├── Split │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ └── Split.c │ │ ├── TianoCompress │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── TianoCompress.c │ │ │ └── TianoCompress.h │ │ ├── VfrCompile │ │ │ ├── EfiVfr.h │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── Pccts │ │ │ │ ├── CHANGES_FROM_131.txt │ │ │ │ ├── CHANGES_FROM_133.txt │ │ │ │ ├── CHANGES_FROM_133_BEFORE_MR13.txt │ │ │ │ ├── CHANGES_SUMMARY.txt │ │ │ │ ├── KNOWN_PROBLEMS.txt │ │ │ │ ├── MPW_Read_Me │ │ │ │ ├── Makefile │ │ │ │ ├── NOTES.bcc │ │ │ │ ├── NOTES.msvc │ │ │ │ ├── README │ │ │ │ ├── RIGHTS │ │ │ │ ├── antlr │ │ │ │ │ ├── AntlrDDK.mak │ │ │ │ │ ├── AntlrMS.mak │ │ │ │ │ ├── AntlrPPC.mak │ │ │ │ │ ├── README │ │ │ │ │ ├── antlr.1 │ │ │ │ │ ├── antlr.c │ │ │ │ │ ├── antlr.g │ │ │ │ │ ├── antlr.r │ │ │ │ │ ├── antlr1.txt │ │ │ │ │ ├── bits.c │ │ │ │ │ ├── build.c │ │ │ │ │ ├── dumpcycles.c │ │ │ │ │ ├── dumpnode.c │ │ │ │ │ ├── egman.c │ │ │ │ │ ├── err.c │ │ │ │ │ ├── fcache.c │ │ │ │ │ ├── fset.c │ │ │ │ │ ├── fset2.c │ │ │ │ │ ├── gen.c │ │ │ │ │ ├── generic.h │ │ │ │ │ ├── globals.c │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── lex.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.cygwin │ │ │ │ │ ├── makefile1 │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── mode.h │ │ │ │ │ ├── mrhoist.c │ │ │ │ │ ├── parser.dlg │ │ │ │ │ ├── pred.c │ │ │ │ │ ├── proto.h │ │ │ │ │ ├── scan.c │ │ │ │ │ ├── stdpccts.h │ │ │ │ │ ├── syn.h │ │ │ │ │ └── tokens.h │ │ │ │ ├── dlg │ │ │ │ │ ├── DlgDDK.mak │ │ │ │ │ ├── DlgMS.mak │ │ │ │ │ ├── DlgPPC.mak │ │ │ │ │ ├── automata.c │ │ │ │ │ ├── dlg.1 │ │ │ │ │ ├── dlg.h │ │ │ │ │ ├── dlg.r │ │ │ │ │ ├── dlg1.txt │ │ │ │ │ ├── dlg_a.c │ │ │ │ │ ├── dlg_p.c │ │ │ │ │ ├── dlg_p.g │ │ │ │ │ ├── err.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── makefile │ │ │ │ │ ├── makefile.cygwin │ │ │ │ │ ├── makefile1 │ │ │ │ │ ├── mode.h │ │ │ │ │ ├── output.c │ │ │ │ │ ├── parser.dlg │ │ │ │ │ ├── relabel.c │ │ │ │ │ ├── stdpccts.h │ │ │ │ │ ├── support.c │ │ │ │ │ └── tokens.h │ │ │ │ ├── h │ │ │ │ │ ├── AParser.cpp │ │ │ │ │ ├── AParser.h │ │ │ │ │ ├── ASTBase.cpp │ │ │ │ │ ├── ASTBase.h │ │ │ │ │ ├── ATokPtr.h │ │ │ │ │ ├── ATokPtrImpl.h │ │ │ │ │ ├── AToken.h │ │ │ │ │ ├── ATokenBuffer.cpp │ │ │ │ │ ├── ATokenBuffer.h │ │ │ │ │ ├── ATokenStream.h │ │ │ │ │ ├── BufFileInput.cpp │ │ │ │ │ ├── BufFileInput.h │ │ │ │ │ ├── DLG_stream_input.h │ │ │ │ │ ├── DLexer.h │ │ │ │ │ ├── DLexerBase.cpp │ │ │ │ │ ├── DLexerBase.h │ │ │ │ │ ├── PBlackBox.h │ │ │ │ │ ├── PCCTSAST.cpp │ │ │ │ │ ├── PCCTSAST.h │ │ │ │ │ ├── SList.h │ │ │ │ │ ├── antlr.h │ │ │ │ │ ├── ast.c │ │ │ │ │ ├── ast.h │ │ │ │ │ ├── charbuf.h │ │ │ │ │ ├── charptr.c │ │ │ │ │ ├── charptr.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── dlgauto.h │ │ │ │ │ ├── dlgdef.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── int.h │ │ │ │ │ ├── pccts_assert.h │ │ │ │ │ ├── pccts_iostream.h │ │ │ │ │ ├── pccts_istream.h │ │ │ │ │ ├── pccts_setjmp.h │ │ │ │ │ ├── pccts_stdarg.h │ │ │ │ │ ├── pccts_stdio.h │ │ │ │ │ ├── pccts_stdlib.h │ │ │ │ │ ├── pccts_string.h │ │ │ │ │ ├── pcctscfg.h │ │ │ │ │ ├── pcnames.bat │ │ │ │ │ └── slist.cpp │ │ │ │ ├── history.ps │ │ │ │ ├── history.txt │ │ │ │ ├── makefile.old │ │ │ │ └── support │ │ │ │ │ ├── genmk │ │ │ │ │ ├── genmk.c │ │ │ │ │ ├── genmk_old.c │ │ │ │ │ └── makefile │ │ │ │ │ ├── rexpr │ │ │ │ │ ├── makefile │ │ │ │ │ ├── rexpr.c │ │ │ │ │ ├── rexpr.h │ │ │ │ │ └── test.c │ │ │ │ │ ├── set │ │ │ │ │ ├── set.c │ │ │ │ │ └── set.h │ │ │ │ │ └── sym │ │ │ │ │ ├── sym.c │ │ │ │ │ └── template.h │ │ │ ├── VfrCompiler.cpp │ │ │ ├── VfrCompiler.h │ │ │ ├── VfrError.cpp │ │ │ ├── VfrError.h │ │ │ ├── VfrFormPkg.cpp │ │ │ ├── VfrFormPkg.h │ │ │ ├── VfrSyntax.g │ │ │ ├── VfrUtilityLib.cpp │ │ │ └── VfrUtilityLib.h │ │ └── VolInfo │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── VolInfo.c │ │ │ └── VolInfo.h │ └── Python │ │ ├── AutoGen │ │ ├── AutoGen.py │ │ ├── BuildEngine.py │ │ ├── GenC.py │ │ ├── GenDepex.py │ │ ├── GenMake.py │ │ ├── GenPcdDb.py │ │ ├── InfSectionParser.py │ │ ├── StrGather.py │ │ ├── UniClassObject.py │ │ ├── ValidCheckingInfoObject.py │ │ └── __init__.py │ │ ├── BPDG │ │ ├── BPDG.py │ │ ├── GenVpd.py │ │ ├── StringTable.py │ │ └── __init__.py │ │ ├── Common │ │ ├── BuildToolError.py │ │ ├── BuildVersion.py │ │ ├── DataType.py │ │ ├── Database.py │ │ ├── DecClassObject.py │ │ ├── Dictionary.py │ │ ├── DscClassObject.py │ │ ├── EdkIIWorkspace.py │ │ ├── EdkIIWorkspaceBuild.py │ │ ├── EdkLogger.py │ │ ├── Expression.py │ │ ├── FdfClassObject.py │ │ ├── FdfParserLite.py │ │ ├── GlobalData.py │ │ ├── Identification.py │ │ ├── InfClassObject.py │ │ ├── LongFilePathOs.py │ │ ├── LongFilePathOsPath.py │ │ ├── LongFilePathSupport.py │ │ ├── MigrationUtilities.py │ │ ├── Misc.py │ │ ├── Parsing.py │ │ ├── PyUtility.pyd │ │ ├── RangeExpression.py │ │ ├── String.py │ │ ├── TargetTxtClassObject.py │ │ ├── ToolDefClassObject.py │ │ ├── VariableAttributes.py │ │ ├── VpdInfoFile.py │ │ └── __init__.py │ │ ├── CommonDataClass │ │ ├── CommonClass.py │ │ ├── DataClass.py │ │ ├── Exceptions.py │ │ ├── FdfClass.py │ │ ├── ModuleClass.py │ │ ├── PackageClass.py │ │ ├── PlatformClass.py │ │ └── __init__.py │ │ ├── Ecc │ │ ├── C.g │ │ ├── CLexer.py │ │ ├── CParser.py │ │ ├── Check.py │ │ ├── CodeFragment.py │ │ ├── CodeFragmentCollector.py │ │ ├── Configuration.py │ │ ├── Database.py │ │ ├── Ecc.py │ │ ├── EccGlobalData.py │ │ ├── EccToolError.py │ │ ├── Exception.py │ │ ├── FileProfile.py │ │ ├── MetaDataParser.py │ │ ├── MetaFileWorkspace │ │ │ ├── MetaDataTable.py │ │ │ ├── MetaFileParser.py │ │ │ ├── MetaFileTable.py │ │ │ └── __init__.py │ │ ├── ParserWarning.py │ │ ├── Xml │ │ │ ├── XmlRoutines.py │ │ │ └── __init__.py │ │ ├── __init__.py │ │ ├── c.py │ │ ├── config.ini │ │ └── exception.xml │ │ ├── Eot │ │ ├── CLexer.py │ │ ├── CParser.py │ │ ├── CodeFragment.py │ │ ├── CodeFragmentCollector.py │ │ ├── Database.py │ │ ├── EfiCompressor.pyd │ │ ├── Eot.py │ │ ├── EotGlobalData.py │ │ ├── EotToolError.py │ │ ├── FileProfile.py │ │ ├── FvImage.py │ │ ├── InfParserLite.py │ │ ├── LzmaCompressor.pyd │ │ ├── Parser.py │ │ ├── ParserWarning.py │ │ ├── Report.py │ │ ├── __init__.py │ │ └── c.py │ │ ├── GNUmakefile │ │ ├── GenFds │ │ ├── AprioriSection.py │ │ ├── Attribute.py │ │ ├── Capsule.py │ │ ├── CapsuleData.py │ │ ├── ComponentStatement.py │ │ ├── CompressSection.py │ │ ├── DataSection.py │ │ ├── DepexSection.py │ │ ├── EfiSection.py │ │ ├── Fd.py │ │ ├── FdfParser.py │ │ ├── Ffs.py │ │ ├── FfsFileStatement.py │ │ ├── FfsInfStatement.py │ │ ├── Fv.py │ │ ├── FvImageSection.py │ │ ├── GenFds.py │ │ ├── GenFdsGlobalVariable.py │ │ ├── GuidSection.py │ │ ├── OptRomFileStatement.py │ │ ├── OptRomInfStatement.py │ │ ├── OptionRom.py │ │ ├── Region.py │ │ ├── Rule.py │ │ ├── RuleComplexFile.py │ │ ├── RuleSimpleFile.py │ │ ├── Section.py │ │ ├── UiSection.py │ │ ├── VerSection.py │ │ ├── Vtf.py │ │ └── __init__.py │ │ ├── GenPatchPcdTable │ │ ├── GenPatchPcdTable.py │ │ └── __init__.py │ │ ├── Makefile │ │ ├── PatchPcdValue │ │ ├── PatchPcdValue.py │ │ └── __init__.py │ │ ├── Rsa2048Sha256Sign │ │ ├── Rsa2048Sha256GenerateKeys.py │ │ ├── Rsa2048Sha256Sign.py │ │ ├── TestSigningPrivateKey.pem │ │ ├── TestSigningPublicKey.bin │ │ └── TestSigningPublicKey.txt │ │ ├── Table │ │ ├── Table.py │ │ ├── TableDataModel.py │ │ ├── TableDec.py │ │ ├── TableDsc.py │ │ ├── TableEotReport.py │ │ ├── TableFdf.py │ │ ├── TableFile.py │ │ ├── TableFunction.py │ │ ├── TableIdentifier.py │ │ ├── TableInf.py │ │ ├── TablePcd.py │ │ ├── TableQuery.py │ │ ├── TableReport.py │ │ └── __init__.py │ │ ├── TargetTool │ │ ├── TargetTool.py │ │ └── __init__.py │ │ ├── Trim │ │ └── Trim.py │ │ ├── UPT │ │ ├── BuildVersion.py │ │ ├── Core │ │ │ ├── DependencyRules.py │ │ │ ├── DistributionPackageClass.py │ │ │ ├── FileHook.py │ │ │ ├── IpiDb.py │ │ │ ├── PackageFile.py │ │ │ └── __init__.py │ │ ├── Dll │ │ │ └── sqlite3.dll │ │ ├── GenMetaFile │ │ │ ├── GenDecFile.py │ │ │ ├── GenInfFile.py │ │ │ ├── GenMetaFileMisc.py │ │ │ ├── GenXmlFile.py │ │ │ └── __init__.py │ │ ├── InstallPkg.py │ │ ├── InventoryWs.py │ │ ├── Library │ │ │ ├── CommentGenerating.py │ │ │ ├── CommentParsing.py │ │ │ ├── DataType.py │ │ │ ├── ExpressionValidate.py │ │ │ ├── GlobalData.py │ │ │ ├── Misc.py │ │ │ ├── ParserValidate.py │ │ │ ├── Parsing.py │ │ │ ├── String.py │ │ │ ├── UniClassObject.py │ │ │ ├── Xml │ │ │ │ ├── XmlRoutines.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── Logger │ │ │ ├── Log.py │ │ │ ├── StringTable.py │ │ │ ├── ToolError.py │ │ │ └── __init__.py │ │ ├── Makefile │ │ ├── MkPkg.py │ │ ├── Object │ │ │ ├── POM │ │ │ │ ├── CommonObject.py │ │ │ │ ├── ModuleObject.py │ │ │ │ ├── PackageObject.py │ │ │ │ └── __init__.py │ │ │ ├── Parser │ │ │ │ ├── DecObject.py │ │ │ │ ├── InfBinaryObject.py │ │ │ │ ├── InfBuildOptionObject.py │ │ │ │ ├── InfCommonObject.py │ │ │ │ ├── InfDefineCommonObject.py │ │ │ │ ├── InfDefineObject.py │ │ │ │ ├── InfDepexObject.py │ │ │ │ ├── InfGuidObject.py │ │ │ │ ├── InfHeaderObject.py │ │ │ │ ├── InfLibraryClassesObject.py │ │ │ │ ├── InfMisc.py │ │ │ │ ├── InfPackagesObject.py │ │ │ │ ├── InfPcdObject.py │ │ │ │ ├── InfPpiObject.py │ │ │ │ ├── InfProtocolObject.py │ │ │ │ ├── InfSoucesObject.py │ │ │ │ ├── InfUserExtensionObject.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── Parser │ │ │ ├── DecParser.py │ │ │ ├── DecParserMisc.py │ │ │ ├── InfAsBuiltProcess.py │ │ │ ├── InfBinarySectionParser.py │ │ │ ├── InfBuildOptionSectionParser.py │ │ │ ├── InfDefineSectionParser.py │ │ │ ├── InfDepexSectionParser.py │ │ │ ├── InfGuidPpiProtocolSectionParser.py │ │ │ ├── InfLibrarySectionParser.py │ │ │ ├── InfPackageSectionParser.py │ │ │ ├── InfParser.py │ │ │ ├── InfParserMisc.py │ │ │ ├── InfPcdSectionParser.py │ │ │ ├── InfSectionParser.py │ │ │ ├── InfSourceSectionParser.py │ │ │ └── __init__.py │ │ ├── PomAdapter │ │ │ ├── DecPomAlignment.py │ │ │ ├── InfPomAlignment.py │ │ │ ├── InfPomAlignmentMisc.py │ │ │ └── __init__.py │ │ ├── ReplacePkg.py │ │ ├── RmPkg.py │ │ ├── UPT.py │ │ ├── UnitTest │ │ │ ├── CommentGeneratingUnitTest.py │ │ │ ├── CommentParsingUnitTest.py │ │ │ ├── DecParserTest.py │ │ │ ├── DecParserUnitTest.py │ │ │ └── InfBinarySectionTest.py │ │ └── Xml │ │ │ ├── CommonXml.py │ │ │ ├── GuidProtocolPpiXml.py │ │ │ ├── IniToXml.py │ │ │ ├── ModuleSurfaceAreaXml.py │ │ │ ├── PackageSurfaceAreaXml.py │ │ │ ├── PcdXml.py │ │ │ ├── XmlParser.py │ │ │ ├── XmlParserMisc.py │ │ │ └── __init__.py │ │ ├── Workspace │ │ ├── BuildClassObject.py │ │ ├── MetaDataTable.py │ │ ├── MetaFileCommentParser.py │ │ ├── MetaFileParser.py │ │ ├── MetaFileTable.py │ │ ├── WorkspaceCommon.py │ │ ├── WorkspaceDatabase.py │ │ └── __init__.py │ │ ├── build │ │ ├── BuildReport.py │ │ ├── __init__.py │ │ └── build.py │ │ └── sitecustomize.py ├── Tests │ ├── CToolsTests.py │ ├── CheckPythonSyntax.py │ ├── CheckUnicodeSourceFiles.py │ ├── GNUmakefile │ ├── PythonToolsTests.py │ ├── RunTests.py │ ├── TestTools.py │ └── TianoCompress.py ├── UserManuals │ ├── BootSectImage_Utility_Man_Page.rtf │ ├── Build_Utility_Man_Page.rtf │ ├── EfiLdrImage_Utility_Man_Page.rtf │ ├── EfiRom_Utility_Man_Page.rtf │ ├── Fpd2Dsc_Utility_Man_Page.rtf │ ├── GenBootSector_Utility_Man_Page.rtf │ ├── GenCrc32_Utility_Man_Page.rtf │ ├── GenDepex_Utility_Man_Page.rtf │ ├── GenFds_Utility_Man_Page.rtf │ ├── GenFfs_Utility_Man_Page.rtf │ ├── GenFv_Utility_Man_Page.rtf │ ├── GenFw_Utility_Man_Page.rtf │ ├── GenPage_Utility_Man_Page.rtf │ ├── GenPatchPcdTable_Utility_Man_Page.rtf │ ├── GenSec_Utility_Man_Page.rtf │ ├── GenVtf_Utility_Man_Page.rtf │ ├── Intel_UEFI_Packaging_Tool_Man_Page.rtf │ ├── LzmaCompress_Utility_Man_Page.rtf │ ├── Msa2Inf_Utility_Man_Page.rtf │ ├── PatchPcdValue_Utility_Man_Page.rtf │ ├── Spd2Dec_Utility_Man_Page.rtf │ ├── SplitFile_Utility_Man_Page.rtf │ ├── TargetTool_Utility_Man_Page.rtf │ ├── TianoCompress_Utility_Man_Page.rtf │ ├── Trim_Utility_Man_Page.rtf │ ├── UtilityManPage_template.rtf │ ├── VfrCompiler_Utility_Man_Page.rtf │ └── VolInfo_Utility_Man_Page.rtf ├── building-gcc.txt ├── gcc │ ├── README.txt │ └── mingw-gcc-build.py ├── get_vsvars.bat └── toolsetup.bat ├── BeagleBoardPkg ├── Bds │ ├── Bds.inf │ ├── BdsEntry.c │ ├── BdsEntry.h │ └── FirmwareVolume.c ├── BeagleBoardPkg.dec ├── BeagleBoardPkg.dsc ├── BeagleBoardPkg.fdf ├── ConfigurationHeader.bin ├── ConfigurationHeader.dat ├── Contributions.txt ├── Debugger_scripts │ ├── rvi_boot_from_ram.inc │ ├── rvi_convert_symbols.sh │ ├── rvi_dummy.axf │ ├── rvi_hw_setup.inc │ ├── rvi_load_symbols.inc │ ├── rvi_symbols_macros.inc │ ├── rvi_unload_symbols.inc │ ├── trace32_load_symbols.cmm │ └── trace32_load_symbols_cygwin.cmm ├── Include │ └── BeagleBoard.h ├── Library │ ├── BeagleBoardLib │ │ ├── BeagleBoard.c │ │ ├── BeagleBoardHelper.S │ │ ├── BeagleBoardHelper.asm │ │ ├── BeagleBoardLib.inf │ │ ├── BeagleBoardMem.c │ │ ├── Clock.c │ │ └── PadConfiguration.c │ ├── EblCmdLib │ │ ├── EblCmdLib.c │ │ └── EblCmdLib.inf │ ├── GdbSerialLib │ │ ├── GdbSerialLib.c │ │ └── GdbSerialLib.inf │ └── ResetSystemLib │ │ ├── ResetSystemLib.c │ │ └── ResetSystemLib.inf ├── License.txt ├── Sec │ ├── Arm │ │ ├── ModuleEntryPoint.S │ │ └── ModuleEntryPoint.asm │ ├── Cache.c │ ├── Clock.c │ ├── LzmaDecompress.h │ ├── PadConfiguration.c │ ├── Sec.c │ └── Sec.inf └── Tools │ ├── GNUmakefile │ ├── generate_image.c │ ├── makefile │ └── replace.c ├── BuildNotes2.txt ├── Conf ├── .gitignore └── ReadMe.txt ├── CorebootModulePkg ├── CbSupportDxe │ ├── CbSupportDxe.c │ ├── CbSupportDxe.h │ └── CbSupportDxe.inf ├── CbSupportPei │ ├── CbSupportPei.c │ ├── CbSupportPei.h │ └── CbSupportPei.inf ├── Contributions.txt ├── CorebootModulePkg.dec ├── Include │ ├── Coreboot.h │ ├── Guid │ │ ├── AcpiBoardInfoGuid.h │ │ ├── FrameBufferInfoGuid.h │ │ └── SystemTableInfoGuid.h │ └── Library │ │ └── CbParseLib.h ├── Library │ └── CbParseLib │ │ ├── CbParseLib.c │ │ └── CbParseLib.inf ├── License.txt └── SecCore │ ├── FindPeiCore.c │ ├── Ia32 │ ├── SecEntry.S │ ├── SecEntry.asm │ ├── Stack.S │ └── Stack.asm │ ├── SecCore.inf │ ├── SecMain.c │ └── SecMain.h ├── CorebootPayloadPkg ├── BuildAndIntegrationInstructions.txt ├── Contributions.txt ├── CorebootPayloadPkg.dec ├── CorebootPayloadPkg.fdf ├── CorebootPayloadPkgIa32.dsc ├── CorebootPayloadPkgIa32X64.dsc ├── FbGop │ ├── ComponentName.c │ ├── FbGop.c │ ├── FbGop.h │ └── FbGop.inf ├── Library │ ├── AcpiTimerLib │ │ ├── AcpiTimerLib.c │ │ └── AcpiTimerLib.inf │ ├── PlatformBdsLib │ │ ├── BdsPlatform.c │ │ ├── BdsPlatform.h │ │ ├── PlatformBdsLib.inf │ │ └── PlatformData.c │ ├── ResetSystemLib │ │ ├── ResetSystemLib.c │ │ └── ResetSystemLib.inf │ └── SerialPortLib │ │ ├── SerialPortLib.c │ │ └── SerialPortLib.inf ├── License.txt └── SerialDxe │ ├── SerialDxe.inf │ └── SerialIo.c ├── CryptoPkg ├── .gitignore ├── Application │ └── Cryptest │ │ ├── AuthenticodeVerify.c │ │ ├── BlockCipherVerify.c │ │ ├── Cryptest.c │ │ ├── Cryptest.h │ │ ├── Cryptest.inf │ │ ├── Cryptest.uni │ │ ├── CryptestExtra.uni │ │ ├── DhVerify.c │ │ ├── HashVerify.c │ │ ├── HmacVerify.c │ │ ├── RandVerify.c │ │ ├── RsaVerify.c │ │ ├── RsaVerify2.c │ │ └── TSVerify.c ├── Contributions.txt ├── CryptRuntimeDxe │ ├── CryptRuntime.c │ ├── CryptRuntime.h │ ├── CryptRuntimeDxe.inf │ ├── CryptRuntimeDxe.uni │ └── CryptRuntimeDxeExtra.uni ├── CryptoPkg.dec ├── CryptoPkg.dsc ├── CryptoPkg.uni ├── CryptoPkgExtra.uni ├── Include │ ├── Library │ │ └── BaseCryptLib.h │ ├── OpenSslSupport.h │ ├── Protocol │ │ └── RuntimeCrypt.h │ ├── arpa │ │ └── inet.h │ ├── assert.h │ ├── ctype.h │ ├── dirent.h │ ├── errno.h │ ├── limits.h │ ├── malloc.h │ ├── math.h │ ├── memory.h │ ├── netdb.h │ ├── netinet │ │ └── in.h │ ├── openssl │ │ └── README │ ├── sgtty.h │ ├── signal.h │ ├── stdarg.h │ ├── stddef.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── strings.h │ ├── sys │ │ ├── ioctl.h │ │ ├── param.h │ │ ├── socket.h │ │ ├── stat.h │ │ ├── time.h │ │ ├── times.h │ │ ├── types.h │ │ └── un.h │ ├── syslog.h │ ├── time.h │ └── unistd.h ├── Library │ ├── BaseCryptLib │ │ ├── BaseCryptLib.inf │ │ ├── BaseCryptLib.uni │ │ ├── Cipher │ │ │ ├── CryptAes.c │ │ │ ├── CryptAesNull.c │ │ │ ├── CryptArc4.c │ │ │ ├── CryptArc4Null.c │ │ │ ├── CryptTdes.c │ │ │ └── CryptTdesNull.c │ │ ├── Hash │ │ │ ├── CryptMd4.c │ │ │ ├── CryptMd4Null.c │ │ │ ├── CryptMd5.c │ │ │ ├── CryptSha1.c │ │ │ ├── CryptSha256.c │ │ │ ├── CryptSha512.c │ │ │ └── CryptSha512Null.c │ │ ├── Hmac │ │ │ ├── CryptHmacMd5.c │ │ │ ├── CryptHmacMd5Null.c │ │ │ ├── CryptHmacSha1.c │ │ │ └── CryptHmacSha1Null.c │ │ ├── InternalCryptLib.h │ │ ├── PeiCryptLib.inf │ │ ├── PeiCryptLib.uni │ │ ├── Pem │ │ │ ├── CryptPem.c │ │ │ └── CryptPemNull.c │ │ ├── Pk │ │ │ ├── CryptAuthenticode.c │ │ │ ├── CryptAuthenticodeNull.c │ │ │ ├── CryptDh.c │ │ │ ├── CryptDhNull.c │ │ │ ├── CryptPkcs7Sign.c │ │ │ ├── CryptPkcs7SignNull.c │ │ │ ├── CryptPkcs7Verify.c │ │ │ ├── CryptPkcs7VerifyNull.c │ │ │ ├── CryptRsaBasic.c │ │ │ ├── CryptRsaExt.c │ │ │ ├── CryptRsaExtNull.c │ │ │ ├── CryptTs.c │ │ │ ├── CryptTsNull.c │ │ │ ├── CryptX509.c │ │ │ └── CryptX509Null.c │ │ ├── Rand │ │ │ ├── CryptRand.c │ │ │ ├── CryptRandItc.c │ │ │ ├── CryptRandNull.c │ │ │ └── CryptRandTsc.c │ │ ├── RuntimeCryptLib.inf │ │ ├── RuntimeCryptLib.uni │ │ ├── SmmCryptLib.inf │ │ ├── SmmCryptLib.uni │ │ └── SysCall │ │ │ ├── BaseMemAllocation.c │ │ │ ├── ConstantTimeClock.c │ │ │ ├── CrtWrapper.c │ │ │ ├── HelperWrapper.c │ │ │ ├── RuntimeMemAllocation.c │ │ │ └── TimerWrapper.c │ ├── BaseCryptLibRuntimeCryptProtocol │ │ ├── BaseCryptLibRuntimeCryptProtocol.inf │ │ ├── BaseCryptLibRuntimeCryptProtocol.uni │ │ ├── Cipher │ │ │ ├── CryptAesNull.c │ │ │ ├── CryptArc4Null.c │ │ │ └── CryptTdesNull.c │ │ ├── Hash │ │ │ ├── CryptMd4Null.c │ │ │ ├── CryptMd5Null.c │ │ │ └── CryptSha1Null.c │ │ ├── Hmac │ │ │ ├── CryptHmacMd5Null.c │ │ │ └── CryptHmacSha1Null.c │ │ ├── InternalCryptLib.h │ │ ├── Pem │ │ │ └── CryptPemNull.c │ │ ├── Pk │ │ │ ├── CryptAuthenticodeNull.c │ │ │ ├── CryptDhNull.c │ │ │ ├── CryptPkcs7SignNull.c │ │ │ ├── CryptPkcs7VerifyNull.c │ │ │ ├── CryptRsaExtNull.c │ │ │ └── CryptX509Null.c │ │ ├── Rand │ │ │ └── CryptRandNull.c │ │ └── RuntimeDxeIpfCryptLib.c │ ├── IntrinsicLib │ │ ├── BaseIntrinsicLib.uni │ │ ├── CopyMem.c │ │ ├── Ia32 │ │ │ ├── MathLShiftS64.S │ │ │ ├── MathLShiftS64.c │ │ │ ├── MathRShiftU64.S │ │ │ └── MathRShiftU64.c │ │ ├── IntrinsicLib.inf │ │ └── MemoryIntrinsics.c │ └── OpensslLib │ │ ├── EDKII_openssl-1.0.2d.patch │ │ ├── Install.cmd │ │ ├── Install.sh │ │ ├── OpensslLib.inf │ │ ├── OpensslLib.uni │ │ ├── Patch-HOWTO.txt │ │ └── buildinf.h └── License.txt ├── DebugPkg ├── GdbSyms │ ├── GdbSyms.c │ └── GdbSyms.inf └── Scripts │ └── gdb_uefi.py ├── DuetPkg ├── AcpiResetDxe │ ├── Reset.c │ └── Reset.inf ├── BiosVideoThunkDxe │ ├── BiosVideo.c │ ├── BiosVideo.h │ ├── BiosVideo.inf │ ├── ComponentName.c │ ├── LegacyBiosThunk.c │ └── VesaBiosExtensions.h ├── BootSector │ ├── BootSector.inf │ ├── FILE.LST │ ├── GNUmakefile │ ├── Gpt.S │ ├── Gpt.asm │ ├── Makefile │ ├── Mbr.S │ ├── Mbr.asm │ ├── bin │ │ ├── Gpt.com │ │ ├── Mbr.com │ │ ├── Readme.txt │ │ ├── St16_64.com │ │ ├── St32_64.com │ │ ├── Start.com │ │ ├── Start16.com │ │ ├── Start32.com │ │ ├── Start64.com │ │ ├── bootsect.com │ │ ├── bs16.com │ │ ├── bs32.com │ │ ├── efi32.com │ │ ├── efi32.com2 │ │ ├── efi64.com │ │ └── efi64.com2 │ ├── bootsect.S │ ├── bootsect.asm │ ├── bs16.S │ ├── bs16.asm │ ├── bs32.S │ ├── bs32.asm │ ├── efi32.S │ ├── efi32.asm │ ├── efi64.S │ ├── efi64.asm │ ├── st16_64.S │ ├── st16_64.asm │ ├── st32_64.S │ ├── st32_64.asm │ ├── start.S │ ├── start.asm │ ├── start16.S │ ├── start16.asm │ ├── start32.S │ ├── start32.asm │ ├── start64.S │ └── start64.asm ├── Contributions.txt ├── CreateBootDisk.bat ├── CreateBootDisk.sh ├── DuetPkg.dec ├── DuetPkg.fdf ├── DuetPkgIa32.dsc ├── DuetPkgX64.dsc ├── DxeIpl │ ├── Debug.c │ ├── Debug.h │ ├── DxeInit.c │ ├── DxeIpl.h │ ├── DxeIpl.inf │ ├── HobGeneration.c │ ├── HobGeneration.h │ ├── Ia32 │ │ ├── EnterDxeCore.c │ │ ├── Paging.c │ │ └── VirtualMemory.h │ ├── LegacyTable.c │ ├── LegacyTable.h │ ├── PpisNeededByDxeCore.c │ ├── PpisNeededByDxeCore.h │ ├── SerialStatusCode.c │ ├── SerialStatusCode.h │ └── X64 │ │ ├── EnterDxeCore.c │ │ ├── Paging.c │ │ └── VirtualMemory.h ├── EfiLdr │ ├── Debug.c │ ├── Debug.h │ ├── EfiLdr.h │ ├── EfiLdr.inf │ ├── EfiLdrHandoff.h │ ├── EfiLoader.c │ ├── LzmaDecompress.h │ ├── PeLoader.c │ ├── PeLoader.h │ ├── Support.c │ ├── Support.h │ ├── TianoDecompress.c │ ├── TianoDecompress.h │ └── efildr.c ├── FSVariable │ ├── FSVariable.c │ ├── FSVariable.h │ ├── FSVariable.inf │ ├── FileStorage.c │ ├── MemStorage.c │ └── VariableStorage.h ├── FvbRuntimeService │ ├── DUETFwh.inf │ ├── FWBlockService.c │ ├── FileIo.c │ ├── FileIo.h │ ├── FvbInfo.c │ └── FwBlockService.h ├── GetVariables.bat ├── Include │ ├── EfiFlashMap.h │ ├── EfiLdrHandoff.h │ ├── FlashLayout.h │ └── Guid │ │ ├── AcpiDescription.h │ │ ├── ConsoleOutConfig.h │ │ ├── DxeCoreFileName.h │ │ ├── FlashMapHob.h │ │ ├── LdrMemoryDescriptor.h │ │ ├── PciExpressBaseAddress.h │ │ └── PciOptionRomTable.h ├── LegacyMetronome │ ├── Metronome.c │ ├── Metronome.h │ └── Metronome.inf ├── Library │ ├── DuetBdsLib │ │ ├── BdsPlatform.c │ │ ├── BdsPlatform.h │ │ ├── PlatformBds.inf │ │ └── PlatformData.c │ ├── DuetTimerLib │ │ ├── DuetTimerLib.inf │ │ └── X86TimerLib.c │ └── DxeCoreReportStatusCodeLibFromHob │ │ ├── DxeCoreReportStatusCodeLibFromHob.inf │ │ ├── DxeSupport.c │ │ ├── ReportStatusCodeLib.c │ │ └── ReportStatusCodeLibInternal.h ├── License.txt ├── PciBusNoEnumerationDxe │ ├── ComponentName.c │ ├── PciBus.c │ ├── PciBus.h │ ├── PciBusNoEnumeration.inf │ ├── PciCommand.c │ ├── PciCommand.h │ ├── PciDeviceSupport.c │ ├── PciDeviceSupport.h │ ├── PciDriverOverride.c │ ├── PciDriverOverride.h │ ├── PciEnumerator.c │ ├── PciEnumerator.h │ ├── PciEnumeratorSupport.c │ ├── PciEnumeratorSupport.h │ ├── PciIo.c │ ├── PciIo.h │ ├── PciOptionRomSupport.c │ ├── PciOptionRomSupport.h │ ├── PciPowerManagement.c │ ├── PciPowerManagement.h │ ├── PciRomTable.c │ └── PciRomTable.h ├── PciRootBridgeNoEnumerationDxe │ ├── DeviceIo.c │ ├── DeviceIo.h │ ├── Ia32 │ │ └── PcatIo.c │ ├── Ipf │ │ └── PcatIo.c │ ├── PcatPciRootBridge.c │ ├── PcatPciRootBridge.h │ ├── PcatPciRootBridgeDevicePath.c │ ├── PcatPciRootBridgeIo.c │ ├── PciRootBridgeNoEnumeration.inf │ └── X64 │ │ └── PcatIo.c ├── PostBuild.bat ├── PostBuild.sh ├── ReadMe.txt ├── SataControllerDxe │ ├── ComponentName.c │ ├── SataController.c │ ├── SataController.h │ └── SataControllerDxe.inf ├── SmbiosGenDxe │ ├── SmbiosGen.c │ ├── SmbiosGen.h │ ├── SmbiosGen.inf │ └── SmbiosGenStrings.uni ├── build32.sh └── build64.sh ├── Edk2Setup.bat ├── EdkCompatibilityPkg ├── Compatibility │ ├── AcpiVariableHobOnSmramReserveHobThunk │ │ ├── AcpiVariableHobOnSmramReserveHobThunk.c │ │ └── AcpiVariableHobOnSmramReserveHobThunk.inf │ ├── BootScriptSaveOnS3SaveStateThunk │ │ ├── BootScriptSaveOnS3SaveStateThunk.inf │ │ ├── IA32 │ │ │ └── DispatchExecute.c │ │ ├── ScriptSave.c │ │ ├── ScriptSave.h │ │ └── X64 │ │ │ ├── AsmDispatchExecute.S │ │ │ ├── AsmDispatchExecute.asm │ │ │ └── DispatchExecute.c │ ├── BootScriptThunkHelper │ │ ├── BootScriptThunkHelper.c │ │ └── BootScriptThunkHelper.inf │ ├── CpuIo2OnCpuIoThunk │ │ ├── CpuIo2OnCpuIoThunk.c │ │ ├── CpuIo2OnCpuIoThunk.h │ │ └── CpuIo2OnCpuIoThunk.inf │ ├── DeviceIoOnPciRootBridgeIoThunk │ │ ├── DeviceIoOnPciRootBridgeIoThunk.c │ │ └── DeviceIoOnPciRootBridgeIoThunk.inf │ ├── DxeSmmReadyToLockOnExitPmAuthThunk │ │ ├── DxeSmmReadyToLockOnExitPmAuthThunk.c │ │ ├── DxeSmmReadyToLockOnExitPmAuthThunk.h │ │ └── DxeSmmReadyToLockOnExitPmAuthThunk.inf │ ├── FrameworkHiiOnUefiHiiThunk │ │ ├── ConfigAccess.c │ │ ├── ConfigAccess.h │ │ ├── Fonts.c │ │ ├── Forms.c │ │ ├── FrameworkHiiOnUefiHiiThunk.inf │ │ ├── HiiDatabase.c │ │ ├── HiiDatabase.h │ │ ├── HiiHandle.c │ │ ├── HiiHandle.h │ │ ├── Keyboard.c │ │ ├── OpcodeCreation.c │ │ ├── Package.c │ │ ├── SetupBrowser.c │ │ ├── SetupBrowser.h │ │ ├── Strings.c │ │ ├── Strings.uni │ │ ├── UefiIfrDefault.c │ │ ├── UefiIfrDefault.h │ │ ├── UefiIfrParser.c │ │ ├── UefiIfrParser.h │ │ ├── UefiIfrParserExpression.c │ │ ├── UefiIfrParserExpression.h │ │ ├── Utility.c │ │ └── Utility.h │ ├── FrameworkSmmStatusCodeOnPiSmmStatusCodeThunk │ │ ├── FrameworkSmmStatusCodeOnPiSmmStatusCodeThunk.c │ │ └── FrameworkSmmStatusCodeOnPiSmmStatusCodeThunk.inf │ ├── Fv2OnFvThunk │ │ ├── Fv2OnFvThunk.c │ │ └── Fv2OnFvThunk.inf │ ├── FvFileLoaderOnLoadFileThunk │ │ ├── FvFileLoaderOnLoadFileThunk.c │ │ └── FvFileLoaderOnLoadFileThunk.inf │ ├── FvOnFv2Thunk │ │ ├── FvOnFv2Thunk.c │ │ └── FvOnFv2Thunk.inf │ ├── Include │ │ ├── Guid │ │ │ ├── BootScriptThunkData.h │ │ │ ├── BootState.h │ │ │ ├── FrameworkBdsFrontPageFormSet.h │ │ │ └── SmmBaseThunkCommunication.h │ │ ├── Library │ │ │ └── LanguageLib.h │ │ ├── Ppi │ │ │ └── EcpPciCfg.h │ │ └── Protocol │ │ │ ├── Print.h │ │ │ └── SmmBaseHelperReady.h │ ├── LegacyRegion2OnLegacyRegionThunk │ │ ├── LegacyRegion2OnLegacyRegionThunk.c │ │ ├── LegacyRegion2OnLegacyRegionThunk.h │ │ └── LegacyRegion2OnLegacyRegionThunk.inf │ ├── Library │ │ └── UefiLanguageLib │ │ │ ├── UefiLanguageLib.c │ │ │ └── UefiLanguageLib.inf │ ├── MpServicesOnFrameworkMpServicesThunk │ │ ├── IA32 │ │ │ ├── AsmInclude.inc │ │ │ ├── MpFuncs.S │ │ │ └── MpFuncs.asm │ │ ├── MpServicesOnFrameworkMpServicesThunk.c │ │ ├── MpServicesOnFrameworkMpServicesThunk.h │ │ ├── MpServicesOnFrameworkMpServicesThunk.inf │ │ └── X64 │ │ │ ├── AsmInclude.inc │ │ │ ├── MpFuncs.S │ │ │ └── MpFuncs.asm │ ├── PciCfg2OnPciCfgThunk │ │ ├── PciCfg2OnPciCfgThunk.c │ │ └── PciCfg2OnPciCfgThunk.inf │ ├── PciCfgOnPciCfg2Thunk │ │ ├── PciCfgOnPciCfg2Thunk.c │ │ └── PciCfgOnPciCfg2Thunk.inf │ ├── PiSmbiosRecordOnDataHubSmbiosRecordThunk │ │ ├── ConvLib.c │ │ ├── ConvTable.c │ │ ├── MemoryConv.c │ │ ├── MiscConv.c │ │ ├── PiSmbiosRecordOnDataHubSmbiosRecordThunk.inf │ │ ├── ProcessorConv.c │ │ ├── Thunk.c │ │ ├── Thunk.h │ │ └── Translate.c │ ├── PiSmmStatusCodeOnFrameworkSmmStatusCodeThunk │ │ ├── PiSmmStatusCodeOnFrameworkSmmStatusCodeThunk.c │ │ ├── PiSmmStatusCodeOnFrameworkSmmStatusCodeThunk.h │ │ └── PiSmmStatusCodeOnFrameworkSmmStatusCodeThunk.inf │ ├── PrintThunk │ │ ├── PrintThunk.c │ │ └── PrintThunk.inf │ ├── ReadOnlyVariable2OnReadOnlyVariableThunk │ │ ├── ReadOnlyVariable2OnReadOnlyVariableThunk.c │ │ └── ReadOnlyVariable2OnReadOnlyVariableThunk.inf │ ├── ReadOnlyVariableOnReadOnlyVariable2Thunk │ │ ├── ReadOnlyVariableOnReadOnlyVariable2Thunk.c │ │ └── ReadOnlyVariableOnReadOnlyVariable2Thunk.inf │ ├── SmmAccess2OnSmmAccessThunk │ │ ├── SmmAccess2OnSmmAccessThunk.c │ │ ├── SmmAccess2OnSmmAccessThunk.h │ │ └── SmmAccess2OnSmmAccessThunk.inf │ ├── SmmBaseHelper │ │ ├── PageFaultHandler.c │ │ ├── SmmBaseHelper.c │ │ ├── SmmBaseHelper.inf │ │ ├── SmramProfileRecord.c │ │ └── X64 │ │ │ ├── PageFaultHandler.S │ │ │ └── PageFaultHandler.asm │ ├── SmmBaseOnSmmBase2Thunk │ │ ├── SmmBaseOnSmmBase2Thunk.c │ │ └── SmmBaseOnSmmBase2Thunk.inf │ ├── SmmControl2OnSmmControlThunk │ │ ├── SmmControl2OnSmmControlThunk.c │ │ ├── SmmControl2OnSmmControlThunk.h │ │ └── SmmControl2OnSmmControlThunk.inf │ ├── Uc2OnUcThunk │ │ ├── Uc2OnUcThunk.c │ │ └── Uc2OnUcThunk.inf │ └── UcOnUc2Thunk │ │ ├── UcOnUc2Thunk.c │ │ └── UcOnUc2Thunk.inf ├── Contributions.txt ├── EdkCompatibilityPkg.dec ├── EdkCompatibilityPkg.dsc ├── Foundation │ ├── Core │ │ └── Dxe │ │ │ └── ArchProtocol │ │ │ ├── ArchProtocolLib.inf │ │ │ ├── Bds │ │ │ ├── Bds.c │ │ │ └── Bds.h │ │ │ ├── Capsule │ │ │ ├── Capsule.c │ │ │ └── Capsule.h │ │ │ ├── Cpu │ │ │ ├── Cpu.c │ │ │ └── Cpu.h │ │ │ ├── Metronome │ │ │ ├── Metronome.c │ │ │ └── Metronome.h │ │ │ ├── MonotonicCounter │ │ │ ├── MonotonicCounter.c │ │ │ └── MonotonicCounter.h │ │ │ ├── RealTimeClock │ │ │ ├── RealTimeClock.c │ │ │ └── RealTimeClock.h │ │ │ ├── Reset │ │ │ ├── Reset.c │ │ │ └── Reset.h │ │ │ ├── Runtime │ │ │ ├── Runtime.c │ │ │ └── Runtime.h │ │ │ ├── Security │ │ │ ├── Security.c │ │ │ └── Security.h │ │ │ ├── StatusCode │ │ │ ├── StatusCode.c │ │ │ └── StatusCode.h │ │ │ ├── Timer │ │ │ ├── Timer.c │ │ │ └── Timer.h │ │ │ ├── Variable │ │ │ ├── Variable.c │ │ │ └── Variable.h │ │ │ ├── VariableWrite │ │ │ ├── VariableWrite.c │ │ │ └── VariableWrite.h │ │ │ └── WatchdogTimer │ │ │ ├── WatchdogTimer.c │ │ │ └── WatchdogTimer.h │ ├── Cpu │ │ ├── Itanium │ │ │ ├── CpuIa64Lib │ │ │ │ ├── CpuIA64Lib.inf │ │ │ │ └── Ipf │ │ │ │ │ └── CpuIa64.s │ │ │ └── Include │ │ │ │ └── CpuIa64.h │ │ └── Pentium │ │ │ ├── CpuIA32Lib │ │ │ ├── CpuIA32Lib.inf │ │ │ ├── CpuIA32Lib_Edk2.inf │ │ │ ├── EfiCpuVersion.c │ │ │ ├── IA32 │ │ │ │ ├── CpuIA32.S │ │ │ │ ├── CpuIA32.asm │ │ │ │ └── CpuIA32.c │ │ │ └── X64 │ │ │ │ ├── Cpu.S │ │ │ │ └── Cpu.asm │ │ │ └── Include │ │ │ └── CpuIA32.h │ ├── Efi │ │ ├── Guid │ │ │ ├── Acpi │ │ │ │ ├── Acpi.c │ │ │ │ └── Acpi.h │ │ │ ├── DebugImageInfoTable │ │ │ │ ├── DebugImageInfoTable.c │ │ │ │ └── DebugImageInfoTable.h │ │ │ ├── EfiGuidLib.inf │ │ │ ├── EventGroup │ │ │ │ ├── EventGroup.c │ │ │ │ └── EventGroup.h │ │ │ ├── GlobalVariable │ │ │ │ ├── GlobalVariable.c │ │ │ │ └── GlobalVariable.h │ │ │ ├── Gpt │ │ │ │ ├── Gpt.c │ │ │ │ └── Gpt.h │ │ │ ├── HardwareErrorVariable │ │ │ │ ├── HardwareErrorVariable.c │ │ │ │ └── HardwareErrorVariable.h │ │ │ ├── Mps │ │ │ │ ├── Mps.c │ │ │ │ └── Mps.h │ │ │ ├── PcAnsi │ │ │ │ ├── PcAnsi.c │ │ │ │ └── PcAnsi.h │ │ │ ├── SalSystemTable │ │ │ │ ├── SalSystemTable.c │ │ │ │ └── SalSystemTable.h │ │ │ └── SmBios │ │ │ │ ├── SmBios.c │ │ │ │ └── SmBios.h │ │ ├── Include │ │ │ ├── EfiApi.h │ │ │ ├── EfiDevicePath.h │ │ │ ├── EfiError.h │ │ │ ├── EfiHii.h │ │ │ ├── EfiImage.h │ │ │ ├── EfiTypes.h │ │ │ └── Pxe.h │ │ └── Protocol │ │ │ ├── AbsolutePointer │ │ │ ├── AbsolutePointer.c │ │ │ └── AbsolutePointer.h │ │ │ ├── AcpiTable │ │ │ ├── AcpiTable.c │ │ │ └── AcpiTable.h │ │ │ ├── Arp │ │ │ ├── Arp.c │ │ │ └── Arp.h │ │ │ ├── AuthenticationInfo │ │ │ ├── AuthenticationInfo.c │ │ │ └── AuthenticationInfo.h │ │ │ ├── Bis │ │ │ ├── Bis.c │ │ │ └── Bis.h │ │ │ ├── BlockIo │ │ │ ├── BlockIo.c │ │ │ └── BlockIo.h │ │ │ ├── BusSpecificDriverOverride │ │ │ ├── BusSpecificDriverOverride.c │ │ │ └── BusSpecificDriverOverride.h │ │ │ ├── ComponentName │ │ │ ├── ComponentName.c │ │ │ └── ComponentName.h │ │ │ ├── ComponentName2 │ │ │ ├── ComponentName2.c │ │ │ └── ComponentName2.h │ │ │ ├── DebugPort │ │ │ ├── DebugPort.c │ │ │ └── DebugPort.h │ │ │ ├── DebugSupport │ │ │ ├── DebugSupport.c │ │ │ └── DebugSupport.h │ │ │ ├── Decompress │ │ │ ├── Decompress.c │ │ │ └── Decompress.h │ │ │ ├── DeviceIo │ │ │ ├── DeviceIo.c │ │ │ └── DeviceIo.h │ │ │ ├── DevicePath │ │ │ ├── DevicePath.c │ │ │ └── DevicePath.h │ │ │ ├── DevicePathFromText │ │ │ ├── DevicePathFromText.c │ │ │ └── DevicePathFromText.h │ │ │ ├── DevicePathToText │ │ │ ├── DevicePathToText.c │ │ │ └── DevicePathToText.h │ │ │ ├── DevicePathUtilities │ │ │ ├── DevicePathUtilities.c │ │ │ └── DevicePathUtilities.h │ │ │ ├── Dhcp4 │ │ │ ├── Dhcp4.c │ │ │ └── Dhcp4.h │ │ │ ├── DiskIo │ │ │ ├── DiskIo.c │ │ │ └── DiskIo.h │ │ │ ├── DriverBinding │ │ │ ├── DriverBinding.c │ │ │ └── DriverBinding.h │ │ │ ├── DriverConfiguration │ │ │ ├── DriverConfiguration.c │ │ │ └── DriverConfiguration.h │ │ │ ├── DriverConfiguration2 │ │ │ ├── DriverConfiguration2.c │ │ │ └── DriverConfiguration2.h │ │ │ ├── DriverDiagnostics │ │ │ ├── DriverDiagnostics.c │ │ │ └── DriverDiagnostics.h │ │ │ ├── DriverDiagnostics2 │ │ │ ├── DriverDiagnostics2.c │ │ │ └── DriverDiagnostics2.h │ │ │ ├── DriverSupportedEfiVersion │ │ │ ├── DriverSupportedEfiVersion.c │ │ │ └── DriverSupportedEfiVersion.h │ │ │ ├── Ebc │ │ │ ├── Ebc.c │ │ │ └── Ebc.h │ │ │ ├── EdidActive │ │ │ ├── EdidActive.c │ │ │ └── EdidActive.h │ │ │ ├── EdidDiscovered │ │ │ ├── EdidDiscovered.c │ │ │ └── EdidDiscovered.h │ │ │ ├── EdidOverride │ │ │ ├── EdidOverride.c │ │ │ └── EdidOverride.h │ │ │ ├── EfiNetworkInterfaceIdentifier │ │ │ ├── EfiNetworkInterfaceIdentifier.c │ │ │ └── EfiNetworkInterfaceIdentifier.h │ │ │ ├── EfiProtocolLib.inf │ │ │ ├── FileInfo │ │ │ ├── FileInfo.c │ │ │ └── FileInfo.h │ │ │ ├── FileSystemInfo │ │ │ ├── FileSystemInfo.c │ │ │ └── FileSystemInfo.h │ │ │ ├── FileSystemVolumeLabelInfo │ │ │ ├── FileSystemVolumeLabelInfo.c │ │ │ └── FileSystemVolumeLabelInfo.h │ │ │ ├── FormBrowser2 │ │ │ ├── FormBrowser2.c │ │ │ └── FormBrowser2.h │ │ │ ├── GraphicsOutput │ │ │ ├── GraphicsOutput.c │ │ │ └── GraphicsOutput.h │ │ │ ├── Hash │ │ │ ├── Hash.c │ │ │ └── Hash.h │ │ │ ├── HiiConfigAccess │ │ │ ├── HiiConfigAccess.c │ │ │ └── HiiConfigAccess.h │ │ │ ├── HiiConfigRouting │ │ │ ├── HiiConfigRouting.c │ │ │ └── HiiConfigRouting.h │ │ │ ├── HiiDatabase │ │ │ ├── HiiDatabase.c │ │ │ └── HiiDatabase.h │ │ │ ├── HiiFont │ │ │ ├── HiiFont.c │ │ │ └── HiiFont.h │ │ │ ├── HiiImage │ │ │ ├── HiiImage.c │ │ │ └── HiiImage.h │ │ │ ├── HiiPackageList │ │ │ ├── HiiPackageList.c │ │ │ └── HiiPackageList.h │ │ │ ├── HiiString │ │ │ ├── HiiString.c │ │ │ └── HiiString.h │ │ │ ├── IScsiInitiatorName │ │ │ ├── IScsiInitiatorName.c │ │ │ └── IScsiInitiatorName.h │ │ │ ├── Ip4 │ │ │ ├── Ip4.c │ │ │ └── Ip4.h │ │ │ ├── Ip4Config │ │ │ ├── Ip4Config.c │ │ │ └── Ip4Config.h │ │ │ ├── LoadFile │ │ │ ├── LoadFile.c │ │ │ └── LoadFile.h │ │ │ ├── LoadFile2 │ │ │ ├── LoadFile2.c │ │ │ └── LoadFile2.h │ │ │ ├── LoadedImage │ │ │ ├── LoadedImage.c │ │ │ └── LoadedImage.h │ │ │ ├── LoadedImageDevicePath │ │ │ ├── LoadedImageDevicePath.c │ │ │ └── LoadedImageDevicePath.h │ │ │ ├── ManagedNetwork │ │ │ ├── ManagedNetwork.c │ │ │ └── ManagedNetwork.h │ │ │ ├── Mtftp4 │ │ │ ├── Mtftp4.c │ │ │ └── Mtftp4.h │ │ │ ├── PciIo │ │ │ ├── PciIo.c │ │ │ └── PciIo.h │ │ │ ├── PciRootBridgeIo │ │ │ ├── PciRootBridgeIo.c │ │ │ └── PciRootBridgeIo.h │ │ │ ├── PlatformDriverOverride │ │ │ ├── PlatformDriverOverride.c │ │ │ └── PlatformDriverOverride.h │ │ │ ├── PlatformToDriverConfiguration │ │ │ ├── PlatformToDriverConfiguration.c │ │ │ └── PlatformToDriverConfiguration.h │ │ │ ├── PxeBaseCode │ │ │ ├── PxeBaseCode.c │ │ │ └── PxeBaseCode.h │ │ │ ├── PxeBaseCodeCallBack │ │ │ ├── PxeBaseCodeCallBack.c │ │ │ └── PxeBaseCodeCallBack.h │ │ │ ├── ScsiIo │ │ │ ├── ScsiIo.c │ │ │ └── ScsiIo.h │ │ │ ├── ScsiPassThru │ │ │ ├── ScsiPassThru.c │ │ │ └── ScsiPassThru.h │ │ │ ├── ScsiPassThruExt │ │ │ ├── ScsiPassThruExt.c │ │ │ └── ScsiPassThruExt.h │ │ │ ├── SerialIo │ │ │ ├── SerialIo.c │ │ │ └── SerialIo.h │ │ │ ├── ServiceBinding │ │ │ └── ServiceBinding.h │ │ │ ├── SimpleFileSystem │ │ │ ├── SimpleFileSystem.c │ │ │ └── SimpleFileSystem.h │ │ │ ├── SimpleNetwork │ │ │ ├── SimpleNetwork.c │ │ │ └── SimpleNetwork.h │ │ │ ├── SimplePointer │ │ │ ├── SimplePointer.c │ │ │ └── SimplePointer.h │ │ │ ├── SimpleTextIn │ │ │ ├── SimpleTextIn.c │ │ │ └── SimpleTextIn.h │ │ │ ├── SimpleTextInputEx │ │ │ ├── SimpleTextInputEx.c │ │ │ └── SimpleTextInputEx.h │ │ │ ├── SimpleTextOut │ │ │ ├── SimpleTextOut.c │ │ │ └── SimpleTextOut.h │ │ │ ├── TapeIo │ │ │ ├── TapeIo.c │ │ │ └── TapeIo.h │ │ │ ├── Tcp4 │ │ │ ├── Tcp4.c │ │ │ └── Tcp4.h │ │ │ ├── Udp4 │ │ │ ├── Udp4.c │ │ │ └── Udp4.h │ │ │ ├── UgaDraw │ │ │ ├── UgaDraw.c │ │ │ └── UgaDraw.h │ │ │ ├── UgaIo │ │ │ ├── UgaIo.c │ │ │ └── UgaIo.h │ │ │ ├── UnicodeCollation │ │ │ ├── UnicodeCollation.c │ │ │ └── UnicodeCollation.h │ │ │ ├── UnicodeCollation2 │ │ │ ├── UnicodeCollation2.c │ │ │ └── UnicodeCollation2.h │ │ │ ├── UsbHostController │ │ │ ├── UsbHostController.c │ │ │ └── UsbHostController.h │ │ │ └── UsbIo │ │ │ ├── UsbIo.c │ │ │ └── UsbIo.h │ ├── Framework │ │ ├── Guid │ │ │ ├── AcpiTableStorage │ │ │ │ ├── AcpiTableStorage.c │ │ │ │ └── AcpiTableStorage.h │ │ │ ├── Apriori │ │ │ │ ├── Apriori.c │ │ │ │ └── Apriori.h │ │ │ ├── DataHubRecords │ │ │ │ ├── DataHubRecords.c │ │ │ │ ├── DataHubRecords.h │ │ │ │ ├── DataHubSubClass.h │ │ │ │ ├── DataHubSubClassCache.h │ │ │ │ ├── DataHubSubClassMemory.h │ │ │ │ ├── DataHubSubClassMisc.h │ │ │ │ └── DataHubSubClassProcessor.h │ │ │ ├── DxeServices │ │ │ │ ├── DxeServices.c │ │ │ │ └── DxeServices.h │ │ │ ├── EdkFrameworkGuidLib.inf │ │ │ ├── FirmwareFileSystem │ │ │ │ ├── FirmwareFileSystem.c │ │ │ │ └── FirmwareFileSystem.h │ │ │ ├── FirmwareFileSystem2 │ │ │ │ ├── FirmwareFileSystem2.c │ │ │ │ └── FirmwareFileSystem2.h │ │ │ ├── FrameworkDevicePath │ │ │ │ ├── FrameworkDevicePath.c │ │ │ │ └── FrameworkDevicePath.h │ │ │ ├── Hob │ │ │ │ ├── Hob.c │ │ │ │ └── Hob.h │ │ │ ├── MemoryAllocationHob │ │ │ │ ├── MemoryAllocationHob.c │ │ │ │ └── MemoryAllocationHob.h │ │ │ ├── PeiApriori │ │ │ │ ├── PeiApriori.c │ │ │ │ └── PeiApriori.h │ │ │ ├── SmramMemoryReserve │ │ │ │ ├── SmramMemoryReserve.c │ │ │ │ └── SmramMemoryReserve.h │ │ │ └── StatusCodeDataTypeId │ │ │ │ ├── StatusCodeDataTypeId.c │ │ │ │ └── StatusCodeDataTypeId.h │ │ ├── Include │ │ │ ├── BootMode.h │ │ │ ├── EfiBootScript.h │ │ │ ├── EfiCapsule.h │ │ │ ├── EfiDependency.h │ │ │ ├── EfiFirmwareFileSystem.h │ │ │ ├── EfiFirmwareVolume.h │ │ │ ├── EfiFirmwareVolumeHeader.h │ │ │ ├── EfiImageFormat.h │ │ │ ├── EfiInternalFormRepresentation.h │ │ │ ├── EfiPciCfg.h │ │ │ ├── EfiSmbus.h │ │ │ ├── EfiStatusCode.h │ │ │ ├── EfiVariable.h │ │ │ ├── PeiApi.h │ │ │ ├── PeiHob.h │ │ │ ├── TianoSpecApi.h │ │ │ ├── TianoSpecDevicePath.h │ │ │ ├── TianoSpecError.h │ │ │ └── TianoSpecTypes.h │ │ ├── Ppi │ │ │ ├── BlockIo │ │ │ │ ├── BlockIo.c │ │ │ │ └── BlockIo.h │ │ │ ├── BootInRecoveryMode │ │ │ │ ├── BootInRecoveryMode.c │ │ │ │ └── BootInRecoveryMode.h │ │ │ ├── BootMode │ │ │ │ ├── BootMode.c │ │ │ │ └── BootMode.h │ │ │ ├── BootScriptExecuter │ │ │ │ ├── BootScriptExecuter.c │ │ │ │ └── BootScriptExecuter.h │ │ │ ├── CpuIo │ │ │ │ ├── CpuIo.c │ │ │ │ └── CpuIo.h │ │ │ ├── Decompress │ │ │ │ ├── Decompress.c │ │ │ │ └── Decompress.h │ │ │ ├── DeviceRecoveryModule │ │ │ │ ├── DeviceRecoveryModule.c │ │ │ │ └── DeviceRecoveryModule.h │ │ │ ├── DxeIpl │ │ │ │ ├── DxeIpl.c │ │ │ │ └── DxeIpl.h │ │ │ ├── EcpPciCfg │ │ │ │ ├── EcpPciCfg.c │ │ │ │ └── EcpPciCfg.h │ │ │ ├── EdkFrameworkPpiLib.inf │ │ │ ├── EndOfPeiSignal │ │ │ │ ├── EndOfPeiSignal.c │ │ │ │ └── EndOfPeiSignal.h │ │ │ ├── FindFv │ │ │ │ ├── FindFv.c │ │ │ │ └── FindFv.h │ │ │ ├── FirmwareVolume │ │ │ │ ├── FirmwareVolume.c │ │ │ │ └── FirmwareVolume.h │ │ │ ├── FirmwareVolumeInfo │ │ │ │ ├── FirmwareVolumeInfo.c │ │ │ │ └── FirmwareVolumeInfo.h │ │ │ ├── GuidedSectionExtraction │ │ │ │ ├── GuidedSectionExtraction.c │ │ │ │ └── GuidedSectionExtraction.h │ │ │ ├── LoadFile │ │ │ │ ├── LoadFile.c │ │ │ │ └── LoadFile.h │ │ │ ├── LoadFile2 │ │ │ │ ├── LoadFile2.c │ │ │ │ └── LoadFile2.h │ │ │ ├── LoadedImage │ │ │ │ ├── LoadedImage.c │ │ │ │ └── LoadedImage.h │ │ │ ├── MemoryDiscovered │ │ │ │ ├── MemoryDiscovered.c │ │ │ │ └── MemoryDiscovered.h │ │ │ ├── PciCfg │ │ │ │ ├── PciCfg.c │ │ │ │ └── PciCfg.h │ │ │ ├── PciCfg2 │ │ │ │ ├── PciCfg2.c │ │ │ │ └── PciCfg2.h │ │ │ ├── RecoveryModule │ │ │ │ ├── RecoveryModule.c │ │ │ │ └── RecoveryModule.h │ │ │ ├── Reset │ │ │ │ ├── Reset.c │ │ │ │ └── Reset.h │ │ │ ├── S3Resume │ │ │ │ ├── S3Resume.c │ │ │ │ └── S3Resume.h │ │ │ ├── SecPlatformInformation │ │ │ │ ├── SecPlatformInformation.c │ │ │ │ └── SecPlatformInformation.h │ │ │ ├── SectionExtraction │ │ │ │ ├── SectionExtraction.c │ │ │ │ └── SectionExtraction.h │ │ │ ├── Security │ │ │ │ ├── Security.c │ │ │ │ └── Security.h │ │ │ ├── Security2 │ │ │ │ ├── Security2.c │ │ │ │ └── Security2.h │ │ │ ├── Smbus │ │ │ │ ├── Smbus.c │ │ │ │ └── Smbus.h │ │ │ ├── Smbus2 │ │ │ │ ├── Smbus2.c │ │ │ │ └── Smbus2.h │ │ │ ├── Stall │ │ │ │ ├── Stall.c │ │ │ │ └── Stall.h │ │ │ ├── StatusCode │ │ │ │ ├── StatusCode.c │ │ │ │ └── StatusCode.h │ │ │ ├── TemporaryRamSupport │ │ │ │ ├── TemporaryRamSupport.c │ │ │ │ └── TemporaryRamSupport.h │ │ │ ├── Variable │ │ │ │ ├── Variable.c │ │ │ │ └── Variable.h │ │ │ └── Variable2 │ │ │ │ ├── Variable2.c │ │ │ │ └── Variable2.h │ │ └── Protocol │ │ │ ├── AcpiS3Save │ │ │ ├── AcpiS3Save.c │ │ │ └── AcpiS3Save.h │ │ │ ├── AcpiSupport │ │ │ ├── AcpiSupport.c │ │ │ └── AcpiSupport.h │ │ │ ├── BootScriptSave │ │ │ ├── BootScriptSave.c │ │ │ └── BootScriptSave.h │ │ │ ├── CpuIo │ │ │ ├── CpuIo.c │ │ │ └── CpuIo.h │ │ │ ├── DataHub │ │ │ ├── DataHub.c │ │ │ └── DataHub.h │ │ │ ├── EdkFrameworkProtocolLib.inf │ │ │ ├── FirmwareVolume │ │ │ ├── FirmwareVolume.c │ │ │ └── FirmwareVolume.h │ │ │ ├── FirmwareVolume2 │ │ │ ├── FirmwareVolume2.c │ │ │ └── FirmwareVolume2.h │ │ │ ├── FirmwareVolumeBlock │ │ │ ├── FirmwareVolumeBlock.c │ │ │ └── FirmwareVolumeBlock.h │ │ │ ├── FormBrowser │ │ │ ├── FormBrowser.c │ │ │ └── FormBrowser.h │ │ │ ├── FormCallback │ │ │ ├── FormCallback.c │ │ │ └── FormCallback.h │ │ │ ├── Hii │ │ │ ├── Hii.c │ │ │ └── Hii.h │ │ │ ├── IdeControllerInit │ │ │ ├── IdeControllerInit.c │ │ │ └── IdeControllerInit.h │ │ │ ├── IncompatiblePciDeviceSupport │ │ │ ├── IncompatiblePciDeviceSupport.c │ │ │ └── IncompatiblePciDeviceSupport.h │ │ │ ├── Legacy8259 │ │ │ ├── Legacy8259.c │ │ │ └── Legacy8259.h │ │ │ ├── LegacyBios │ │ │ ├── LegacyBios.c │ │ │ └── LegacyBios.h │ │ │ ├── LegacyBiosPlatform │ │ │ ├── LegacyBiosPlatform.c │ │ │ └── LegacyBiosPlatform.h │ │ │ ├── LegacyInterrupt │ │ │ ├── LegacyInterrupt.c │ │ │ └── LegacyInterrupt.h │ │ │ ├── LegacyRegion │ │ │ ├── LegacyRegion.c │ │ │ └── LegacyRegion.h │ │ │ ├── PciHostBridgeResourceAllocation │ │ │ ├── PciHostBridgeResourceAllocation.c │ │ │ └── PciHostBridgeResourceAllocation.h │ │ │ ├── PciHotPlugInit │ │ │ ├── PciHotPlugInit.c │ │ │ └── PciHotPlugInit.h │ │ │ ├── PciPlatform │ │ │ ├── PciPlatform.c │ │ │ └── PciPlatform.h │ │ │ ├── SectionExtraction │ │ │ ├── SectionExtraction.c │ │ │ └── SectionExtraction.h │ │ │ ├── SecurityPolicy │ │ │ ├── SecurityPolicy.c │ │ │ └── SecurityPolicy.h │ │ │ ├── Smbus │ │ │ ├── Smbus.c │ │ │ └── Smbus.h │ │ │ ├── SmmAccess │ │ │ ├── SmmAccess.c │ │ │ └── SmmAccess.h │ │ │ ├── SmmBase │ │ │ ├── SmmBase.c │ │ │ └── SmmBase.h │ │ │ ├── SmmControl │ │ │ ├── SmmControl.c │ │ │ └── SmmControl.h │ │ │ ├── SmmCpuState │ │ │ ├── CpuSaveState.h │ │ │ ├── SmmCpuState.c │ │ │ └── SmmCpuState.h │ │ │ ├── SmmGpiDispatch │ │ │ ├── SmmGpiDispatch.c │ │ │ └── SmmGpiDispatch.h │ │ │ ├── SmmIchnDispatch │ │ │ ├── SmmIchnDispatch.c │ │ │ └── SmmIchnDispatch.h │ │ │ ├── SmmPeriodicTimerDispatch │ │ │ ├── SmmPeriodicTimerDispatch.c │ │ │ └── SmmPeriodicTimerDispatch.h │ │ │ ├── SmmPowerButtonDispatch │ │ │ ├── SmmPowerButtonDispatch.c │ │ │ └── SmmPowerButtonDispatch.h │ │ │ ├── SmmStandbyButtonDispatch │ │ │ ├── SmmStandbyButtonDispatch.c │ │ │ └── SmmStandbyButtonDispatch.h │ │ │ ├── SmmStatusCode │ │ │ ├── SmmStatusCode.c │ │ │ └── SmmStatusCode.h │ │ │ ├── SmmSwDispatch │ │ │ ├── SmmSwDispatch.c │ │ │ └── SmmSwDispatch.h │ │ │ ├── SmmSxDispatch │ │ │ ├── SmmSxDispatch.c │ │ │ └── SmmSxDispatch.h │ │ │ └── SmmUsbDispatch │ │ │ ├── SmmUsbDispatch.c │ │ │ └── SmmUsbDispatch.h │ ├── Guid │ │ ├── AcpiDescription │ │ │ ├── AcpiDescription.c │ │ │ └── AcpiDescription.h │ │ ├── AlternateFvBlock │ │ │ ├── AlternateFvBlock.c │ │ │ └── AlternateFvBlock.h │ │ ├── Bmp │ │ │ ├── Bmp.c │ │ │ └── Bmp.h │ │ ├── BootState │ │ │ ├── BootState.c │ │ │ └── BootState.h │ │ ├── Capsule │ │ │ ├── Capsule.c │ │ │ └── Capsule.h │ │ ├── CompatibleMemoryTested │ │ │ ├── CompatibleMemoryTested.c │ │ │ └── CompatibleMemoryTested.h │ │ ├── ConsoleInDevice │ │ │ ├── ConsoleInDevice.c │ │ │ └── ConsoleInDevice.h │ │ ├── ConsoleOutDevice │ │ │ ├── ConsoleOutDevice.c │ │ │ └── ConsoleOutDevice.h │ │ ├── EdkGuidLib.inf │ │ ├── EfiShell │ │ │ ├── EfiShell.c │ │ │ └── EfiShell.h │ │ ├── EventLegacyBios │ │ │ ├── EventLegacyBios.c │ │ │ └── EventLegacyBios.h │ │ ├── FlashMapHob │ │ │ ├── FlashMapHob.c │ │ │ └── FlashMapHob.h │ │ ├── GenericVariable │ │ │ ├── GenericVariable.c │ │ │ └── GenericVariable.h │ │ ├── HotPlugDevice │ │ │ ├── HotPlugDevice.c │ │ │ └── HotPlugDevice.h │ │ ├── IoBaseHob │ │ │ ├── IoBaseHob.c │ │ │ └── IoBaseHob.h │ │ ├── MemoryTypeInformation │ │ │ ├── MemoryTypeInformation.c │ │ │ └── MemoryTypeInformation.h │ │ ├── PciExpressBaseAddress │ │ │ ├── PciExpressBaseAddress.c │ │ │ └── PciExpressBaseAddress.h │ │ ├── PciHotPlugDevice │ │ │ ├── PciHotPlugDevice.c │ │ │ └── PciHotPlugDevice.h │ │ ├── PciOptionRomTable │ │ │ ├── PciOptionRomTable.c │ │ │ └── PciOptionRomTable.h │ │ ├── PeiFlushInstructionCache │ │ │ ├── PeiFlushInstructionCache.c │ │ │ └── PeiFlushInstructionCache.h │ │ ├── PeiPeCoffLoader │ │ │ ├── PeiPeCoffLoader.c │ │ │ └── PeiPeCoffLoader.h │ │ ├── PeiPerformanceHob │ │ │ ├── PeiPerformanceHob.c │ │ │ └── PeiPerformanceHob.h │ │ ├── PeiTransferControl │ │ │ ├── PeiTransferControl.c │ │ │ └── PeiTransferControl.h │ │ ├── PrimaryConsoleInDevice │ │ │ ├── PrimaryConsoleInDevice.c │ │ │ └── PrimaryConsoleInDevice.h │ │ ├── PrimaryConsoleOutDevice │ │ │ ├── PrimaryConsoleOutDevice.c │ │ │ └── PrimaryConsoleOutDevice.h │ │ ├── PrimaryStandardErrorDevice │ │ │ ├── PrimaryStandardErrorDevice.c │ │ │ └── PrimaryStandardErrorDevice.h │ │ ├── StandardErrorDevice │ │ │ ├── StandardErrorDevice.c │ │ │ └── StandardErrorDevice.h │ │ ├── StatusCode │ │ │ ├── StatusCode.c │ │ │ └── StatusCode.h │ │ ├── StatusCodeCallerId │ │ │ ├── StatusCodeCallerId.c │ │ │ └── StatusCodeCallerId.h │ │ └── SystemNvDataGuid │ │ │ ├── SystemNvDataGuid.c │ │ │ └── SystemNvDataGuid.h │ ├── Include │ │ ├── Aarch64 │ │ │ ├── EfiBind.h │ │ │ ├── EfiPeOptionalHeader.h │ │ │ └── TianoBind.h │ │ ├── Arm │ │ │ ├── EfiBind.h │ │ │ ├── EfiPeOptionalHeader.h │ │ │ └── TianoBind.h │ │ ├── Ebc │ │ │ ├── EfiBind.h │ │ │ ├── EfiPeOptionalHeader.h │ │ │ └── TianoBind.h │ │ ├── EfiCommon.h │ │ ├── EfiCompNameSupport.h │ │ ├── EfiDebug.h │ │ ├── EfiDepex.h │ │ ├── EfiFlashMap.h │ │ ├── EfiPci.h │ │ ├── EfiPerf.h │ │ ├── EfiPxe.h │ │ ├── EfiSpec.h │ │ ├── EfiStdArg.h │ │ ├── EfiTpm.h │ │ ├── EfiVariable.h │ │ ├── EfiWorkingBlockHeader.h │ │ ├── Ia32 │ │ │ ├── EfiBind.h │ │ │ ├── EfiPeOptionalHeader.h │ │ │ └── TianoBind.h │ │ ├── IndustryStandard │ │ │ ├── Acpi.h │ │ │ ├── Acpi1_0.h │ │ │ ├── Acpi2_0.h │ │ │ ├── Acpi3_0.h │ │ │ ├── AcpiCommon.h │ │ │ ├── AlertStandardFormatTable.h │ │ │ ├── DMARemappingReportingTable.h │ │ │ ├── HighPrecisionEventTimerTable.h │ │ │ ├── IScsiBootFirmwareTable.h │ │ │ ├── LegacyBiosMpTable.h │ │ │ ├── MemoryMappedConfigurationSpaceAccessTable.h │ │ │ ├── SdramSpd.h │ │ │ ├── ServerProcessorManagementInterfaceTable.h │ │ │ ├── Smbios.h │ │ │ ├── Tpm12.h │ │ │ ├── WatchdogDescriptionTable.h │ │ │ ├── atapi.h │ │ │ ├── pci.h │ │ │ ├── pci22.h │ │ │ ├── pci23.h │ │ │ ├── pci30.h │ │ │ ├── scsi.h │ │ │ └── usb.h │ │ ├── Ipf │ │ │ ├── EfiBind.h │ │ │ ├── EfiPeOptionalHeader.h │ │ │ ├── IpfDefines.h │ │ │ ├── IpfMacro.i │ │ │ ├── PalApi.h │ │ │ ├── SalApi.h │ │ │ └── TianoBind.h │ │ ├── Pei │ │ │ ├── Pei.h │ │ │ ├── PeiBind.h │ │ │ ├── PeiDebug.h │ │ │ └── PeiPerf.h │ │ ├── Tiano.h │ │ ├── TianoApi.h │ │ ├── TianoCommon.h │ │ ├── TianoDevicePath.h │ │ ├── TianoError.h │ │ ├── TianoHii.h │ │ ├── TianoTypes.h │ │ └── X64 │ │ │ ├── EfiBind.h │ │ │ ├── EfiPeOptionalHeader.h │ │ │ └── TianoBind.h │ ├── Library │ │ ├── CompilerStub │ │ │ ├── CompilerStubLib.inf │ │ │ ├── CompilerStubLib_Edk2.inf │ │ │ ├── Dummy.c │ │ │ ├── Ia32 │ │ │ │ ├── memcpy.asm │ │ │ │ ├── memcpyRep1.asm │ │ │ │ ├── memcpyRep4.asm │ │ │ │ ├── memcpySSE2.asm │ │ │ │ ├── memset.asm │ │ │ │ ├── memsetRep1.asm │ │ │ │ ├── memsetRep4.asm │ │ │ │ └── memsetSSE2.asm │ │ │ ├── X64 │ │ │ │ ├── memcpy.asm │ │ │ │ ├── memcpyRep1.asm │ │ │ │ ├── memcpyRep4.asm │ │ │ │ ├── memcpyRep8.asm │ │ │ │ ├── memcpySSE2.asm │ │ │ │ ├── memset.asm │ │ │ │ ├── memsetRep1.asm │ │ │ │ ├── memsetRep4.asm │ │ │ │ ├── memsetRep8.asm │ │ │ │ └── memsetSSE2.asm │ │ │ ├── memcpy.c │ │ │ └── memset.c │ │ ├── CustomizedDecompress │ │ │ ├── CustomizedDecompress.c │ │ │ ├── CustomizedDecompress.h │ │ │ └── CustomizedDecompress.inf │ │ ├── Dxe │ │ │ ├── EfiDriverLib │ │ │ │ ├── Debug.c │ │ │ │ ├── DevicePath.c │ │ │ │ ├── DxeDriverLib.c │ │ │ │ ├── Ebc │ │ │ │ │ └── PerformancePrimitives.c │ │ │ │ ├── EfiDriverLib.c │ │ │ │ ├── EfiDriverLib.inf │ │ │ │ ├── EfiDriverLib_Edk2.inf │ │ │ │ ├── EfiDriverModelLib.c │ │ │ │ ├── EfiGetConfigTable.c │ │ │ │ ├── EfiLibAllocate.c │ │ │ │ ├── Event.c │ │ │ │ ├── GetImage.c │ │ │ │ ├── Handle.c │ │ │ │ ├── Ia32 │ │ │ │ │ └── PerformancePrimitives.c │ │ │ │ ├── Ipf │ │ │ │ │ ├── AsmCpuMisc.s │ │ │ │ │ └── PerformancePrimitives.s │ │ │ │ ├── LibGlobalDs.c │ │ │ │ ├── LibGlobalErrorLevel.c │ │ │ │ ├── LibGlobalSt.c │ │ │ │ ├── Lock.c │ │ │ │ ├── Perf.c │ │ │ │ ├── ReportStatusCode.c │ │ │ │ └── X64 │ │ │ │ │ └── PerformancePrimitives.c │ │ │ ├── EfiIfrSupportLib │ │ │ │ ├── EfiIfrSupportLib.inf │ │ │ │ ├── IfrCommon.c │ │ │ │ ├── IfrLibrary.h │ │ │ │ ├── IfrOnTheFly.c │ │ │ │ ├── IfrOpCodeCreation.c │ │ │ │ └── IfrVariable.c │ │ │ ├── EfiScriptLib │ │ │ │ ├── EfiScriptLib.c │ │ │ │ └── EfiScriptLib.inf │ │ │ ├── EfiUiLib │ │ │ │ ├── EfiUiLib.c │ │ │ │ └── EfiUiLib.inf │ │ │ ├── Graphics │ │ │ │ ├── Ascii │ │ │ │ │ ├── PrintWidth.h │ │ │ │ │ └── Sprint.c │ │ │ │ ├── Graphics.c │ │ │ │ ├── Graphics.inf │ │ │ │ ├── Print.c │ │ │ │ ├── Print.h │ │ │ │ └── Unicode │ │ │ │ │ ├── PrintWidth.h │ │ │ │ │ └── Sprint.c │ │ │ ├── GraphicsLite │ │ │ │ ├── Ascii │ │ │ │ │ ├── PrintWidth.h │ │ │ │ │ └── Sprint.c │ │ │ │ ├── Graphics.c │ │ │ │ ├── Graphics.inf │ │ │ │ ├── Print.c │ │ │ │ ├── Print.h │ │ │ │ └── Unicode │ │ │ │ │ ├── PrintWidth.h │ │ │ │ │ └── Sprint.c │ │ │ ├── Hob │ │ │ │ ├── Hob.c │ │ │ │ └── HobLib.inf │ │ │ ├── Include │ │ │ │ ├── Aarch64 │ │ │ │ │ └── ProcDep.h │ │ │ │ ├── Arm │ │ │ │ │ ├── CpuFuncs.h │ │ │ │ │ └── ProcDep.h │ │ │ │ ├── Ebc │ │ │ │ │ └── ProcDep.h │ │ │ │ ├── EfiCombinationLib.h │ │ │ │ ├── EfiCommonLib.h │ │ │ │ ├── EfiDriverLib.h │ │ │ │ ├── EfiHobLib.h │ │ │ │ ├── EfiMgmtModeRuntimeLib.h │ │ │ │ ├── EfiPrintLib.h │ │ │ │ ├── EfiRegTableLib.h │ │ │ │ ├── EfiRuntimeLib.h │ │ │ │ ├── EfiScriptLib.h │ │ │ │ ├── EfiSmmDriverLib.h │ │ │ │ ├── EfiUiLib.h │ │ │ │ ├── EfiWinNtLib.h │ │ │ │ ├── GetImage.h │ │ │ │ ├── GraphicsLib.h │ │ │ │ ├── Ia32 │ │ │ │ │ ├── CpuFuncs.h │ │ │ │ │ └── ProcDep.h │ │ │ │ ├── Ia32EfiRuntimeDriverLib.h │ │ │ │ ├── Ipf │ │ │ │ │ ├── CpuFuncs.h │ │ │ │ │ ├── EsalRuntimeLib.h │ │ │ │ │ ├── ProcDep.h │ │ │ │ │ └── SalDriverLib.h │ │ │ │ ├── LinkedList.h │ │ │ │ ├── RtDevicePath.h │ │ │ │ ├── SmmRuntimeLib.h │ │ │ │ └── X64 │ │ │ │ │ ├── CpuFuncs.h │ │ │ │ │ └── ProcDep.h │ │ │ ├── Print │ │ │ │ ├── Ascii │ │ │ │ │ ├── PrintWidth.h │ │ │ │ │ └── SPrint.c │ │ │ │ ├── BoxDraw.c │ │ │ │ ├── Print.c │ │ │ │ ├── Print.h │ │ │ │ ├── PrintLib.inf │ │ │ │ ├── StdErr.c │ │ │ │ └── Unicode │ │ │ │ │ ├── PrintWidth.h │ │ │ │ │ └── SPrint.c │ │ │ ├── PrintLite │ │ │ │ ├── Ascii │ │ │ │ │ ├── PrintWidth.h │ │ │ │ │ └── SPrint.c │ │ │ │ ├── BoxDraw.c │ │ │ │ ├── Print.c │ │ │ │ ├── Print.h │ │ │ │ ├── PrintLib.inf │ │ │ │ ├── StdErr.c │ │ │ │ └── Unicode │ │ │ │ │ ├── PrintWidth.h │ │ │ │ │ └── SPrint.c │ │ │ └── UefiEfiIfrSupportLib │ │ │ │ ├── UefiEfiIfrSupportLib.inf │ │ │ │ ├── UefiIfrCommon.c │ │ │ │ ├── UefiIfrForm.c │ │ │ │ ├── UefiIfrLibrary.h │ │ │ │ ├── UefiIfrOpCodeCreation.c │ │ │ │ └── UefiIfrString.c │ │ ├── EdkIIGlueLib │ │ │ ├── EntryPoints │ │ │ │ ├── EdkIIGlueDxeDriverEntryPoint.c │ │ │ │ ├── EdkIIGluePeimEntryPoint.c │ │ │ │ └── EdkIIGlueSmmDriverEntryPoint.c │ │ │ ├── Include │ │ │ │ ├── AutoGen.h │ │ │ │ ├── Common │ │ │ │ │ ├── EdkIIGlueBaseTypes.h │ │ │ │ │ ├── EdkIIGlueDefinitionChangesBase.h │ │ │ │ │ ├── EdkIIGlueDefinitionChangesDxe.h │ │ │ │ │ ├── EdkIIGlueDefinitionChangesPeim.h │ │ │ │ │ └── EdkIIGlueDependencies.h │ │ │ │ ├── DxeDepex.h │ │ │ │ ├── Ebc │ │ │ │ │ └── EdkIIGlueProcessorBind.h │ │ │ │ ├── EdkIIGlueBase.h │ │ │ │ ├── EdkIIGlueConfig.h │ │ │ │ ├── EdkIIGlueDxe.h │ │ │ │ ├── EdkIIGluePeim.h │ │ │ │ ├── EdkIIGlueUefi.h │ │ │ │ ├── Ia32 │ │ │ │ │ └── EdkIIGlueProcessorBind.h │ │ │ │ ├── Ipf │ │ │ │ │ └── EdkIIGlueProcessorBind.h │ │ │ │ ├── Library │ │ │ │ │ ├── EdkIIGlueBaseLib.h │ │ │ │ │ ├── EdkIIGlueBaseMemoryLib.h │ │ │ │ │ ├── EdkIIGlueCacheMaintenanceLib.h │ │ │ │ │ ├── EdkIIGlueDebugLib.h │ │ │ │ │ ├── EdkIIGlueDevicePathLib.h │ │ │ │ │ ├── EdkIIGlueDxeRuntimeDriverLib.h │ │ │ │ │ ├── EdkIIGlueDxeServicesTableLib.h │ │ │ │ │ ├── EdkIIGlueDxeSmmDriverEntryPoint.h │ │ │ │ │ ├── EdkIIGlueEdkDxeSalLib.h │ │ │ │ │ ├── EdkIIGlueHiiLib.h │ │ │ │ │ ├── EdkIIGlueHobLib.h │ │ │ │ │ ├── EdkIIGlueIoLib.h │ │ │ │ │ ├── EdkIIGlueMemoryAllocationLib.h │ │ │ │ │ ├── EdkIIGluePciCf8Lib.h │ │ │ │ │ ├── EdkIIGluePciExpressLib.h │ │ │ │ │ ├── EdkIIGluePciLib.h │ │ │ │ │ ├── EdkIIGluePeCoffGetEntryPointLib.h │ │ │ │ │ ├── EdkIIGluePeCoffLib.h │ │ │ │ │ ├── EdkIIGluePeiServicesLib.h │ │ │ │ │ ├── EdkIIGluePeiServicesTablePointerLib.h │ │ │ │ │ ├── EdkIIGluePeimEntryPoint.h │ │ │ │ │ ├── EdkIIGluePostCodeLib.h │ │ │ │ │ ├── EdkIIGluePrintLib.h │ │ │ │ │ ├── EdkIIGlueReportStatusCodeLib.h │ │ │ │ │ ├── EdkIIGlueResourcePublicationLib.h │ │ │ │ │ ├── EdkIIGlueSmbusLib.h │ │ │ │ │ ├── EdkIIGlueTimerLib.h │ │ │ │ │ ├── EdkIIGlueUefiBootServicesTableLib.h │ │ │ │ │ ├── EdkIIGlueUefiDecompressLib.h │ │ │ │ │ ├── EdkIIGlueUefiDriverEntryPoint.h │ │ │ │ │ ├── EdkIIGlueUefiDriverModelLib.h │ │ │ │ │ ├── EdkIIGlueUefiLib.h │ │ │ │ │ └── EdkIIGlueUefiRuntimeServicesTableLib.h │ │ │ │ ├── Pcd │ │ │ │ │ ├── EdkIIGluePcd.h │ │ │ │ │ ├── EdkIIGluePcdBaseLib.h │ │ │ │ │ ├── EdkIIGluePcdDebugLib.h │ │ │ │ │ ├── EdkIIGluePcdIoLib.h │ │ │ │ │ ├── EdkIIGluePcdPciExpressLib.h │ │ │ │ │ ├── EdkIIGluePcdPostCodeLib.h │ │ │ │ │ ├── EdkIIGluePcdReportStatusCodeLib.h │ │ │ │ │ └── EdkIIGluePcdTimerLib.h │ │ │ │ ├── PeimDepex.h │ │ │ │ └── X64 │ │ │ │ │ └── EdkIIGlueProcessorBind.h │ │ │ └── Library │ │ │ │ ├── BaseCacheMaintenanceLib │ │ │ │ ├── BaseCacheMaintenanceLib.inf │ │ │ │ ├── EbcCache.c │ │ │ │ ├── IpfCache.c │ │ │ │ └── X86Cache.c │ │ │ │ ├── BaseDebugLibNull │ │ │ │ ├── BaseDebugLibNull.inf │ │ │ │ └── DebugLib.c │ │ │ │ ├── BaseIoLibIntrinsic │ │ │ │ ├── BaseIoLibIntrinsic.inf │ │ │ │ ├── BaseIoLibIntrinsicInternal.h │ │ │ │ ├── IoHighLevel.c │ │ │ │ ├── IoLib.c │ │ │ │ ├── IoLibGcc.c │ │ │ │ ├── IoLibIcc.c │ │ │ │ ├── IoLibIpf.c │ │ │ │ └── IoLibMsc.c │ │ │ │ ├── BaseLib │ │ │ │ ├── ARShiftU64.c │ │ │ │ ├── BaseLib.inf │ │ │ │ ├── BaseLibInternals.h │ │ │ │ ├── BitField.c │ │ │ │ ├── CheckSum.c │ │ │ │ ├── ChkStkGcc.c │ │ │ │ ├── Cpu.c │ │ │ │ ├── CpuDeadLoop.c │ │ │ │ ├── DivS64x64Remainder.c │ │ │ │ ├── DivU64x32.c │ │ │ │ ├── DivU64x32Remainder.c │ │ │ │ ├── DivU64x64Remainder.c │ │ │ │ ├── Ebc │ │ │ │ │ ├── CpuBreakpoint.c │ │ │ │ │ ├── SetJumpLongJump.c │ │ │ │ │ ├── SwitchStack.c │ │ │ │ │ └── Synchronization.c │ │ │ │ ├── GetPowerOfTwo32.c │ │ │ │ ├── GetPowerOfTwo64.c │ │ │ │ ├── HighBitSet32.c │ │ │ │ ├── HighBitSet64.c │ │ │ │ ├── Ia32 │ │ │ │ │ ├── ARShiftU64.S │ │ │ │ │ ├── ARShiftU64.asm │ │ │ │ │ ├── ARShiftU64.c │ │ │ │ │ ├── CpuBreakpoint.S │ │ │ │ │ ├── CpuBreakpoint.asm │ │ │ │ │ ├── CpuBreakpoint.c │ │ │ │ │ ├── CpuFlushTlb.c │ │ │ │ │ ├── CpuId.S │ │ │ │ │ ├── CpuId.asm │ │ │ │ │ ├── CpuId.c │ │ │ │ │ ├── CpuIdEx.S │ │ │ │ │ ├── CpuIdEx.asm │ │ │ │ │ ├── CpuIdEx.c │ │ │ │ │ ├── CpuPause.S │ │ │ │ │ ├── CpuPause.asm │ │ │ │ │ ├── CpuPause.c │ │ │ │ │ ├── CpuSleep.S │ │ │ │ │ ├── CpuSleep.asm │ │ │ │ │ ├── CpuSleep.c │ │ │ │ │ ├── DisableInterrupts.S │ │ │ │ │ ├── DisableInterrupts.asm │ │ │ │ │ ├── DisableInterrupts.c │ │ │ │ │ ├── DisablePaging32.S │ │ │ │ │ ├── DisablePaging32.asm │ │ │ │ │ ├── DisablePaging32.c │ │ │ │ │ ├── DivS64x64Remainder.c │ │ │ │ │ ├── DivU64x32.S │ │ │ │ │ ├── DivU64x32.asm │ │ │ │ │ ├── DivU64x32.c │ │ │ │ │ ├── DivU64x32Remainder.S │ │ │ │ │ ├── DivU64x32Remainder.asm │ │ │ │ │ ├── DivU64x32Remainder.c │ │ │ │ │ ├── DivU64x64Remainder.S │ │ │ │ │ ├── DivU64x64Remainder.asm │ │ │ │ │ ├── DivU64x64Remainder.c │ │ │ │ │ ├── EnableDisableInterrupts.S │ │ │ │ │ ├── EnableDisableInterrupts.asm │ │ │ │ │ ├── EnableDisableInterrupts.c │ │ │ │ │ ├── EnableInterrupts.S │ │ │ │ │ ├── EnableInterrupts.asm │ │ │ │ │ ├── EnableInterrupts.c │ │ │ │ │ ├── EnablePaging32.S │ │ │ │ │ ├── EnablePaging32.asm │ │ │ │ │ ├── EnablePaging32.c │ │ │ │ │ ├── EnablePaging64.S │ │ │ │ │ ├── EnablePaging64.asm │ │ │ │ │ ├── FlushCacheLine.S │ │ │ │ │ ├── FlushCacheLine.asm │ │ │ │ │ ├── FlushCacheLine.c │ │ │ │ │ ├── FxRestore.S │ │ │ │ │ ├── FxRestore.asm │ │ │ │ │ ├── FxRestore.c │ │ │ │ │ ├── FxSave.S │ │ │ │ │ ├── FxSave.asm │ │ │ │ │ ├── FxSave.c │ │ │ │ │ ├── InterlockedCompareExchange32.S │ │ │ │ │ ├── InterlockedCompareExchange32.asm │ │ │ │ │ ├── InterlockedCompareExchange32.c │ │ │ │ │ ├── InterlockedCompareExchange64.S │ │ │ │ │ ├── InterlockedCompareExchange64.asm │ │ │ │ │ ├── InterlockedCompareExchange64.c │ │ │ │ │ ├── InterlockedDecrement.S │ │ │ │ │ ├── InterlockedDecrement.asm │ │ │ │ │ ├── InterlockedDecrement.c │ │ │ │ │ ├── InterlockedIncrement.S │ │ │ │ │ ├── InterlockedIncrement.asm │ │ │ │ │ ├── InterlockedIncrement.c │ │ │ │ │ ├── InternalSwitchStack.c │ │ │ │ │ ├── Invd.S │ │ │ │ │ ├── Invd.asm │ │ │ │ │ ├── Invd.c │ │ │ │ │ ├── LRotU64.S │ │ │ │ │ ├── LRotU64.asm │ │ │ │ │ ├── LRotU64.c │ │ │ │ │ ├── LShiftU64.S │ │ │ │ │ ├── LShiftU64.asm │ │ │ │ │ ├── LShiftU64.c │ │ │ │ │ ├── LongJump.S │ │ │ │ │ ├── LongJump.asm │ │ │ │ │ ├── LongJump.c │ │ │ │ │ ├── ModU64x32.S │ │ │ │ │ ├── ModU64x32.asm │ │ │ │ │ ├── ModU64x32.c │ │ │ │ │ ├── Monitor.S │ │ │ │ │ ├── Monitor.asm │ │ │ │ │ ├── Monitor.c │ │ │ │ │ ├── MultU64x32.S │ │ │ │ │ ├── MultU64x32.asm │ │ │ │ │ ├── MultU64x32.c │ │ │ │ │ ├── MultU64x64.S │ │ │ │ │ ├── MultU64x64.asm │ │ │ │ │ ├── MultU64x64.c │ │ │ │ │ ├── Mwait.S │ │ │ │ │ ├── Mwait.asm │ │ │ │ │ ├── Mwait.c │ │ │ │ │ ├── Non-existing.c │ │ │ │ │ ├── RRotU64.S │ │ │ │ │ ├── RRotU64.asm │ │ │ │ │ ├── RRotU64.c │ │ │ │ │ ├── RShiftU64.S │ │ │ │ │ ├── RShiftU64.asm │ │ │ │ │ ├── RShiftU64.c │ │ │ │ │ ├── ReadCr0.S │ │ │ │ │ ├── ReadCr0.asm │ │ │ │ │ ├── ReadCr0.c │ │ │ │ │ ├── ReadCr2.S │ │ │ │ │ ├── ReadCr2.asm │ │ │ │ │ ├── ReadCr2.c │ │ │ │ │ ├── ReadCr3.S │ │ │ │ │ ├── ReadCr3.asm │ │ │ │ │ ├── ReadCr3.c │ │ │ │ │ ├── ReadCr4.S │ │ │ │ │ ├── ReadCr4.asm │ │ │ │ │ ├── ReadCr4.c │ │ │ │ │ ├── ReadCs.S │ │ │ │ │ ├── ReadCs.asm │ │ │ │ │ ├── ReadCs.c │ │ │ │ │ ├── ReadDr0.S │ │ │ │ │ ├── ReadDr0.asm │ │ │ │ │ ├── ReadDr0.c │ │ │ │ │ ├── ReadDr1.S │ │ │ │ │ ├── ReadDr1.asm │ │ │ │ │ ├── ReadDr1.c │ │ │ │ │ ├── ReadDr2.S │ │ │ │ │ ├── ReadDr2.asm │ │ │ │ │ ├── ReadDr2.c │ │ │ │ │ ├── ReadDr3.S │ │ │ │ │ ├── ReadDr3.asm │ │ │ │ │ ├── ReadDr3.c │ │ │ │ │ ├── ReadDr4.S │ │ │ │ │ ├── ReadDr4.asm │ │ │ │ │ ├── ReadDr4.c │ │ │ │ │ ├── ReadDr5.S │ │ │ │ │ ├── ReadDr5.asm │ │ │ │ │ ├── ReadDr5.c │ │ │ │ │ ├── ReadDr6.S │ │ │ │ │ ├── ReadDr6.asm │ │ │ │ │ ├── ReadDr6.c │ │ │ │ │ ├── ReadDr7.S │ │ │ │ │ ├── ReadDr7.asm │ │ │ │ │ ├── ReadDr7.c │ │ │ │ │ ├── ReadDs.S │ │ │ │ │ ├── ReadDs.asm │ │ │ │ │ ├── ReadDs.c │ │ │ │ │ ├── ReadEflags.S │ │ │ │ │ ├── ReadEflags.asm │ │ │ │ │ ├── ReadEflags.c │ │ │ │ │ ├── ReadEs.S │ │ │ │ │ ├── ReadEs.asm │ │ │ │ │ ├── ReadEs.c │ │ │ │ │ ├── ReadFs.S │ │ │ │ │ ├── ReadFs.asm │ │ │ │ │ ├── ReadFs.c │ │ │ │ │ ├── ReadGdtr.S │ │ │ │ │ ├── ReadGdtr.asm │ │ │ │ │ ├── ReadGdtr.c │ │ │ │ │ ├── ReadGs.S │ │ │ │ │ ├── ReadGs.asm │ │ │ │ │ ├── ReadGs.c │ │ │ │ │ ├── ReadIdtr.S │ │ │ │ │ ├── ReadIdtr.asm │ │ │ │ │ ├── ReadIdtr.c │ │ │ │ │ ├── ReadLdtr.S │ │ │ │ │ ├── ReadLdtr.asm │ │ │ │ │ ├── ReadLdtr.c │ │ │ │ │ ├── ReadMm0.S │ │ │ │ │ ├── ReadMm0.asm │ │ │ │ │ ├── ReadMm0.c │ │ │ │ │ ├── ReadMm1.S │ │ │ │ │ ├── ReadMm1.asm │ │ │ │ │ ├── ReadMm1.c │ │ │ │ │ ├── ReadMm2.S │ │ │ │ │ ├── ReadMm2.asm │ │ │ │ │ ├── ReadMm2.c │ │ │ │ │ ├── ReadMm3.S │ │ │ │ │ ├── ReadMm3.asm │ │ │ │ │ ├── ReadMm3.c │ │ │ │ │ ├── ReadMm4.S │ │ │ │ │ ├── ReadMm4.asm │ │ │ │ │ ├── ReadMm4.c │ │ │ │ │ ├── ReadMm5.S │ │ │ │ │ ├── ReadMm5.asm │ │ │ │ │ ├── ReadMm5.c │ │ │ │ │ ├── ReadMm6.S │ │ │ │ │ ├── ReadMm6.asm │ │ │ │ │ ├── ReadMm6.c │ │ │ │ │ ├── ReadMm7.S │ │ │ │ │ ├── ReadMm7.asm │ │ │ │ │ ├── ReadMm7.c │ │ │ │ │ ├── ReadMsr64.S │ │ │ │ │ ├── ReadMsr64.asm │ │ │ │ │ ├── ReadMsr64.c │ │ │ │ │ ├── ReadPmc.S │ │ │ │ │ ├── ReadPmc.asm │ │ │ │ │ ├── ReadPmc.c │ │ │ │ │ ├── ReadSs.S │ │ │ │ │ ├── ReadSs.asm │ │ │ │ │ ├── ReadSs.c │ │ │ │ │ ├── ReadTr.S │ │ │ │ │ ├── ReadTr.asm │ │ │ │ │ ├── ReadTr.c │ │ │ │ │ ├── ReadTsc.S │ │ │ │ │ ├── ReadTsc.asm │ │ │ │ │ ├── ReadTsc.c │ │ │ │ │ ├── SetJump.S │ │ │ │ │ ├── SetJump.asm │ │ │ │ │ ├── SetJump.c │ │ │ │ │ ├── SwapBytes64.S │ │ │ │ │ ├── SwapBytes64.asm │ │ │ │ │ ├── SwapBytes64.c │ │ │ │ │ ├── Thunk16.S │ │ │ │ │ ├── Thunk16.asm │ │ │ │ │ ├── Wbinvd.S │ │ │ │ │ ├── Wbinvd.asm │ │ │ │ │ ├── Wbinvd.c │ │ │ │ │ ├── WriteCr0.S │ │ │ │ │ ├── WriteCr0.asm │ │ │ │ │ ├── WriteCr0.c │ │ │ │ │ ├── WriteCr2.S │ │ │ │ │ ├── WriteCr2.asm │ │ │ │ │ ├── WriteCr2.c │ │ │ │ │ ├── WriteCr3.S │ │ │ │ │ ├── WriteCr3.asm │ │ │ │ │ ├── WriteCr3.c │ │ │ │ │ ├── WriteCr4.S │ │ │ │ │ ├── WriteCr4.asm │ │ │ │ │ ├── WriteCr4.c │ │ │ │ │ ├── WriteDr0.S │ │ │ │ │ ├── WriteDr0.asm │ │ │ │ │ ├── WriteDr0.c │ │ │ │ │ ├── WriteDr1.S │ │ │ │ │ ├── WriteDr1.asm │ │ │ │ │ ├── WriteDr1.c │ │ │ │ │ ├── WriteDr2.S │ │ │ │ │ ├── WriteDr2.asm │ │ │ │ │ ├── WriteDr2.c │ │ │ │ │ ├── WriteDr3.S │ │ │ │ │ ├── WriteDr3.asm │ │ │ │ │ ├── WriteDr3.c │ │ │ │ │ ├── WriteDr4.S │ │ │ │ │ ├── WriteDr4.asm │ │ │ │ │ ├── WriteDr4.c │ │ │ │ │ ├── WriteDr5.S │ │ │ │ │ ├── WriteDr5.asm │ │ │ │ │ ├── WriteDr5.c │ │ │ │ │ ├── WriteDr6.S │ │ │ │ │ ├── WriteDr6.asm │ │ │ │ │ ├── WriteDr6.c │ │ │ │ │ ├── WriteDr7.S │ │ │ │ │ ├── WriteDr7.asm │ │ │ │ │ ├── WriteDr7.c │ │ │ │ │ ├── WriteGdtr.S │ │ │ │ │ ├── WriteGdtr.asm │ │ │ │ │ ├── WriteGdtr.c │ │ │ │ │ ├── WriteIdtr.S │ │ │ │ │ ├── WriteIdtr.asm │ │ │ │ │ ├── WriteIdtr.c │ │ │ │ │ ├── WriteLdtr.S │ │ │ │ │ ├── WriteLdtr.asm │ │ │ │ │ ├── WriteLdtr.c │ │ │ │ │ ├── WriteMm0.S │ │ │ │ │ ├── WriteMm0.asm │ │ │ │ │ ├── WriteMm0.c │ │ │ │ │ ├── WriteMm1.S │ │ │ │ │ ├── WriteMm1.asm │ │ │ │ │ ├── WriteMm1.c │ │ │ │ │ ├── WriteMm2.S │ │ │ │ │ ├── WriteMm2.asm │ │ │ │ │ ├── WriteMm2.c │ │ │ │ │ ├── WriteMm3.S │ │ │ │ │ ├── WriteMm3.asm │ │ │ │ │ ├── WriteMm3.c │ │ │ │ │ ├── WriteMm4.S │ │ │ │ │ ├── WriteMm4.asm │ │ │ │ │ ├── WriteMm4.c │ │ │ │ │ ├── WriteMm5.S │ │ │ │ │ ├── WriteMm5.asm │ │ │ │ │ ├── WriteMm5.c │ │ │ │ │ ├── WriteMm6.S │ │ │ │ │ ├── WriteMm6.asm │ │ │ │ │ ├── WriteMm6.c │ │ │ │ │ ├── WriteMm7.S │ │ │ │ │ ├── WriteMm7.asm │ │ │ │ │ ├── WriteMm7.c │ │ │ │ │ ├── WriteMsr64.S │ │ │ │ │ ├── WriteMsr64.asm │ │ │ │ │ └── WriteMsr64.c │ │ │ │ ├── Ipf │ │ │ │ │ ├── AccessDbr.s │ │ │ │ │ ├── AccessEicr.s │ │ │ │ │ ├── AccessGcr.s │ │ │ │ │ ├── AccessGp.s │ │ │ │ │ ├── AccessKr.s │ │ │ │ │ ├── AccessPmr.s │ │ │ │ │ ├── AccessPsr.s │ │ │ │ │ ├── AsmPalCall.s │ │ │ │ │ ├── CpuBreakpoint.c │ │ │ │ │ ├── CpuBreakpointMsc.c │ │ │ │ │ ├── CpuFlushTlb.s │ │ │ │ │ ├── CpuPause.s │ │ │ │ │ ├── ExecFc.s │ │ │ │ │ ├── FlushCacheRange.s │ │ │ │ │ ├── GetInterruptState.s │ │ │ │ │ ├── InterlockedCompareExchange32.s │ │ │ │ │ ├── InterlockedCompareExchange64.s │ │ │ │ │ ├── InternalSwitchStack.c │ │ │ │ │ ├── PalCallStatic.s │ │ │ │ │ ├── ReadCpuid.s │ │ │ │ │ ├── SwitchStack.s │ │ │ │ │ ├── Synchronization.c │ │ │ │ │ ├── Unaligned.c │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── ia_64gen.h │ │ │ │ │ ├── longjmp.s │ │ │ │ │ └── setjmp.s │ │ │ │ ├── LRotU32.c │ │ │ │ ├── LRotU64.c │ │ │ │ ├── LShiftU64.c │ │ │ │ ├── LinkedList.c │ │ │ │ ├── LongJump.c │ │ │ │ ├── LowBitSet32.c │ │ │ │ ├── LowBitSet64.c │ │ │ │ ├── Math64.c │ │ │ │ ├── ModU64x32.c │ │ │ │ ├── MultS64x64.c │ │ │ │ ├── MultU64x32.c │ │ │ │ ├── MultU64x64.c │ │ │ │ ├── RRotU32.c │ │ │ │ ├── RRotU64.c │ │ │ │ ├── RShiftU64.c │ │ │ │ ├── SetJump.c │ │ │ │ ├── String.c │ │ │ │ ├── SwapBytes16.c │ │ │ │ ├── SwapBytes32.c │ │ │ │ ├── SwapBytes64.c │ │ │ │ ├── SwitchStack.c │ │ │ │ ├── Synchronization.c │ │ │ │ ├── SynchronizationGcc.c │ │ │ │ ├── SynchronizationMsc.c │ │ │ │ ├── Unaligned.c │ │ │ │ ├── X64 │ │ │ │ │ ├── CpuBreakpoint.S │ │ │ │ │ ├── CpuBreakpoint.asm │ │ │ │ │ ├── CpuBreakpoint.c │ │ │ │ │ ├── CpuFlushTlb.asm │ │ │ │ │ ├── CpuId.S │ │ │ │ │ ├── CpuId.asm │ │ │ │ │ ├── CpuIdEx.S │ │ │ │ │ ├── CpuIdEx.asm │ │ │ │ │ ├── CpuPause.S │ │ │ │ │ ├── CpuPause.asm │ │ │ │ │ ├── CpuSleep.S │ │ │ │ │ ├── CpuSleep.asm │ │ │ │ │ ├── DisableInterrupts.S │ │ │ │ │ ├── DisableInterrupts.asm │ │ │ │ │ ├── DisablePaging64.S │ │ │ │ │ ├── DisablePaging64.asm │ │ │ │ │ ├── EnableDisableInterrupts.S │ │ │ │ │ ├── EnableDisableInterrupts.asm │ │ │ │ │ ├── EnableInterrupts.S │ │ │ │ │ ├── EnableInterrupts.asm │ │ │ │ │ ├── EnablePaging64.S │ │ │ │ │ ├── EnablePaging64.asm │ │ │ │ │ ├── FlushCacheLine.S │ │ │ │ │ ├── FlushCacheLine.asm │ │ │ │ │ ├── FxRestore.S │ │ │ │ │ ├── FxRestore.asm │ │ │ │ │ ├── FxSave.S │ │ │ │ │ ├── FxSave.asm │ │ │ │ │ ├── InterlockedCompareExchange32.S │ │ │ │ │ ├── InterlockedCompareExchange32.asm │ │ │ │ │ ├── InterlockedCompareExchange32.c │ │ │ │ │ ├── InterlockedCompareExchange64.S │ │ │ │ │ ├── InterlockedCompareExchange64.asm │ │ │ │ │ ├── InterlockedCompareExchange64.c │ │ │ │ │ ├── InterlockedDecrement.S │ │ │ │ │ ├── InterlockedDecrement.asm │ │ │ │ │ ├── InterlockedDecrement.c │ │ │ │ │ ├── InterlockedIncrement.S │ │ │ │ │ ├── InterlockedIncrement.asm │ │ │ │ │ ├── InterlockedIncrement.c │ │ │ │ │ ├── Invd.S │ │ │ │ │ ├── Invd.asm │ │ │ │ │ ├── LongJump.S │ │ │ │ │ ├── LongJump.asm │ │ │ │ │ ├── Monitor.S │ │ │ │ │ ├── Monitor.asm │ │ │ │ │ ├── Mwait.S │ │ │ │ │ ├── Mwait.asm │ │ │ │ │ ├── Non-existing.c │ │ │ │ │ ├── ReadCr0.S │ │ │ │ │ ├── ReadCr0.asm │ │ │ │ │ ├── ReadCr2.S │ │ │ │ │ ├── ReadCr2.asm │ │ │ │ │ ├── ReadCr3.S │ │ │ │ │ ├── ReadCr3.asm │ │ │ │ │ ├── ReadCr4.S │ │ │ │ │ ├── ReadCr4.asm │ │ │ │ │ ├── ReadCs.S │ │ │ │ │ ├── ReadCs.asm │ │ │ │ │ ├── ReadDr0.S │ │ │ │ │ ├── ReadDr0.asm │ │ │ │ │ ├── ReadDr1.S │ │ │ │ │ ├── ReadDr1.asm │ │ │ │ │ ├── ReadDr2.S │ │ │ │ │ ├── ReadDr2.asm │ │ │ │ │ ├── ReadDr3.S │ │ │ │ │ ├── ReadDr3.asm │ │ │ │ │ ├── ReadDr4.S │ │ │ │ │ ├── ReadDr4.asm │ │ │ │ │ ├── ReadDr5.S │ │ │ │ │ ├── ReadDr5.asm │ │ │ │ │ ├── ReadDr6.S │ │ │ │ │ ├── ReadDr6.asm │ │ │ │ │ ├── ReadDr7.S │ │ │ │ │ ├── ReadDr7.asm │ │ │ │ │ ├── ReadDs.S │ │ │ │ │ ├── ReadDs.asm │ │ │ │ │ ├── ReadEflags.S │ │ │ │ │ ├── ReadEflags.asm │ │ │ │ │ ├── ReadEs.S │ │ │ │ │ ├── ReadEs.asm │ │ │ │ │ ├── ReadFs.S │ │ │ │ │ ├── ReadFs.asm │ │ │ │ │ ├── ReadGdtr.S │ │ │ │ │ ├── ReadGdtr.asm │ │ │ │ │ ├── ReadGs.S │ │ │ │ │ ├── ReadGs.asm │ │ │ │ │ ├── ReadIdtr.S │ │ │ │ │ ├── ReadIdtr.asm │ │ │ │ │ ├── ReadLdtr.S │ │ │ │ │ ├── ReadLdtr.asm │ │ │ │ │ ├── ReadMm0.S │ │ │ │ │ ├── ReadMm0.asm │ │ │ │ │ ├── ReadMm1.S │ │ │ │ │ ├── ReadMm1.asm │ │ │ │ │ ├── ReadMm2.S │ │ │ │ │ ├── ReadMm2.asm │ │ │ │ │ ├── ReadMm3.S │ │ │ │ │ ├── ReadMm3.asm │ │ │ │ │ ├── ReadMm4.S │ │ │ │ │ ├── ReadMm4.asm │ │ │ │ │ ├── ReadMm5.S │ │ │ │ │ ├── ReadMm5.asm │ │ │ │ │ ├── ReadMm6.S │ │ │ │ │ ├── ReadMm6.asm │ │ │ │ │ ├── ReadMm7.S │ │ │ │ │ ├── ReadMm7.asm │ │ │ │ │ ├── ReadMsr64.S │ │ │ │ │ ├── ReadMsr64.asm │ │ │ │ │ ├── ReadMsr64.c │ │ │ │ │ ├── ReadPmc.S │ │ │ │ │ ├── ReadPmc.asm │ │ │ │ │ ├── ReadSs.S │ │ │ │ │ ├── ReadSs.asm │ │ │ │ │ ├── ReadTr.S │ │ │ │ │ ├── ReadTr.asm │ │ │ │ │ ├── ReadTsc.S │ │ │ │ │ ├── ReadTsc.asm │ │ │ │ │ ├── SetJump.S │ │ │ │ │ ├── SetJump.asm │ │ │ │ │ ├── SwitchStack.S │ │ │ │ │ ├── SwitchStack.asm │ │ │ │ │ ├── Thunk16.S │ │ │ │ │ ├── Thunk16.asm │ │ │ │ │ ├── Wbinvd.S │ │ │ │ │ ├── Wbinvd.asm │ │ │ │ │ ├── WriteCr0.S │ │ │ │ │ ├── WriteCr0.asm │ │ │ │ │ ├── WriteCr2.S │ │ │ │ │ ├── WriteCr2.asm │ │ │ │ │ ├── WriteCr3.S │ │ │ │ │ ├── WriteCr3.asm │ │ │ │ │ ├── WriteCr4.S │ │ │ │ │ ├── WriteCr4.asm │ │ │ │ │ ├── WriteDr0.S │ │ │ │ │ ├── WriteDr0.asm │ │ │ │ │ ├── WriteDr1.S │ │ │ │ │ ├── WriteDr1.asm │ │ │ │ │ ├── WriteDr2.S │ │ │ │ │ ├── WriteDr2.asm │ │ │ │ │ ├── WriteDr3.S │ │ │ │ │ ├── WriteDr3.asm │ │ │ │ │ ├── WriteDr4.S │ │ │ │ │ ├── WriteDr4.asm │ │ │ │ │ ├── WriteDr5.S │ │ │ │ │ ├── WriteDr5.asm │ │ │ │ │ ├── WriteDr6.S │ │ │ │ │ ├── WriteDr6.asm │ │ │ │ │ ├── WriteDr7.S │ │ │ │ │ ├── WriteDr7.asm │ │ │ │ │ ├── WriteGdtr.S │ │ │ │ │ ├── WriteGdtr.asm │ │ │ │ │ ├── WriteIdtr.S │ │ │ │ │ ├── WriteIdtr.asm │ │ │ │ │ ├── WriteLdtr.S │ │ │ │ │ ├── WriteLdtr.asm │ │ │ │ │ ├── WriteMm0.S │ │ │ │ │ ├── WriteMm0.asm │ │ │ │ │ ├── WriteMm1.S │ │ │ │ │ ├── WriteMm1.asm │ │ │ │ │ ├── WriteMm2.S │ │ │ │ │ ├── WriteMm2.asm │ │ │ │ │ ├── WriteMm3.S │ │ │ │ │ ├── WriteMm3.asm │ │ │ │ │ ├── WriteMm4.S │ │ │ │ │ ├── WriteMm4.asm │ │ │ │ │ ├── WriteMm5.S │ │ │ │ │ ├── WriteMm5.asm │ │ │ │ │ ├── WriteMm6.S │ │ │ │ │ ├── WriteMm6.asm │ │ │ │ │ ├── WriteMm7.S │ │ │ │ │ ├── WriteMm7.asm │ │ │ │ │ ├── WriteMsr64.S │ │ │ │ │ ├── WriteMsr64.asm │ │ │ │ │ └── WriteMsr64.c │ │ │ │ ├── X86DisablePaging32.c │ │ │ │ ├── X86DisablePaging64.c │ │ │ │ ├── X86EnablePaging32.c │ │ │ │ ├── X86EnablePaging64.c │ │ │ │ ├── X86FxRestore.c │ │ │ │ ├── X86FxSave.c │ │ │ │ ├── X86GetInterruptState.c │ │ │ │ ├── X86MemoryFence.c │ │ │ │ ├── X86Msr.c │ │ │ │ ├── X86ReadGdtr.c │ │ │ │ ├── X86ReadIdtr.c │ │ │ │ ├── X86Thunk.c │ │ │ │ ├── X86WriteGdtr.c │ │ │ │ └── X86WriteIdtr.c │ │ │ │ ├── BaseMemoryLib │ │ │ │ ├── BaseMemoryLib.inf │ │ │ │ ├── BaseMemoryLibInternal.h │ │ │ │ ├── CompareMemWrapper.c │ │ │ │ ├── CopyMemWrapper.c │ │ │ │ ├── Ebc │ │ │ │ │ ├── CopyMem.c │ │ │ │ │ ├── MemLibGeneric.c │ │ │ │ │ └── SetMem.c │ │ │ │ ├── Ia32 │ │ │ │ │ ├── CompareMem.S │ │ │ │ │ ├── CompareMem.asm │ │ │ │ │ ├── CopyMem.S │ │ │ │ │ ├── CopyMem.asm │ │ │ │ │ ├── ScanMem16.S │ │ │ │ │ ├── ScanMem16.asm │ │ │ │ │ ├── ScanMem32.S │ │ │ │ │ ├── ScanMem32.asm │ │ │ │ │ ├── ScanMem64.S │ │ │ │ │ ├── ScanMem64.asm │ │ │ │ │ ├── ScanMem8.S │ │ │ │ │ ├── ScanMem8.asm │ │ │ │ │ ├── SetMem.S │ │ │ │ │ ├── SetMem.asm │ │ │ │ │ ├── SetMem16.S │ │ │ │ │ ├── SetMem16.asm │ │ │ │ │ ├── SetMem32.S │ │ │ │ │ ├── SetMem32.asm │ │ │ │ │ ├── SetMem64.S │ │ │ │ │ ├── SetMem64.asm │ │ │ │ │ ├── ZeroMem.S │ │ │ │ │ └── ZeroMem.asm │ │ │ │ ├── Ipf │ │ │ │ │ ├── CopyMem.c │ │ │ │ │ ├── MemLibGeneric.c │ │ │ │ │ └── SetMem.c │ │ │ │ ├── MemLibGuid.c │ │ │ │ ├── ScanMem16Wrapper.c │ │ │ │ ├── ScanMem32Wrapper.c │ │ │ │ ├── ScanMem64Wrapper.c │ │ │ │ ├── ScanMem8Wrapper.c │ │ │ │ ├── SetMem16Wrapper.c │ │ │ │ ├── SetMem32Wrapper.c │ │ │ │ ├── SetMem64Wrapper.c │ │ │ │ ├── SetMemWrapper.c │ │ │ │ ├── X64 │ │ │ │ │ ├── CompareMem.S │ │ │ │ │ ├── CompareMem.asm │ │ │ │ │ ├── CopyMem.S │ │ │ │ │ ├── CopyMem.asm │ │ │ │ │ ├── ScanMem16.S │ │ │ │ │ ├── ScanMem16.asm │ │ │ │ │ ├── ScanMem32.S │ │ │ │ │ ├── ScanMem32.asm │ │ │ │ │ ├── ScanMem64.S │ │ │ │ │ ├── ScanMem64.asm │ │ │ │ │ ├── ScanMem8.S │ │ │ │ │ ├── ScanMem8.asm │ │ │ │ │ ├── SetMem.S │ │ │ │ │ ├── SetMem.asm │ │ │ │ │ ├── SetMem16.S │ │ │ │ │ ├── SetMem16.asm │ │ │ │ │ ├── SetMem32.S │ │ │ │ │ ├── SetMem32.asm │ │ │ │ │ ├── SetMem64.S │ │ │ │ │ ├── SetMem64.asm │ │ │ │ │ ├── ZeroMem.S │ │ │ │ │ └── ZeroMem.asm │ │ │ │ └── ZeroMemWrapper.c │ │ │ │ ├── BasePciCf8Lib │ │ │ │ ├── BasePciCf8Lib.inf │ │ │ │ └── PciLib.c │ │ │ │ ├── BasePciExpressLib │ │ │ │ ├── BasePciExpressLib.inf │ │ │ │ └── PciLib.c │ │ │ │ ├── BasePciLibCf8 │ │ │ │ ├── BasePciLibCf8.inf │ │ │ │ └── PciLib.c │ │ │ │ ├── BasePciLibPciExpress │ │ │ │ ├── BasePciLibPciExpress.inf │ │ │ │ └── PciLib.c │ │ │ │ ├── BasePeCoffGetEntryPointLib │ │ │ │ ├── BasePeCoffGetEntryPointLib.inf │ │ │ │ └── PeCoffGetEntryPoint.c │ │ │ │ ├── BasePeCoffLib │ │ │ │ ├── BasePeCoff.c │ │ │ │ ├── BasePeCoffLib.inf │ │ │ │ ├── BasePeCoffLibInternals.h │ │ │ │ ├── Ebc │ │ │ │ │ └── PeCoffLoaderEx.c │ │ │ │ ├── Ia32 │ │ │ │ │ └── PeCoffLoaderEx.c │ │ │ │ ├── Ipf │ │ │ │ │ └── PeCoffLoaderEx.c │ │ │ │ └── X64 │ │ │ │ │ └── PeCoffLoaderEx.c │ │ │ │ ├── BasePostCodeLibDebug │ │ │ │ ├── BasePostCodeLibDebug.inf │ │ │ │ └── PostCode.c │ │ │ │ ├── BasePostCodeLibPort80 │ │ │ │ ├── BasePostCodeLibPort80.inf │ │ │ │ └── PostCode.c │ │ │ │ ├── BasePrintLib │ │ │ │ ├── BasePrintLib.inf │ │ │ │ ├── PrintLib.c │ │ │ │ ├── PrintLibInternal.c │ │ │ │ └── PrintLibInternal.h │ │ │ │ ├── BaseTimerLibLocalApic │ │ │ │ ├── BaseTimerLibLocalApic.inf │ │ │ │ ├── Ebc │ │ │ │ │ └── EbcTimerLib.c │ │ │ │ ├── Ia32 │ │ │ │ │ └── X86LocalApicTimerInitialize.asm │ │ │ │ ├── Ipf │ │ │ │ │ └── IpfTimerLib.c │ │ │ │ ├── X64 │ │ │ │ │ └── X86LocalApicTimerInitialize.asm │ │ │ │ └── X86TimerLib.c │ │ │ │ ├── BaseUefiDecompressLib │ │ │ │ ├── BaseUefiDecompressLib.c │ │ │ │ ├── BaseUefiDecompressLib.inf │ │ │ │ └── BaseUefiDecompressLibInternals.h │ │ │ │ ├── DxeHobLib │ │ │ │ ├── DxeHobLib.inf │ │ │ │ └── HobLib.c │ │ │ │ ├── DxeIoLibCpuIo │ │ │ │ ├── DxeCpuIoLibInternal.h │ │ │ │ ├── DxeIoLibCpuIo.inf │ │ │ │ ├── IoHighLevel.c │ │ │ │ └── IoLib.c │ │ │ │ ├── DxeMemoryAllocationLib │ │ │ │ ├── DxeMemoryAllocationLib.inf │ │ │ │ └── MemoryAllocationLib.c │ │ │ │ ├── DxePerformanceLib │ │ │ │ ├── DxePerformanceLib.inf │ │ │ │ └── PerformanceLib.c │ │ │ │ ├── DxeReportStatusCodeLib │ │ │ │ ├── DxeReportStatusCodeLib.inf │ │ │ │ └── ReportStatusCodeLib.c │ │ │ │ ├── DxeServicesTableLib │ │ │ │ ├── DxeServicesTableLib.c │ │ │ │ └── DxeServicesTableLib.inf │ │ │ │ ├── DxeSmbusLib │ │ │ │ ├── DxeSmbusLib.c │ │ │ │ ├── DxeSmbusLib.inf │ │ │ │ ├── DxeSmbusLibInternal.h │ │ │ │ └── SmbusLib.c │ │ │ │ ├── EdkDxeRuntimeDriverLib │ │ │ │ ├── Common │ │ │ │ │ ├── RuntimeLib.c │ │ │ │ │ └── RuntimeService.c │ │ │ │ ├── EdkDxeRuntimeDriverLib.inf │ │ │ │ ├── Ipf │ │ │ │ │ ├── RuntimeLib.c │ │ │ │ │ └── RuntimeService.c │ │ │ │ └── RuntimeLibInternal.h │ │ │ │ ├── EdkDxeSalLib │ │ │ │ ├── EdkDxeSalLib.inf │ │ │ │ └── Ipf │ │ │ │ │ ├── AsmEsalServiceLib.s │ │ │ │ │ └── EsalServiceLib.c │ │ │ │ ├── HiiLib │ │ │ │ ├── HiiLib.c │ │ │ │ └── HiiLib.inf │ │ │ │ ├── PeiDxeDebugLibReportStatusCode │ │ │ │ ├── DebugLib.c │ │ │ │ └── PeiDxeDebugLibReportStatusCode.inf │ │ │ │ ├── PeiDxePostCodeLibReportStatusCode │ │ │ │ ├── PeiDxePostCodeLibReportStatusCode.inf │ │ │ │ └── PostCode.c │ │ │ │ ├── PeiHobLib │ │ │ │ ├── HobLib.c │ │ │ │ └── PeiHobLib.inf │ │ │ │ ├── PeiMemoryAllocationLib │ │ │ │ ├── MemoryAllocationLib.c │ │ │ │ └── PeiMemoryAllocationLib.inf │ │ │ │ ├── PeiPerformanceLib │ │ │ │ ├── PeiPerformanceLib.inf │ │ │ │ └── PerformanceLib.c │ │ │ │ ├── PeiReportStatusCodeLib │ │ │ │ ├── PeiReportStatusCodeLib.inf │ │ │ │ └── ReportStatusCodeLib.c │ │ │ │ ├── PeiResourcePublicationLib │ │ │ │ ├── PeiResourcePublicationLib.c │ │ │ │ └── PeiResourcePublicationLib.inf │ │ │ │ ├── PeiServicesLib │ │ │ │ ├── PeiServicesLib.c │ │ │ │ └── PeiServicesLib.inf │ │ │ │ ├── PeiServicesTablePointerLib │ │ │ │ ├── PeiServicesTablePointer.c │ │ │ │ └── PeiServicesTablePointerLib.inf │ │ │ │ ├── PeiServicesTablePointerLibKr1 │ │ │ │ ├── Ipf │ │ │ │ │ ├── ReadKr1.s │ │ │ │ │ └── WriteKr1.s │ │ │ │ ├── PeiServicesTablePointer.c │ │ │ │ ├── PeiServicesTablePointerLibInternals.h │ │ │ │ └── PeiServicesTablePointerLibKr1.inf │ │ │ │ ├── PeiServicesTablePointerLibMm7 │ │ │ │ ├── PeiServicesTablePointer.c │ │ │ │ └── PeiServicesTablePointerLibMm7.inf │ │ │ │ ├── PeiSmbusLib │ │ │ │ ├── PeiSmbusLib.c │ │ │ │ ├── PeiSmbusLib.inf │ │ │ │ ├── PeiSmbusLibInternal.h │ │ │ │ └── SmbusLib.c │ │ │ │ ├── SmmRuntimeDxeReportStatusCodeLib │ │ │ │ ├── ReportStatusCodeLib.c │ │ │ │ ├── ReportStatusCodeLibInternal.h │ │ │ │ ├── SmmRuntimeDxeReportStatusCodeLib.inf │ │ │ │ └── SmmRuntimeDxeSupport.c │ │ │ │ ├── UefiBootServicesTableLib │ │ │ │ ├── UefiBootServicesTableLib.c │ │ │ │ └── UefiBootServicesTableLib.inf │ │ │ │ ├── UefiDevicePathLib │ │ │ │ ├── UefiDevicePathLib.c │ │ │ │ └── UefiDevicePathLib.inf │ │ │ │ ├── UefiDriverModelLib │ │ │ │ ├── UefiDriverModelLib.c │ │ │ │ └── UefiDriverModelLib.inf │ │ │ │ ├── UefiLib │ │ │ │ ├── Console.c │ │ │ │ ├── UefiLib.c │ │ │ │ ├── UefiLib.inf │ │ │ │ └── UefiNotTiano.c │ │ │ │ └── UefiRuntimeServicesTableLib │ │ │ │ ├── UefiRuntimeServicesTableLib.c │ │ │ │ └── UefiRuntimeServicesTableLib.inf │ │ ├── EfiCommonLib │ │ │ ├── EfiCommonLib.inf │ │ │ ├── EfiCommonLib_Edk2.inf │ │ │ ├── EfiCompareGuid.c │ │ │ ├── EfiCompareMem.c │ │ │ ├── EfiCopyMem.c │ │ │ ├── EfiSetMem.c │ │ │ ├── EfiZeroMem.c │ │ │ ├── Ia32 │ │ │ │ ├── DivU64x32.S │ │ │ │ ├── DivU64x32.asm │ │ │ │ ├── DivU64x32.c │ │ │ │ ├── EfiCopyMem.S │ │ │ │ ├── EfiCopyMem.asm │ │ │ │ ├── EfiCopyMem.c │ │ │ │ ├── EfiCopyMemRep1.asm │ │ │ │ ├── EfiCopyMemRep1.c │ │ │ │ ├── EfiCopyMemRep4.c │ │ │ │ ├── EfiCopyMemSSE2.c │ │ │ │ ├── EfiSetMem.S │ │ │ │ ├── EfiSetMem.asm │ │ │ │ ├── EfiSetMem.c │ │ │ │ ├── EfiSetMemRep1.c │ │ │ │ ├── EfiSetMemRep4.asm │ │ │ │ ├── EfiSetMemRep4.c │ │ │ │ ├── EfiSetMemSSE2.c │ │ │ │ ├── EfiZeroMem.S │ │ │ │ ├── EfiZeroMem.asm │ │ │ │ ├── EfiZeroMem.c │ │ │ │ ├── EfiZeroMemRep1.c │ │ │ │ ├── EfiZeroMemRep4.asm │ │ │ │ ├── EfiZeroMemRep4.c │ │ │ │ ├── EfiZeroMemSSE2.c │ │ │ │ ├── GetPowerOfTwo.S │ │ │ │ ├── GetPowerOfTwo.asm │ │ │ │ ├── GetPowerOfTwo.c │ │ │ │ ├── LShiftU64.S │ │ │ │ ├── LShiftU64.asm │ │ │ │ ├── LShiftU64.c │ │ │ │ ├── Log2.S │ │ │ │ ├── Log2.asm │ │ │ │ ├── Log2.c │ │ │ │ ├── MultU64x32.S │ │ │ │ ├── MultU64x32.asm │ │ │ │ ├── MultU64x32.c │ │ │ │ ├── Power10U64.S │ │ │ │ ├── Power10U64.asm │ │ │ │ ├── Power10U64.c │ │ │ │ ├── RShiftU64.S │ │ │ │ ├── RShiftU64.asm │ │ │ │ └── RShiftU64.c │ │ │ ├── LinkedList.c │ │ │ ├── Math.c │ │ │ ├── Misc.c │ │ │ ├── PostCode.c │ │ │ ├── ReportStatusCode.c │ │ │ ├── String.c │ │ │ ├── ValueToString.c │ │ │ └── X64 │ │ │ │ ├── EfiCopyMem.asm │ │ │ │ ├── EfiCopyMemRep1.S │ │ │ │ ├── EfiCopyMemRep1.asm │ │ │ │ ├── EfiCopyMemRep4.asm │ │ │ │ ├── EfiCopyMemRep8.asm │ │ │ │ ├── EfiCopyMemSSE2.asm │ │ │ │ ├── EfiSetMem.asm │ │ │ │ ├── EfiSetMemRep1.asm │ │ │ │ ├── EfiSetMemRep4.S │ │ │ │ ├── EfiSetMemRep4.asm │ │ │ │ ├── EfiSetMemRep8.asm │ │ │ │ ├── EfiSetMemSSE2.asm │ │ │ │ ├── EfiZeroMem.asm │ │ │ │ ├── EfiZeroMemRep1.asm │ │ │ │ ├── EfiZeroMemRep4.S │ │ │ │ ├── EfiZeroMemRep4.asm │ │ │ │ ├── EfiZeroMemRep8.asm │ │ │ │ └── EfiZeroMemSSE2.asm │ │ ├── Pei │ │ │ ├── Hob │ │ │ │ ├── PeiHobLib.c │ │ │ │ └── PeiHobLib.inf │ │ │ ├── Include │ │ │ │ ├── PeiHobLib.h │ │ │ │ └── PeiLib.h │ │ │ └── PeiLib │ │ │ │ ├── Aarch64 │ │ │ │ └── PerformancePrimitives.c │ │ │ │ ├── Arm │ │ │ │ └── PerformancePrimitives.c │ │ │ │ ├── Debug.c │ │ │ │ ├── Decompress.c │ │ │ │ ├── FindFv.c │ │ │ │ ├── Hob │ │ │ │ └── Hob.c │ │ │ │ ├── Ia32 │ │ │ │ ├── EfiJump.h │ │ │ │ ├── PeCoffLoaderEx.c │ │ │ │ ├── PeCoffLoaderEx.h │ │ │ │ ├── PeiServicePointer.c │ │ │ │ ├── PerformancePrimitives.c │ │ │ │ ├── Processor.c │ │ │ │ ├── ProcessorAsms.Asm │ │ │ │ ├── ProcessorAsms.S │ │ │ │ ├── ReadIdt.S │ │ │ │ ├── ReadIdt.asm │ │ │ │ ├── SupportItpDebug.S │ │ │ │ ├── SupportItpDebug.asm │ │ │ │ ├── WriteIdt.S │ │ │ │ └── WriteIdt.asm │ │ │ │ ├── Ipf │ │ │ │ ├── Asm.h │ │ │ │ ├── AsmCpuMisc.s │ │ │ │ ├── EfiJump.h │ │ │ │ ├── HwAccess.s │ │ │ │ ├── Ia_64Gen.h │ │ │ │ ├── Math.c │ │ │ │ ├── PeCoffLoaderEx.c │ │ │ │ ├── PeCoffLoaderEx.h │ │ │ │ ├── PeiServicePointer.c │ │ │ │ ├── PerformancePrimitives.s │ │ │ │ ├── PioFlush.s │ │ │ │ ├── Processor.c │ │ │ │ ├── SetJmp.s │ │ │ │ └── SwitchStack.s │ │ │ │ ├── PeCoffLoader.c │ │ │ │ ├── PeiLib.c │ │ │ │ ├── PeiLib.inf │ │ │ │ ├── PeiLib_Edk2.inf │ │ │ │ ├── Perf.c │ │ │ │ ├── Print │ │ │ │ ├── Print.c │ │ │ │ └── Print.h │ │ │ │ └── X64 │ │ │ │ ├── EfiJump.h │ │ │ │ ├── IdtDumb.c │ │ │ │ ├── Math.c │ │ │ │ ├── PeCoffLoaderEx.c │ │ │ │ ├── PeCoffLoaderEx.h │ │ │ │ ├── PeiServicePointer.c │ │ │ │ ├── PerformancePrimitives.c │ │ │ │ ├── Processor.c │ │ │ │ ├── ProcessorAsms.Asm │ │ │ │ ├── ProcessorAsms.S │ │ │ │ ├── SupportItpDebug.S │ │ │ │ └── SupportItpDebug.asm │ │ ├── RuntimeDxe │ │ │ └── EfiRuntimeLib │ │ │ │ ├── Debug.c │ │ │ │ ├── Ebc │ │ │ │ └── RuntimeLib.c │ │ │ │ ├── EfiRuntimeLib.inf │ │ │ │ ├── EfiRuntimeLib_Edk2.inf │ │ │ │ ├── Event.c │ │ │ │ ├── GetImage.c │ │ │ │ ├── Ia32 │ │ │ │ ├── CpuFlushCache.S │ │ │ │ ├── CpuFlushCache.asm │ │ │ │ ├── CpuFlushCache.c │ │ │ │ ├── Fvb.c │ │ │ │ ├── IoLib.c │ │ │ │ ├── Lock.c │ │ │ │ ├── PlatformIoLib.c │ │ │ │ └── RuntimeLib.c │ │ │ │ ├── Io.c │ │ │ │ ├── Ipf │ │ │ │ ├── AsmCpuMisc.s │ │ │ │ ├── EsalLib.s │ │ │ │ ├── Fvb.c │ │ │ │ ├── IpfCpuCache.s │ │ │ │ ├── Lock.c │ │ │ │ └── RuntimeLib.c │ │ │ │ ├── LibGlobals.c │ │ │ │ ├── RtDevicePath.c │ │ │ │ └── X64 │ │ │ │ ├── Fvb.c │ │ │ │ ├── IoLib.c │ │ │ │ ├── Lock.c │ │ │ │ ├── PlatformIoLib.c │ │ │ │ ├── RuntimeLib.c │ │ │ │ ├── RuntimeLibAsm.S │ │ │ │ └── RuntimeLibAsm.asm │ │ ├── Smm │ │ │ └── SmmScriptLib │ │ │ │ ├── PiSmmDefinition.h │ │ │ │ ├── PiSmmS3SaveState.h │ │ │ │ ├── SmmScriptLib.c │ │ │ │ ├── SmmScriptLib.h │ │ │ │ └── SmmScriptLib.inf │ │ └── Thunk16 │ │ │ ├── Ia32 │ │ │ ├── Fx.S │ │ │ ├── Fx.asm │ │ │ ├── Thunk16.S │ │ │ └── Thunk16.asm │ │ │ ├── Thunk16Lib.h │ │ │ ├── Thunk16Lib.inf │ │ │ ├── Thunk16Lib_Edk2.inf │ │ │ ├── X64 │ │ │ ├── Fx.S │ │ │ ├── Fx.asm │ │ │ ├── Thunk16.S │ │ │ └── Thunk16.asm │ │ │ └── X86Thunk.c │ ├── Ppi │ │ ├── BaseMemoryTest │ │ │ ├── BaseMemoryTest.c │ │ │ └── BaseMemoryTest.h │ │ ├── EdkPpiLib.inf │ │ ├── FlashMap │ │ │ ├── FlashMap.c │ │ │ └── FlashMap.h │ │ ├── OperatorPresence │ │ │ ├── OperatorPresence.c │ │ │ └── OperatorPresence.h │ │ ├── PeiInMemory │ │ │ ├── PeiInMemory.c │ │ │ └── PeiInMemory.h │ │ └── StatusCodeMemory │ │ │ ├── StatusCodeMemory.c │ │ │ └── StatusCodeMemory.h │ └── Protocol │ │ ├── ConsoleControl │ │ ├── ConsoleControl.c │ │ └── ConsoleControl.h │ │ ├── CustomizedDecompress │ │ ├── CustomizedDecompress.c │ │ └── CustomizedDecompress.h │ │ ├── DebugAssert │ │ ├── DebugAssert.c │ │ └── DebugAssert.h │ │ ├── DebugMask │ │ ├── DebugMask.c │ │ └── DebugMask.h │ │ ├── DebugSerialIo │ │ ├── DebugSerialIo.c │ │ └── DebugSerialIo.h │ │ ├── DiskInfo │ │ ├── DiskInfo.c │ │ └── DiskInfo.h │ │ ├── Dpc │ │ ├── Dpc.c │ │ └── Dpc.h │ │ ├── EdkProtocolLib.inf │ │ ├── EfiOemBadging │ │ ├── EfiOemBadging.c │ │ └── EfiOemBadging.h │ │ ├── ExtendedSalBootService │ │ ├── ExtendedSalBootService.c │ │ └── ExtendedSalBootService.h │ │ ├── ExtendedSalGuid │ │ ├── ExtendedSalGuid.c │ │ └── ExtendedSalGuid.h │ │ ├── FaultTolerantWriteLite │ │ ├── FaultTolerantWriteLite.c │ │ └── FaultTolerantWriteLite.h │ │ ├── FirmwareVolumeDispatch │ │ ├── FirmwareVolumeDispatch.c │ │ └── FirmwareVolumeDispatch.h │ │ ├── FvbExtension │ │ ├── FvbExtension.c │ │ └── FvbExtension.h │ │ ├── GenericMemoryTest │ │ ├── GenericMemoryTest.c │ │ └── GenericMemoryTest.h │ │ ├── GuidedSectionExtraction │ │ ├── GuidedSectionExtraction.c │ │ └── GuidedSectionExtraction.h │ │ ├── IsaAcpi │ │ ├── IsaAcpi.c │ │ └── IsaAcpi.h │ │ ├── IsaIo │ │ ├── IsaIo.c │ │ └── IsaIo.h │ │ ├── LegacyBiosThunk │ │ ├── LegacyBiosThunk.c │ │ └── LegacyBiosThunk.h │ │ ├── LoadPe32Image │ │ ├── LoadPe32Image.c │ │ └── LoadPe32Image.h │ │ ├── NicIp4Config │ │ ├── NicIp4Config.c │ │ └── NicIp4Config.h │ │ ├── PciHotPlugRequest │ │ ├── PciHotPlugRequest.c │ │ └── PciHotPlugRequest.h │ │ ├── Performance │ │ ├── Performance.c │ │ └── Performance.h │ │ ├── PlatformMemTest │ │ ├── PlatformMemTest.c │ │ └── PlatformMemTest.h │ │ ├── Print │ │ ├── Print.c │ │ └── Print.h │ │ ├── Ps2Policy │ │ ├── Ps2Policy.c │ │ └── Ps2Policy.h │ │ ├── PxeDhcp4 │ │ ├── PxeDhcp4.c │ │ └── PxeDhcp4.h │ │ ├── PxeDhcp4CallBack │ │ ├── PxeDhcp4CallBack.c │ │ └── PxeDhcp4CallBack.h │ │ ├── TcgService │ │ ├── TcgService.c │ │ └── TcgService.h │ │ ├── Tcp │ │ ├── Tcp.c │ │ └── Tcp.h │ │ ├── TianoDecompress │ │ ├── TianoDecompress.c │ │ └── TianoDecompress.h │ │ ├── UgaSplash │ │ ├── UgaSplash.c │ │ └── UgaSplash.h │ │ ├── UsbAtapi │ │ ├── UsbAtapi.c │ │ └── UsbAtapi.h │ │ ├── VariableStore │ │ ├── VariableStore.c │ │ └── VariableStore.h │ │ ├── VgaMiniPort │ │ ├── VgaMiniPort.c │ │ └── VgaMiniPort.h │ │ └── VirtualMemoryAccess │ │ ├── VirtualMemoryAccess.c │ │ └── VirtualMemoryAccess.h ├── License.txt ├── Other │ └── Maintained │ │ └── Tools │ │ └── Pccts │ │ ├── CHANGES_FROM_133.txt │ │ ├── CHANGES_FROM_133_before_mr13.txt │ │ ├── CHANGES_SUMMARY.txt │ │ ├── KNOWN_PROBLEMS.txt │ │ ├── README │ │ ├── bin │ │ ├── Antlr.exe │ │ ├── Dlg.exe │ │ └── Sorcerer.exe │ │ ├── h │ │ ├── AParser.cpp │ │ ├── AParser.h │ │ ├── ASTBase.cpp │ │ ├── ASTBase.h │ │ ├── ATokPtr.cpp │ │ ├── ATokPtr.h │ │ ├── AToken.h │ │ ├── ATokenBuffer.cpp │ │ ├── ATokenBuffer.h │ │ ├── ATokenStream.h │ │ ├── AToken_traditional.h │ │ ├── BufFileInput.cpp │ │ ├── BufFileInput.h │ │ ├── DLG_stream_input.h │ │ ├── DLexer.cpp │ │ ├── DLexerBase.cpp │ │ ├── DLexerBase.h │ │ ├── PBlackBox.h │ │ ├── PCCTSAST.cpp │ │ ├── PCCTSAST.h │ │ ├── SList.h │ │ ├── antlr.h │ │ ├── ast.c │ │ ├── ast.h │ │ ├── charbuf.h │ │ ├── charptr.c │ │ ├── charptr.h │ │ ├── config.h │ │ ├── dlgauto.h │ │ ├── dlgdef.h │ │ ├── err.h │ │ ├── int.h │ │ ├── pccts_assert.h │ │ ├── pccts_debug.lib │ │ ├── pccts_iostream.h │ │ ├── pccts_istream.h │ │ ├── pccts_release.lib │ │ ├── pccts_setjmp.h │ │ ├── pccts_stdarg.h │ │ ├── pccts_stdio.h │ │ ├── pccts_stdlib.h │ │ ├── pccts_string.h │ │ ├── pcctscfg.h │ │ ├── pcctslib50.dsp │ │ ├── pcctslib50.dsw │ │ ├── pcctslib60.dsp │ │ ├── pcctslib60.dsw │ │ ├── pcnames.bat │ │ └── slist.cpp │ │ ├── lib │ │ ├── pccts_debug.lib │ │ └── pccts_release.lib │ │ └── sorcerer │ │ ├── h │ │ ├── SASTBase.h │ │ ├── SCommonAST.h │ │ ├── STreeParser.h │ │ ├── astlib.h │ │ ├── sintstack.h │ │ ├── sorcerer.h │ │ ├── sorlist.h │ │ └── sstack.h │ │ └── lib │ │ ├── CASTBase.h │ │ ├── STreeParser.cpp │ │ ├── astlib.c │ │ ├── errsupport.c │ │ ├── makefile │ │ ├── msvc.dsp │ │ ├── sintstack.c │ │ ├── sorcerer.c │ │ ├── sorlist.c │ │ └── sstack.c └── Sample │ ├── CommonTools.env │ ├── Include │ ├── Efi2WinNT.h │ └── EfiWinNt.h │ ├── Library │ └── Dxe │ │ └── WinNt │ │ ├── WinNtLib.c │ │ └── WinNtLib.inf │ ├── LocalTools.env │ ├── Platform │ ├── Common.dsc │ ├── CommonIa32.dsc │ ├── CommonIpf.dsc │ ├── CommonX64.dsc │ ├── EdkIIGlueLib32.dsc │ ├── EdkIIGlueLibAll.dsc │ ├── EdkLib32.dsc │ ├── EdkLibAll.dsc │ ├── Generic │ │ ├── MonoStatusCode │ │ │ ├── Library │ │ │ │ └── Pei │ │ │ │ │ ├── Include │ │ │ │ │ ├── MemoryStatusCodeLib.h │ │ │ │ │ └── SimpleCpuIoLib.h │ │ │ │ │ └── MemoryStatusCode │ │ │ │ │ ├── MemoryStatusCode.c │ │ │ │ │ ├── MemoryStatusCode.h │ │ │ │ │ └── MemoryStatusCode.inf │ │ │ └── Pei │ │ │ │ └── MonoStatusCode.h │ │ ├── Pei │ │ │ └── Capsule │ │ │ │ └── Capsule.h │ │ └── RuntimeDxe │ │ │ └── StatusCode │ │ │ └── Lib │ │ │ ├── BsDataHubStatusCode │ │ │ ├── BsDataHubStatusCode.c │ │ │ ├── BsDataHubStatusCode.h │ │ │ └── BsDataHubStatusCode.inf │ │ │ ├── BsSerialStatusCode │ │ │ ├── BsSerialStatusCode.c │ │ │ ├── BsSerialStatusCode.h │ │ │ └── BsSerialStatusCode.inf │ │ │ ├── Include │ │ │ ├── BsDataHubStatusCodeLib.h │ │ │ ├── BsSerialStatusCodeLib.h │ │ │ ├── RtLedStatusCodeLib.h │ │ │ ├── RtMemoryStatusCodeLib.h │ │ │ ├── RtPlatformStatusCodeLib.h │ │ │ └── RtPort80StatusCodeLib.h │ │ │ ├── RtLedStatusCode │ │ │ ├── RtLedStatusCode.c │ │ │ ├── RtLedStatusCode.h │ │ │ └── RtLedStatusCode.inf │ │ │ ├── RtMemoryStatusCode │ │ │ ├── RtMemoryStatusCode.c │ │ │ ├── RtMemoryStatusCode.h │ │ │ └── RtMemoryStatusCode.inf │ │ │ ├── RtPlatformStatusCode │ │ │ └── Nt32 │ │ │ │ ├── RtPlatformStatusCode.c │ │ │ │ └── RtPlatformStatusCode.inf │ │ │ └── RtPort80StatusCode │ │ │ ├── RtPort80StatusCode.c │ │ │ ├── RtPort80StatusCode.h │ │ │ └── RtPort80StatusCode.inf │ └── Nt32 │ │ ├── Ppi │ │ ├── EdkNt32PpiLib.inf │ │ ├── NtAutoScan │ │ │ ├── NtAutoScan.c │ │ │ └── NtAutoScan.h │ │ ├── NtFwh │ │ │ ├── NtFwh.c │ │ │ └── NtFwh.h │ │ ├── NtLoadAsDll │ │ │ ├── NtLoadAsDll.c │ │ │ └── NtLoadAsDll.h │ │ ├── NtPeiLoadFile │ │ │ ├── NtPeiLoadFile.c │ │ │ └── NtPeiLoadFile.h │ │ └── NtThunk │ │ │ ├── NtThunk.c │ │ │ └── NtThunk.h │ │ └── Protocol │ │ ├── EdkNt32ProtocolLib.inf │ │ ├── WinNtIo │ │ ├── WinNtIo.c │ │ └── WinNtIo.h │ │ └── WinNtThunk │ │ ├── WinNtThunk.c │ │ └── WinNtThunk.h │ ├── Tools │ └── Source │ │ ├── Common │ │ ├── CommonLib.c │ │ ├── CommonLib.h │ │ ├── Compress.h │ │ ├── Crc32.c │ │ ├── Crc32.h │ │ ├── Decompress.c │ │ ├── Decompress.h │ │ ├── EfiCompress.c │ │ ├── EfiCustomizedCompress.h │ │ ├── EfiUtilityMsgs.c │ │ ├── EfiUtilityMsgs.h │ │ ├── FvLib.c │ │ ├── FvLib.h │ │ ├── Makefile │ │ ├── MyAlloc.c │ │ ├── MyAlloc.h │ │ ├── ParseInf.c │ │ ├── ParseInf.h │ │ ├── SimpleFileParsing.c │ │ ├── SimpleFileParsing.h │ │ └── TianoCompress.c │ │ ├── CustomizedCompress │ │ ├── CustomizedCompress.c │ │ └── makefile │ │ ├── EfiCompress │ │ ├── EfiCompressMain.c │ │ └── makefile │ │ ├── EfiRom │ │ ├── EfiRom.c │ │ └── Makefile │ │ ├── FwImage │ │ ├── Makefile │ │ └── fwimage.c │ │ ├── GenAprioriFile │ │ ├── GenAprioriFile.c │ │ └── Makefile │ │ ├── GenCRC32Section │ │ ├── GenCRC32Section.c │ │ ├── GenCRC32Section.h │ │ └── makefile │ │ ├── GenDepex │ │ ├── DepexParser.c │ │ ├── DepexParser.h │ │ ├── GenDepex.c │ │ ├── GenDepex.h │ │ └── makefile │ │ ├── GenFfsFile │ │ ├── GenFfsFile.c │ │ ├── GenFfsFile.h │ │ └── makefile │ │ ├── GenFvImage │ │ ├── GenFvImageExe.c │ │ ├── GenFvImageExe.h │ │ ├── GenFvImageLib.c │ │ ├── GenFvImageLib.h │ │ ├── GenFvImageLibInternal.h │ │ └── Makefile │ │ ├── GenSection │ │ ├── GenSection.c │ │ ├── GenSection.h │ │ └── makefile │ │ ├── GenTEImage │ │ ├── GenTEImage.c │ │ └── Makefile │ │ ├── GuidChk │ │ ├── CommonUtils.h │ │ ├── FileSearch.c │ │ ├── FileSearch.h │ │ ├── GuidChk.c │ │ ├── GuidList.c │ │ ├── Makefile │ │ ├── UtilsMsgs.c │ │ └── UtilsMsgs.h │ │ ├── HiiPack │ │ ├── FindFiles.c │ │ ├── HiiPack.c │ │ ├── HiiPack.h │ │ ├── IfrParse.c │ │ ├── IfrParse.h │ │ ├── Makefile │ │ ├── StringParse.c │ │ └── StringParse.h │ │ ├── MakeDeps │ │ ├── MakeDeps.c │ │ └── Makefile │ │ ├── Makefile │ │ ├── ModifyInf │ │ ├── Makefile │ │ └── ModifyInf.c │ │ ├── ProcessDsc │ │ ├── Common.h │ │ ├── DscFile.c │ │ ├── DscFile.h │ │ ├── Exceptions.c │ │ ├── Exceptions.h │ │ ├── FWVolume.c │ │ ├── FWVolume.h │ │ ├── Makefile │ │ ├── MultiThread.c │ │ ├── MultiThread.h │ │ └── ProcessDsc.c │ │ ├── SetStamp │ │ ├── Makefile │ │ └── SetStamp.c │ │ ├── SplitFile │ │ ├── Makefile │ │ └── splitfile.c │ │ ├── StrGather │ │ ├── Makefile │ │ ├── StrGather.c │ │ ├── StrGather.h │ │ ├── StringDB.c │ │ └── StringDB.h │ │ ├── Strip │ │ ├── Makefile │ │ └── strip.c │ │ ├── UefiHiiPack │ │ ├── HiiPack.c │ │ └── Makefile │ │ ├── UefiStrGather │ │ ├── Makefile │ │ ├── StrGather.c │ │ ├── StrGather.h │ │ ├── StringDB.c │ │ └── StringDB.h │ │ ├── UefiVfrCompile │ │ ├── EfiVfr.h │ │ ├── VfrCompiler.cpp │ │ ├── VfrCompiler.h │ │ ├── VfrError.cpp │ │ ├── VfrError.h │ │ ├── VfrFormPkg.cpp │ │ ├── VfrFormPkg.h │ │ ├── VfrSyntax.g │ │ ├── VfrUtilityLib.cpp │ │ ├── VfrUtilityLib.h │ │ └── makefile │ │ ├── VcCheck │ │ ├── VcCheck.c │ │ └── makefile │ │ └── VfrCompile │ │ ├── EfiVfr.h │ │ ├── VfrCompile.g │ │ ├── VfrServices.cpp │ │ ├── VfrServices.h │ │ └── makefile │ └── Version.env ├── EdkShellBinPkg ├── Bin │ ├── Arm │ │ ├── Attrib.efi │ │ ├── Cls.efi │ │ ├── Comp.efi │ │ ├── Cp.efi │ │ ├── Date.efi │ │ ├── Dblk.efi │ │ ├── Devices.efi │ │ ├── Devtree.efi │ │ ├── Dmem.efi │ │ ├── DmpStore.efi │ │ ├── Drivers.efi │ │ ├── DrvCfg.efi │ │ ├── DrvDiag.efi │ │ ├── Edit.efi │ │ ├── EfiCompress.efi │ │ ├── EfiDecompress.efi │ │ ├── Err.efi │ │ ├── Guid.efi │ │ ├── HexEdit.efi │ │ ├── IfConfig.efi │ │ ├── IpConfig.efi │ │ ├── Load.efi │ │ ├── LoadPciRom.efi │ │ ├── Ls.efi │ │ ├── Mem.efi │ │ ├── MemMap.efi │ │ ├── Mkdir.efi │ │ ├── Mm.efi │ │ ├── Mode.efi │ │ ├── Mount.efi │ │ ├── Mv.efi │ │ ├── NShell.efi │ │ ├── OpenInfo.efi │ │ ├── Pci.efi │ │ ├── Ping.efi │ │ ├── Resets.efi │ │ ├── Rm.efi │ │ ├── SerMode.efi │ │ ├── SmbiosView.efi │ │ ├── Stall.efi │ │ ├── TelnetMgmt.efi │ │ ├── Time.efi │ │ ├── TimeZone.efi │ │ ├── Touch.efi │ │ ├── Type.efi │ │ ├── Unload.efi │ │ ├── Ver.efi │ │ └── Vol.efi │ ├── Ia32 │ │ └── Apps │ │ │ ├── Dblk.efi │ │ │ ├── Devices.efi │ │ │ ├── Devtree.efi │ │ │ ├── Guid.efi │ │ │ ├── IfConfig.efi │ │ │ ├── IpConfig.efi │ │ │ ├── LoadPciRom.efi │ │ │ ├── Mount.efi │ │ │ ├── Openinfo.efi │ │ │ ├── Ping.efi │ │ │ ├── SmbiosView.efi │ │ │ ├── TelnetMgmt.efi │ │ │ ├── comp.efi │ │ │ ├── dmem.efi │ │ │ ├── dmpstore.efi │ │ │ ├── edit.efi │ │ │ ├── eficompress.efi │ │ │ ├── efidecompress.efi │ │ │ ├── err.efi │ │ │ ├── hexedit.efi │ │ │ ├── mem.efi │ │ │ ├── memmap.efi │ │ │ ├── mm.efi │ │ │ ├── mode.efi │ │ │ ├── pci.efi │ │ │ ├── sermode.efi │ │ │ ├── stall.efi │ │ │ └── timezone.efi │ ├── Ipf │ │ └── Apps │ │ │ ├── Dblk.efi │ │ │ ├── Devices.efi │ │ │ ├── Devtree.efi │ │ │ ├── Guid.efi │ │ │ ├── IfConfig.efi │ │ │ ├── IpConfig.efi │ │ │ ├── LoadPciRom.efi │ │ │ ├── Mount.efi │ │ │ ├── Openinfo.efi │ │ │ ├── Ping.efi │ │ │ ├── SmbiosView.efi │ │ │ ├── TelnetMgmt.efi │ │ │ ├── comp.efi │ │ │ ├── dmem.efi │ │ │ ├── dmpstore.efi │ │ │ ├── edit.efi │ │ │ ├── eficompress.efi │ │ │ ├── efidecompress.efi │ │ │ ├── err.efi │ │ │ ├── hexedit.efi │ │ │ ├── mem.efi │ │ │ ├── memmap.efi │ │ │ ├── mm.efi │ │ │ ├── mode.efi │ │ │ ├── pci.efi │ │ │ ├── sermode.efi │ │ │ ├── stall.efi │ │ │ └── timezone.efi │ └── X64 │ │ └── Apps │ │ ├── Dblk.efi │ │ ├── Devices.efi │ │ ├── Devtree.efi │ │ ├── Guid.efi │ │ ├── IfConfig.efi │ │ ├── IpConfig.efi │ │ ├── LoadPciRom.efi │ │ ├── Mount.efi │ │ ├── Openinfo.efi │ │ ├── Ping.efi │ │ ├── SmbiosView.efi │ │ ├── TelnetMgmt.efi │ │ ├── comp.efi │ │ ├── dmem.efi │ │ ├── dmpstore.efi │ │ ├── edit.efi │ │ ├── eficompress.efi │ │ ├── efidecompress.efi │ │ ├── err.efi │ │ ├── hexedit.efi │ │ ├── mem.efi │ │ ├── memmap.efi │ │ ├── mm.efi │ │ ├── mode.efi │ │ ├── pci.efi │ │ ├── sermode.efi │ │ ├── stall.efi │ │ └── timezone.efi ├── Contributions.txt ├── EdkShellBinPkg.dec ├── FullShell │ ├── AArch64 │ │ └── Shell_Full.efi │ ├── Arm │ │ └── Shell_Full.efi │ ├── FullShell.inf │ ├── Ia32 │ │ └── Shell_Full.efi │ ├── Ipf │ │ └── Shell_Full.efi │ └── X64 │ │ └── Shell_Full.efi ├── License.txt ├── MinimumShell │ ├── Arm │ │ └── Shell.efi │ ├── Ia32 │ │ └── Shell.efi │ ├── Ipf │ │ └── Shell.efi │ ├── MinimumShell.inf │ └── X64 │ │ └── Shell.efi └── ReadMe.txt ├── EdkShellPkg ├── Contributions.txt ├── EdkShellPkg.dsc ├── License.txt ├── ReadMe.txt ├── ShellR33.patch └── ShellR64.patch ├── EmbeddedPkg ├── Application │ └── AndroidFastboot │ │ ├── AndroidBootImg.c │ │ ├── AndroidFastbootApp.c │ │ ├── AndroidFastbootApp.h │ │ ├── AndroidFastbootApp.inf │ │ └── Arm │ │ └── BootAndroidBootImg.c ├── Contributions.txt ├── Drivers │ ├── AndroidFastbootTransportTcpDxe │ │ ├── FastbootTransportTcp.c │ │ └── FastbootTransportTcpDxe.inf │ ├── AndroidFastbootTransportUsbDxe │ │ ├── FastbootTransportUsb.c │ │ └── FastbootTransportUsbDxe.inf │ ├── FdtPlatformDxe │ │ ├── FdtPlatform.c │ │ ├── FdtPlatform.h │ │ ├── FdtPlatformDxe.inf │ │ ├── FdtPlatformDxe.uni │ │ ├── README.txt │ │ ├── ShellDumpFdt.c │ │ └── ShellSetFdt.c │ ├── Isp1761UsbDxe │ │ ├── Isp1761UsbDxe.c │ │ ├── Isp1761UsbDxe.h │ │ └── Isp1761UsbDxe.inf │ ├── Lan9118Dxe │ │ ├── Lan9118Dxe.c │ │ ├── Lan9118Dxe.h │ │ ├── Lan9118Dxe.inf │ │ ├── Lan9118DxeHw.h │ │ ├── Lan9118DxeUtil.c │ │ └── Lan9118DxeUtil.h │ └── SataSiI3132Dxe │ │ ├── ComponentName.c │ │ ├── SataSiI3132.c │ │ ├── SataSiI3132.h │ │ ├── SataSiI3132Dxe.inf │ │ └── SiI3132AtaPassThru.c ├── Ebl │ ├── CmdTemplate.c │ ├── Command.c │ ├── Dir.c │ ├── Ebl.h │ ├── Ebl.inf │ ├── EfiDevice.c │ ├── Hob.c │ ├── HwDebug.c │ ├── HwIoDebug.c │ ├── Main.c │ ├── Network.c │ ├── Script.c │ └── Variable.c ├── EblExternCmd │ ├── EntryPointGlue.c │ └── Main.c ├── EmbeddedMonotonicCounter │ ├── EmbeddedMonotonicCounter.c │ └── EmbeddedMonotonicCounter.inf ├── EmbeddedPkg.dec ├── EmbeddedPkg.dsc ├── EmbeddedPkg.fdf ├── GdbStub │ ├── Arm │ │ └── Processor.c │ ├── GdbStub.c │ ├── GdbStub.inf │ ├── GdbStubInternal.h │ ├── Ia32 │ │ └── Processor.c │ ├── SerialIo.c │ └── X64 │ │ └── Processor.c ├── Include │ ├── Guid │ │ ├── ExtractSection.h │ │ ├── Fdt.h │ │ └── FdtHob.h │ ├── Library │ │ ├── AcpiLib.h │ │ ├── DebugAgentTimerLib.h │ │ ├── DmaLib.h │ │ ├── EblAddExternalCommandLib.h │ │ ├── EblCmdLib.h │ │ ├── EblNetworkLib.h │ │ ├── EfiFileLib.h │ │ ├── EfiResetSystemLib.h │ │ ├── FdtLoadLib.h │ │ ├── GdbSerialLib.h │ │ ├── HalRuntimeServicesLib.h │ │ ├── PrePiHobListPointerLib.h │ │ ├── PrePiLib.h │ │ ├── RealTimeClockLib.h │ │ └── SerialPortExtLib.h │ ├── Protocol │ │ ├── AndroidFastbootPlatform.h │ │ ├── AndroidFastbootTransport.h │ │ ├── DebugSupportPeriodicCallback.h │ │ ├── EblAddCommand.h │ │ ├── EmbeddedDevice.h │ │ ├── EmbeddedExternalDevice.h │ │ ├── EmbeddedGpio.h │ │ ├── HardwareInterrupt.h │ │ ├── MmcHost.h │ │ ├── PeCoffLoader.h │ │ └── UsbDevice.h │ ├── fdt.h │ ├── libfdt.h │ └── libfdt_env.h ├── Library │ ├── AcpiLib │ │ ├── AcpiLib.c │ │ └── AcpiLib.inf │ ├── DebugAgentTimerLibNull │ │ ├── DebugAgentTimerLib.c │ │ └── DebugAgentTimerLibNull.inf │ ├── DxeHobPeCoffLib │ │ ├── DxeHobPeCoff.c │ │ └── DxeHobPeCoffLib.inf │ ├── EblAddExternalCommandLib │ │ ├── EblAddExternalCommandLib.c │ │ └── EblAddExternalCommandLib.inf │ ├── EblCmdLibNull │ │ ├── EblCmdLibNull.c │ │ └── EblCmdLibNull.inf │ ├── EblNetworkLib │ │ ├── EblNetworkLib.c │ │ └── EblNetworkLib.inf │ ├── EfiFileLib │ │ ├── EfiFileLib.c │ │ └── EfiFileLib.inf │ ├── FdtLib │ │ ├── FdtLib.inf │ │ ├── Makefile.libfdt │ │ ├── README.txt │ │ ├── TODO │ │ ├── fdt.c │ │ ├── fdt_empty_tree.c │ │ ├── fdt_ro.c │ │ ├── fdt_rw.c │ │ ├── fdt_strerror.c │ │ ├── fdt_sw.c │ │ ├── fdt_wip.c │ │ ├── libfdt_internal.h │ │ └── version.lds │ ├── GdbDebugAgent │ │ ├── Arm │ │ │ ├── ExceptionSupport.ARMv6.S │ │ │ ├── ExceptionSupport.ARMv6.asm │ │ │ └── Processor.c │ │ ├── GdbDebugAgent.c │ │ ├── GdbDebugAgent.h │ │ ├── GdbDebugAgent.inf │ │ ├── Ia32 │ │ │ └── Processor.c │ │ ├── X64 │ │ │ └── Processor.c │ │ └── gdbnotes.txt │ ├── GdbSerialDebugPortLib │ │ ├── GdbSerialDebugPortLib.c │ │ └── GdbSerialDebugPortLib.inf │ ├── GdbSerialLib │ │ ├── GdbSerialLib.c │ │ └── GdbSerialLib.inf │ ├── HalRuntimeServicesExampleLib │ │ ├── Capsule.c │ │ ├── Mtc.c │ │ ├── ReportStatusCode.c │ │ ├── Reset.c │ │ ├── Rtc.c │ │ └── Variable.c │ ├── LzmaHobCustomDecompressLib │ │ ├── LzmaHobCustomDecompressLib.c │ │ └── LzmaHobCustomDecompressLib.inf │ ├── NullDmaLib │ │ ├── NullDmaLib.c │ │ └── NullDmaLib.inf │ ├── PrePiExtractGuidedSectionLib │ │ ├── PrePiExtractGuidedSectionLib.c │ │ └── PrePiExtractGuidedSectionLib.inf │ ├── PrePiHobLib │ │ ├── Hob.c │ │ └── PrePiHobLib.inf │ ├── PrePiHobListPointerLib │ │ ├── PrePiHobListPointer.c │ │ └── PrePiHobListPointerLib.inf │ ├── PrePiLib │ │ ├── FwVol.c │ │ ├── PrePi.h │ │ ├── PrePiLib.c │ │ ├── PrePiLib.inf │ │ └── ReportStatusCode.c │ ├── PrePiMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ └── PrePiMemoryAllocationLib.inf │ ├── SerialPortExtLibNull │ │ ├── SerialPortExtLibNull.c │ │ └── SerialPortExtLibNull.inf │ ├── TemplateRealTimeClockLib │ │ ├── RealTimeClockLib.c │ │ └── TemplateRealTimeClockLib.inf │ ├── TemplateResetSystemLib │ │ ├── ResetSystemLib.c │ │ └── TemplateResetSystemLib.inf │ └── TemplateSerialPortExtLib │ │ ├── TemplateSerialPortExtLib.c │ │ └── TemplateSerialPortExtLib.inf ├── License.txt ├── MetronomeDxe │ ├── Metronome.c │ └── MetronomeDxe.inf ├── RealTimeClockRuntimeDxe │ ├── RealTimeClock.c │ └── RealTimeClockRuntimeDxe.inf ├── ResetRuntimeDxe │ ├── ResetRuntimeDxe.inf │ └── reset.c ├── Scripts │ └── LauterbachT32 │ │ ├── EFI.CMM │ │ ├── EfiLoadDxe.cmm │ │ ├── EfiLoadFv.cmm │ │ ├── EfiProcessPeImage.cmm │ │ ├── EfiProcessTeImage.cmm │ │ ├── README.txt │ │ └── T32.CMM ├── SerialDxe │ ├── SerialDxe.inf │ └── SerialIo.c ├── SimpleTextInOutSerial │ ├── SimpleTextInOut.c │ └── SimpleTextInOutSerial.inf ├── TemplateSec │ ├── TemplateSec.c │ └── TemplateSec.inf └── Universal │ └── MmcDxe │ ├── ComponentName.c │ ├── Diagnostics.c │ ├── Mmc.c │ ├── Mmc.h │ ├── MmcBlockIo.c │ ├── MmcDebug.c │ ├── MmcDxe.inf │ └── MmcIdentification.c ├── EmulatorPkg ├── AutoScanPei │ ├── AutoScanPei.c │ └── AutoScanPei.inf ├── BootModePei │ ├── BootModePei.c │ └── BootModePei.inf ├── Contributions.txt ├── CpuRuntimeDxe │ ├── Cpu.c │ ├── Cpu.inf │ ├── CpuDriver.h │ ├── CpuIo.c │ └── MpService.c ├── EmuBlockIoDxe │ ├── ComponentName.c │ ├── DriverConfiguration.c │ ├── DriverDiagnostics.c │ ├── EmuBlockIo.c │ ├── EmuBlockIo.h │ └── EmuBlockIoDxe.inf ├── EmuBusDriverDxe │ ├── ComponentName.c │ ├── EmuBusDriverDxe.c │ ├── EmuBusDriverDxe.h │ └── EmuBusDriverDxe.inf ├── EmuGopDxe │ ├── ComponentName.c │ ├── EmuGopDxe.inf │ ├── Gop.h │ ├── GopDriver.c │ ├── GopInput.c │ └── GopScreen.c ├── EmuSimpleFileSystemDxe │ ├── ComponentName.c │ ├── EmuSimpleFileSystem.c │ ├── EmuSimpleFileSystem.h │ └── EmuSimpleFileSystemDxe.inf ├── EmuSnpDxe │ ├── ComponentName.c │ ├── EmuSnpDxe.c │ ├── EmuSnpDxe.h │ └── EmuSnpDxe.inf ├── EmuThunkDxe │ ├── EmuThunk.c │ └── EmuThunk.inf ├── EmulatorPkg.dec ├── EmulatorPkg.dsc ├── EmulatorPkg.fdf ├── FirmwareVolumePei │ ├── FirmwareVolumePei.c │ └── FirmwareVolumePei.inf ├── FlashMapPei │ ├── FlashMapPei.c │ └── FlashMapPei.inf ├── FvbServicesRuntimeDxe │ ├── FWBlockService.c │ ├── FvbInfo.c │ ├── FvbServicesRuntimeDxe.inf │ └── FwBlockService.h ├── Include │ ├── Guid │ │ ├── EmuPhysicalDisk.h │ │ ├── EmuSystemConfig.h │ │ └── EmuVirtualDisk.h │ ├── Library │ │ ├── EmuMagicPageLib.h │ │ ├── EmuThunkLib.h │ │ ├── KeyMapLib.h │ │ ├── PpiListLib.h │ │ ├── SmbiosLib.h │ │ ├── ThunkPpiList.h │ │ └── ThunkProtocolList.h │ ├── Ppi │ │ └── EmuThunk.h │ └── Protocol │ │ ├── EmuBlockIo.h │ │ ├── EmuFileSystem.h │ │ ├── EmuGraphicsWindow.h │ │ ├── EmuIoThunk.h │ │ ├── EmuSnp.h │ │ ├── EmuThread.h │ │ └── EmuThunk.h ├── Library │ ├── DevicePathTextLib │ │ ├── DevicePathTextLib.c │ │ └── DevicePathTextLib.inf │ ├── DxeCoreTimerLib │ │ ├── DxeCoreTimerLib.c │ │ └── DxeCoreTimerLib.inf │ ├── DxeEmuLib │ │ ├── DxeEmuLib.c │ │ └── DxeEmuLib.inf │ ├── DxeEmuPeCoffExtraActionLib │ │ ├── DxeEmuPeCoffExtraActionLib.c │ │ └── DxeEmuPeCoffExtraActionLib.inf │ ├── DxeEmuSerialPortLib │ │ ├── DxeEmuSerialPortLib.c │ │ └── DxeEmuSerialPortLib.inf │ ├── DxeEmuStdErrSerialPortLib │ │ ├── DxeEmuStdErrSerialPortLib.c │ │ └── DxeEmuStdErrSerialPortLib.inf │ ├── DxeTimerLib │ │ ├── DxeTimerLib.c │ │ └── DxeTimerLib.inf │ ├── EmuBdsLib │ │ ├── BdsPlatform.c │ │ ├── BdsPlatform.h │ │ ├── EmuBdsLib.inf │ │ └── PlatformData.c │ ├── GuardUefiMemoryAllocationLib │ │ ├── GuardUefiMemoryAllocationLib.inf │ │ └── MemoryAllocationLib.c │ ├── KeyMapLibNull │ │ ├── KeyMapLibNull.c │ │ └── KeyMapLibNull.inf │ ├── PeiCoreServicesTablePointerLib │ │ ├── PeiCoreServicesTablePointerLib.inf │ │ └── PeiServicesTablePointer.c │ ├── PeiEmuPeCoffExtraActionLib │ │ ├── PeiEmuPeCoffExtraActionLib.c │ │ └── PeiEmuPeCoffExtraActionLib.inf │ ├── PeiEmuPeCoffGetEntryPointLib │ │ ├── PeiEmuPeCoffGetEntryPointLib.c │ │ └── PeiEmuPeCoffGetEntryPointLib.inf │ ├── PeiEmuSerialPortLib │ │ ├── PeiEmuSerialPortLib.c │ │ └── PeiEmuSerialPortLib.inf │ ├── PeiServicesTablePointerLib │ │ ├── PeiServicesTablePointer.c │ │ └── PeiServicesTablePointerLib.inf │ ├── PeiServicesTablePointerLibMagicPage │ │ ├── PeiServicesTablePointer.c │ │ └── PeiServicesTablePointerLibMagicPage.inf │ ├── PeiTimerLib │ │ ├── PeiTimerLib.c │ │ └── PeiTimerLib.inf │ ├── SecPeiServicesLib │ │ ├── FwVol.c │ │ ├── PeiServicesLib.c │ │ └── SecPeiServicesLib.inf │ ├── SecPpiListLib │ │ ├── PpiListLib.c │ │ └── SecPpiListLib.inf │ ├── SmbiosLib │ │ ├── SmbiosLib.c │ │ └── SmbiosLib.inf │ ├── ThunkPpiList │ │ ├── ThunkPpiList.c │ │ └── ThunkPpiList.inf │ └── ThunkProtocolList │ │ ├── ThunkProtocolList.c │ │ └── ThunkProtocolList.inf ├── License.txt ├── MiscSubClassPlatformDxe │ ├── MiscBaseBoardManufacturer.uni │ ├── MiscBaseBoardManufacturerData.c │ ├── MiscBaseBoardManufacturerFunction.c │ ├── MiscBiosVendor.uni │ ├── MiscBiosVendorData.c │ ├── MiscBiosVendorFunction.c │ ├── MiscBootInformationData.c │ ├── MiscBootInformationFunction.c │ ├── MiscChassisManufacturer.uni │ ├── MiscChassisManufacturerData.c │ ├── MiscChassisManufacturerFunction.c │ ├── MiscDevicePath.h │ ├── MiscNumberOfInstallableLanguagesData.c │ ├── MiscNumberOfInstallableLanguagesFunction.c │ ├── MiscOemString.uni │ ├── MiscOemStringData.c │ ├── MiscOemStringFunction.c │ ├── MiscPortInternalConnectorDesignator.uni │ ├── MiscPortInternalConnectorDesignatorData.c │ ├── MiscPortInternalConnectorDesignatorFunction.c │ ├── MiscResetCapabilitiesData.c │ ├── MiscResetCapabilitiesFunction.c │ ├── MiscSubClassDriver.h │ ├── MiscSubClassDriver.inf │ ├── MiscSubClassDriver.uni │ ├── MiscSubclassDriverDataTable.c │ ├── MiscSubclassDriverEntryPoint.c │ ├── MiscSystemLanguageString.uni │ ├── MiscSystemLanguageStringData.c │ ├── MiscSystemLanguageStringFunction.c │ ├── MiscSystemManufacturer.uni │ ├── MiscSystemManufacturerData.c │ ├── MiscSystemManufacturerFunction.c │ ├── MiscSystemOptionString.uni │ ├── MiscSystemOptionStringData.c │ ├── MiscSystemOptionStringFunction.c │ ├── MiscSystemSlotDesignation.uni │ ├── MiscSystemSlotDesignationData.c │ └── MiscSystemSlotDesignationFunction.c ├── PlatformSmbiosDxe │ ├── PlatformSmbiosDxe.c │ ├── PlatformSmbiosDxe.inf │ └── SmbiosTable.c ├── README ├── RealTimeClockRuntimeDxe │ ├── RealTimeClock.c │ └── RealTimeClock.inf ├── ResetRuntimeDxe │ ├── Reset.c │ └── Reset.inf ├── Sec │ ├── Ia32 │ │ ├── SwitchRam.S │ │ ├── SwitchRam.asm │ │ └── TempRam.c │ ├── Sec.c │ ├── Sec.h │ ├── Sec.inf │ └── X64 │ │ ├── SwitchRam.S │ │ └── SwitchRam.asm ├── ThunkPpiToProtocolPei │ ├── ThunkPpiToProtocolPei.c │ └── ThunkPpiToProtocolPei.inf ├── TimerDxe │ ├── Timer.c │ ├── Timer.h │ └── Timer.inf ├── Unix │ ├── .gdbinit │ ├── GdbRun │ ├── Host │ │ ├── BerkeleyPacketFilter.c │ │ ├── BlockIo.c │ │ ├── EmuThunk.c │ │ ├── Gasket.h │ │ ├── Host.c │ │ ├── Host.h │ │ ├── Host.inf │ │ ├── Ia32 │ │ │ ├── Gasket.S │ │ │ └── SwitchStack.c │ │ ├── LinuxPacketFilter.c │ │ ├── MemoryAllocationLib.c │ │ ├── PosixFileSystem.c │ │ ├── Pthreads.c │ │ ├── X11GraphicsWindow.c │ │ ├── X11IncludeHack │ │ └── X64 │ │ │ ├── Gasket.S │ │ │ └── SwitchStack.S │ ├── Xcode │ │ ├── xcode_project32 │ │ │ ├── XcodeBuild.sh │ │ │ └── xcode_project.xcodeproj │ │ │ │ ├── default.pbxuser │ │ │ │ └── project.pbxproj │ │ └── xcode_project64 │ │ │ ├── XcodeBuild.sh │ │ │ └── xcode_project.xcodeproj │ │ │ ├── default.pbxuser │ │ │ └── project.pbxproj │ ├── lldbefi.py │ └── lldbinit └── build.sh ├── FatBinPkg ├── Contributions.txt ├── EnhancedFatDxe │ ├── AArch64 │ │ └── Fat.efi │ ├── Arm │ │ └── Fat.efi │ ├── Ebc │ │ └── Fat.efi │ ├── Fat.inf │ ├── Ia32 │ │ └── Fat.efi │ ├── Ipf │ │ └── Fat.efi │ └── X64 │ │ └── Fat.efi ├── FatBinPkg.dec ├── License.txt └── ReadMe.txt ├── IntelFrameworkModulePkg ├── Bus │ ├── Isa │ │ ├── IsaBusDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── InternalIsaBus.h │ │ │ ├── InternalIsaIo.h │ │ │ ├── IsaBus.c │ │ │ ├── IsaBusDxe.inf │ │ │ ├── IsaBusDxe.uni │ │ │ ├── IsaBusDxeExtra.uni │ │ │ └── IsaIo.c │ │ ├── IsaFloppyDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── IsaFloppy.c │ │ │ ├── IsaFloppy.h │ │ │ ├── IsaFloppyBlock.c │ │ │ ├── IsaFloppyCtrl.c │ │ │ ├── IsaFloppyDxe.inf │ │ │ ├── IsaFloppyDxe.uni │ │ │ └── IsaFloppyDxeExtra.uni │ │ ├── IsaFloppyPei │ │ │ ├── Fdc.h │ │ │ ├── FloppyPeim.c │ │ │ ├── FloppyPeim.h │ │ │ ├── IsaFloppyPei.inf │ │ │ ├── IsaFloppyPei.uni │ │ │ └── IsaFloppyPeiExtra.uni │ │ ├── IsaIoDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── IsaDriver.c │ │ │ ├── IsaDriver.h │ │ │ ├── IsaIo.c │ │ │ ├── IsaIo.h │ │ │ ├── IsaIoDxe.inf │ │ │ ├── IsaIoDxe.uni │ │ │ └── IsaIoDxeExtra.uni │ │ ├── IsaSerialDxe │ │ │ ├── ComponentName.c │ │ │ ├── IsaSerialDxe.inf │ │ │ ├── IsaSerialDxe.uni │ │ │ ├── IsaSerialDxeExtra.uni │ │ │ ├── Serial.c │ │ │ └── Serial.h │ │ ├── Ps2KeyboardDxe │ │ │ ├── ComponentName.c │ │ │ ├── Ps2KbdCtrller.c │ │ │ ├── Ps2KbdTextIn.c │ │ │ ├── Ps2Keyboard.c │ │ │ ├── Ps2Keyboard.h │ │ │ ├── Ps2KeyboardDxe.uni │ │ │ ├── Ps2KeyboardDxeExtra.uni │ │ │ └── Ps2keyboardDxe.inf │ │ ├── Ps2MouseAbsolutePointerDxe │ │ │ ├── CommPs2.c │ │ │ ├── CommPs2.h │ │ │ ├── ComponentName.c │ │ │ ├── Ps2MouseAbsolutePointer.c │ │ │ ├── Ps2MouseAbsolutePointer.h │ │ │ ├── Ps2MouseAbsolutePointerDxe.inf │ │ │ ├── Ps2MouseAbsolutePointerDxe.uni │ │ │ └── Ps2MouseAbsolutePointerDxeExtra.uni │ │ └── Ps2MouseDxe │ │ │ ├── CommPs2.c │ │ │ ├── CommPs2.h │ │ │ ├── ComponentName.c │ │ │ ├── Ps2Mouse.c │ │ │ ├── Ps2Mouse.h │ │ │ ├── Ps2MouseDxe.inf │ │ │ ├── Ps2MouseDxe.uni │ │ │ └── Ps2MouseDxeExtra.uni │ └── Pci │ │ ├── IdeBusDxe │ │ ├── Ata.c │ │ ├── Atapi.c │ │ ├── ComponentName.c │ │ ├── ComponentName.h │ │ ├── DriverConfiguration.c │ │ ├── DriverDiagnostics.c │ │ ├── Ide.c │ │ ├── Ide.h │ │ ├── IdeBus.c │ │ ├── IdeBus.h │ │ ├── IdeBusDxe.inf │ │ ├── IdeBusDxe.uni │ │ ├── IdeBusDxeExtra.uni │ │ └── IdeData.h │ │ └── VgaMiniPortDxe │ │ ├── ComponentName.c │ │ ├── VgaMiniPort.c │ │ ├── VgaMiniPort.h │ │ ├── VgaMiniPort.uni │ │ ├── VgaMiniPortDxe.inf │ │ └── VgaMiniPortExtra.uni ├── Contributions.txt ├── Csm │ ├── BiosThunk │ │ ├── BlockIoDxe │ │ │ ├── BiosBlkIo.c │ │ │ ├── BiosBlkIo.h │ │ │ ├── BiosInt13.c │ │ │ ├── BlockIoDxe.inf │ │ │ ├── BlockIoDxe.uni │ │ │ ├── BlockIoDxeExtra.uni │ │ │ ├── ComponentName.c │ │ │ └── Edd.h │ │ ├── KeyboardDxe │ │ │ ├── BiosKeyboard.c │ │ │ ├── BiosKeyboard.h │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── KeyboardDxe.inf │ │ │ ├── KeyboardDxe.uni │ │ │ └── KeyboardDxeExtra.uni │ │ ├── Snp16Dxe │ │ │ ├── BiosSnp16.c │ │ │ ├── BiosSnp16.h │ │ │ ├── BiosSnp16.uni │ │ │ ├── BiosSnp16Extra.uni │ │ │ ├── ComponentName.c │ │ │ ├── Misc.c │ │ │ ├── Pxe.h │ │ │ ├── PxeUndi.c │ │ │ └── Snp16Dxe.inf │ │ └── VideoDxe │ │ │ ├── BiosVideo.c │ │ │ ├── BiosVideo.h │ │ │ ├── BiosVideoDxe.uni │ │ │ ├── BiosVideoDxeExtra.uni │ │ │ ├── ComponentName.c │ │ │ ├── VesaBiosExtensions.h │ │ │ └── VideoDxe.inf │ └── LegacyBiosDxe │ │ ├── IA32 │ │ ├── InterruptTable.S │ │ └── InterruptTable.asm │ │ ├── Ipf │ │ ├── IpfBootSupport.c │ │ ├── IpfThunk.h │ │ ├── IpfThunk.i │ │ ├── IpfThunk.s │ │ └── Thunk.c │ │ ├── LegacyBbs.c │ │ ├── LegacyBda.c │ │ ├── LegacyBios.c │ │ ├── LegacyBiosDxe.inf │ │ ├── LegacyBiosDxe.uni │ │ ├── LegacyBiosDxeExtra.uni │ │ ├── LegacyBiosInterface.h │ │ ├── LegacyBootSupport.c │ │ ├── LegacyCmos.c │ │ ├── LegacyIde.c │ │ ├── LegacyPci.c │ │ ├── LegacySio.c │ │ ├── Thunk.c │ │ └── X64 │ │ ├── InterruptTable.S │ │ └── InterruptTable.asm ├── Include │ ├── Guid │ │ ├── AcpiVariableCompatibility.h │ │ ├── BdsHii.h │ │ ├── BdsLibHii.h │ │ ├── BlockIoVendor.h │ │ ├── CapsuleDataFile.h │ │ ├── DataHubStatusCodeRecord.h │ │ ├── HdBootVariable.h │ │ ├── IntelFrameworkModulePkgTokenSpace.h │ │ ├── LastEnumLang.h │ │ ├── LegacyBios.h │ │ ├── LegacyDevOrder.h │ │ └── TianoDecompress.h │ ├── Library │ │ ├── GenericBdsLib.h │ │ └── PlatformBdsLib.h │ └── Protocol │ │ ├── ExitPmAuth.h │ │ ├── IsaAcpi.h │ │ ├── IsaIo.h │ │ ├── OEMBadging.h │ │ ├── Ps2Policy.h │ │ └── VgaMiniPort.h ├── IntelFrameworkModulePkg.dec ├── IntelFrameworkModulePkg.dsc ├── IntelFrameworkModulePkg.uni ├── IntelFrameworkModulePkgExtra.uni ├── Library │ ├── BaseUefiTianoCustomDecompressLib │ │ ├── BaseUefiTianoCustomDecompressLib.c │ │ ├── BaseUefiTianoCustomDecompressLib.inf │ │ ├── BaseUefiTianoCustomDecompressLibInternals.h │ │ └── BaseUefiTianoDecompressLib.uni │ ├── DxeCapsuleLib │ │ ├── DxeCapsuleLib.c │ │ ├── DxeCapsuleLib.inf │ │ └── DxeCapsuleLib.uni │ ├── DxeReportStatusCodeLibFramework │ │ ├── DxeReportStatusCodeLib.inf │ │ ├── DxeReportStatusCodeLib.uni │ │ └── ReportStatusCodeLib.c │ ├── GenericBdsLib │ │ ├── BdsBoot.c │ │ ├── BdsConnect.c │ │ ├── BdsConsole.c │ │ ├── BdsMisc.c │ │ ├── DevicePath.c │ │ ├── GenericBdsLib.inf │ │ ├── GenericBdsLib.uni │ │ ├── GenericBdsStrings.uni │ │ ├── InternalBdsLib.h │ │ ├── Performance.c │ │ ├── String.c │ │ └── String.h │ ├── LegacyBootMaintUiLib │ │ ├── LegacyBootMaintUi.c │ │ ├── LegacyBootMaintUi.h │ │ ├── LegacyBootMaintUiLib.inf │ │ ├── LegacyBootMaintUiLib.uni │ │ ├── LegacyBootMaintUiStrings.uni │ │ ├── LegacyBootMaintUiVfr.Vfr │ │ └── LegacyBootMaintUiVfr.h │ ├── LegacyBootManagerLib │ │ ├── InternalLegacyBm.h │ │ ├── LegacyBm.c │ │ ├── LegacyBootManagerLib.inf │ │ └── LegacyBootManagerLib.uni │ ├── LzmaCustomDecompressLib │ │ ├── F86GuidedSectionExtraction.c │ │ ├── GuidedSectionExtraction.c │ │ ├── LZMA-SDK-README.txt │ │ ├── LzmaArchCustomDecompressLib.inf │ │ ├── LzmaArchDecompressLib.uni │ │ ├── LzmaCustomDecompressLib.inf │ │ ├── LzmaDecompress.c │ │ ├── LzmaDecompressLib.uni │ │ ├── LzmaDecompressLibInternal.h │ │ ├── Sdk │ │ │ ├── C │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── CpuArch.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ └── Types.h │ │ │ ├── history.txt │ │ │ └── lzma.txt │ │ └── UefiLzma.h │ ├── PeiDxeDebugLibReportStatusCode │ │ ├── DebugLib.c │ │ ├── PeiDxeDebugLibReportStatusCode.inf │ │ └── PeiDxeDebugLibReportStatusCode.uni │ ├── PeiRecoveryLib │ │ ├── PeiRecoveryLib.c │ │ ├── PeiRecoveryLib.inf │ │ └── PeiRecoveryLib.uni │ ├── PeiS3Lib │ │ ├── PeiS3Lib.c │ │ ├── PeiS3Lib.inf │ │ └── PeiS3Lib.uni │ ├── PlatformBdsLibNull │ │ ├── BdsPlatform.c │ │ ├── BdsPlatform.h │ │ ├── PlatformBdsLib.uni │ │ ├── PlatformBdsLibNull.inf │ │ └── PlatformData.c │ └── SmmRuntimeDxeReportStatusCodeLibFramework │ │ ├── ReportStatusCodeLib.c │ │ ├── ReportStatusCodeLibInternal.h │ │ ├── SmmRuntimeDxeReportStatusCodeLibFramework.inf │ │ ├── SmmRuntimeDxeReportStatusCodeLibFramework.uni │ │ └── SmmRuntimeDxeSupport.c ├── License.txt └── Universal │ ├── Acpi │ ├── AcpiS3SaveDxe │ │ ├── AcpiS3Save.c │ │ ├── AcpiS3Save.h │ │ ├── AcpiS3SaveDxe.inf │ │ ├── AcpiS3SaveDxe.uni │ │ ├── AcpiS3SaveDxeExtra.uni │ │ └── AcpiVariableThunkPlatform.c │ └── AcpiSupportDxe │ │ ├── AcpiSupport.c │ │ ├── AcpiSupport.h │ │ ├── AcpiSupportAcpiSupportProtocol.c │ │ ├── AcpiSupportDxe.inf │ │ ├── AcpiSupportDxe.uni │ │ └── AcpiSupportDxeExtra.uni │ ├── BdsDxe │ ├── Bds.h │ ├── BdsDxe.inf │ ├── BdsDxe.uni │ ├── BdsDxeExtra.uni │ ├── BdsEntry.c │ ├── BootMaint │ │ ├── BBSsupport.c │ │ ├── BBSsupport.h │ │ ├── Bm.vfr │ │ ├── BmLib.c │ │ ├── Bmstring.uni │ │ ├── BootMaint.c │ │ ├── BootMaint.h │ │ ├── BootOption.c │ │ ├── ConsoleOption.c │ │ ├── Data.c │ │ ├── FE.vfr │ │ ├── FileExplorer.c │ │ ├── FormGuid.h │ │ ├── UpdatePage.c │ │ └── Variable.c │ ├── BootMngr │ │ ├── BootManager.c │ │ ├── BootManager.h │ │ ├── BootManagerStrings.uni │ │ └── BootManagerVfr.Vfr │ ├── Capsules.c │ ├── DeviceMngr │ │ ├── DeviceManager.c │ │ ├── DeviceManager.h │ │ ├── DeviceManagerStrings.uni │ │ ├── DeviceManagerVfr.Vfr │ │ ├── DeviceManagerVfr.h │ │ └── DriverHealthVfr.Vfr │ ├── FrontPage.c │ ├── FrontPage.h │ ├── FrontPageStrings.uni │ ├── FrontPageVfr.Vfr │ ├── Hotkey.c │ ├── Hotkey.h │ ├── HwErrRecSupport.c │ ├── HwErrRecSupport.h │ ├── Language.c │ ├── Language.h │ ├── MemoryTest.c │ ├── String.c │ ├── String.h │ └── Strings.uni │ ├── Console │ └── VgaClassDxe │ │ ├── ComponentName.c │ │ ├── VgaClass.c │ │ ├── VgaClass.h │ │ ├── VgaClassDxe.inf │ │ ├── VgaClassDxe.uni │ │ └── VgaClassDxeExtra.uni │ ├── CpuIoDxe │ ├── CpuIo.c │ ├── CpuIo.h │ ├── CpuIoDxe.inf │ ├── CpuIoDxe.uni │ └── CpuIoDxeExtra.uni │ ├── DataHubDxe │ ├── DataHub.c │ ├── DataHub.h │ ├── DataHubDxe.inf │ ├── DataHubDxe.uni │ └── DataHubDxeExtra.uni │ ├── DataHubStdErrDxe │ ├── DataHubStdErr.c │ ├── DataHubStdErrDxe.inf │ ├── DataHubStdErrDxe.uni │ └── DataHubStdErrDxeExtra.uni │ ├── FirmwareVolume │ ├── FwVolDxe │ │ ├── Ffs.c │ │ ├── FwPadFile.c │ │ ├── FwVol.c │ │ ├── FwVolAttrib.c │ │ ├── FwVolDriver.h │ │ ├── FwVolDxe.inf │ │ ├── FwVolDxe.uni │ │ ├── FwVolDxeExtra.uni │ │ ├── FwVolRead.c │ │ └── FwVolWrite.c │ └── UpdateDriverDxe │ │ ├── FlashUpdate.c │ │ ├── ParseUpdateProfile.c │ │ ├── UpdateDispatcher.c │ │ ├── UpdateDriver.h │ │ ├── UpdateDriverDxe.inf │ │ ├── UpdateDriverDxe.uni │ │ ├── UpdateDriverDxeExtra.uni │ │ └── UpdateStrings.uni │ ├── LegacyRegionDxe │ ├── LegacyRegion.c │ ├── LegacyRegionDxe.inf │ ├── LegacyRegionDxe.uni │ └── LegacyRegionDxeExtra.uni │ ├── SectionExtractionDxe │ ├── SectionExtraction.c │ ├── SectionExtractionDxe.inf │ ├── SectionExtractionDxe.uni │ └── SectionExtractionDxeExtra.uni │ └── StatusCode │ ├── DatahubStatusCodeHandlerDxe │ ├── DataHubStatusCodeWorker.c │ ├── DatahubStatusCodeHandlerDxe.c │ ├── DatahubStatusCodeHandlerDxe.h │ ├── DatahubStatusCodeHandlerDxe.inf │ ├── DatahubStatusCodeHandlerDxe.uni │ └── DatahubStatusCodeHandlerDxeExtra.uni │ ├── Pei │ ├── MemoryStausCodeWorker.c │ ├── SerialStatusCodeWorker.c │ ├── StatusCodePei.c │ ├── StatusCodePei.h │ ├── StatusCodePei.inf │ ├── StatusCodePei.uni │ └── StatusCodePeiExtra.uni │ └── RuntimeDxe │ ├── DataHubStatusCodeWorker.c │ ├── RtMemoryStatusCodeWorker.c │ ├── SerialStatusCodeWorker.c │ ├── StatusCodeRuntimeDxe.c │ ├── StatusCodeRuntimeDxe.h │ ├── StatusCodeRuntimeDxe.inf │ ├── StatusCodeRuntimeDxe.uni │ └── StatusCodeRuntimeDxeExtra.uni ├── IntelFrameworkPkg ├── Contributions.txt ├── FrameworkSpecConformance.txt ├── Include │ ├── Framework │ │ ├── BootScript.h │ │ ├── DxeCis.h │ │ ├── FirmwareVolumeHeader.h │ │ ├── FirmwareVolumeImageFormat.h │ │ ├── FrameworkInternalFormRepresentation.h │ │ ├── Hob.h │ │ ├── PeiCis.h │ │ ├── SmmCis.h │ │ └── StatusCode.h │ ├── FrameworkDxe.h │ ├── FrameworkPei.h │ ├── FrameworkSmm.h │ ├── Guid │ │ ├── BlockIo.h │ │ ├── Capsule.h │ │ ├── DataHubRecords.h │ │ ├── FirmwareFileSystem.h │ │ ├── SmmCommunicate.h │ │ └── SmramMemoryReserve.h │ ├── Ppi │ │ ├── BootScriptExecuter.h │ │ ├── FindFv.h │ │ ├── FvLoadFile.h │ │ ├── PciCfg.h │ │ ├── ReadOnlyVariable.h │ │ ├── S3Resume.h │ │ ├── SectionExtraction.h │ │ ├── Security.h │ │ └── Smbus.h │ └── Protocol │ │ ├── AcpiS3Save.h │ │ ├── AcpiSupport.h │ │ ├── BootScriptSave.h │ │ ├── CpuIo.h │ │ ├── DataHub.h │ │ ├── FirmwareVolume.h │ │ ├── FrameworkFirmwareVolumeBlock.h │ │ ├── FrameworkFormBrowser.h │ │ ├── FrameworkFormCallback.h │ │ ├── FrameworkHii.h │ │ ├── FrameworkMpService.h │ │ ├── Legacy8259.h │ │ ├── LegacyBios.h │ │ ├── LegacyBiosPlatform.h │ │ ├── LegacyInterrupt.h │ │ ├── LegacyRegion.h │ │ ├── SectionExtraction.h │ │ ├── SmmAccess.h │ │ ├── SmmBase.h │ │ ├── SmmControl.h │ │ ├── SmmCpuIo.h │ │ ├── SmmCpuSaveState.h │ │ ├── SmmGpiDispatch.h │ │ ├── SmmIchnDispatch.h │ │ ├── SmmPeriodicTimerDispatch.h │ │ ├── SmmPowerButtonDispatch.h │ │ ├── SmmStandbyButtonDispatch.h │ │ ├── SmmSwDispatch.h │ │ ├── SmmSxDispatch.h │ │ └── SmmUsbDispatch.h ├── IntelFrameworkPkg.dec ├── IntelFrameworkPkg.dsc ├── IntelFrameworkPkg.uni ├── IntelFrameworkPkgExtra.uni ├── Library │ ├── DxeIoLibCpuIo │ │ ├── DxeCpuIoLibInternal.h │ │ ├── DxeIoLibCpuIo.inf │ │ ├── DxeIoLibCpuIo.uni │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ └── IoLibMmioBuffer.c │ ├── DxeSmmDriverEntryPoint │ │ ├── DriverEntryPoint.c │ │ ├── DxeSmmDriverEntryPoint.inf │ │ └── DxeSmmDriverEntryPoint.uni │ ├── FrameworkUefiLib │ │ ├── Console.c │ │ ├── FrameworkUefiLib.inf │ │ ├── FrameworkUefiLib.uni │ │ ├── UefiDriverModel.c │ │ ├── UefiLib.c │ │ ├── UefiLibInternal.h │ │ ├── UefiLibPrint.c │ │ └── UefiNotTiano.c │ ├── PeiHobLibFramework │ │ ├── HobLib.c │ │ ├── PeiHobLib.uni │ │ └── PeiHobLibFramework.inf │ └── PeiSmbusLibSmbusPpi │ │ ├── InternalSmbusLib.h │ │ ├── PeiSmbusLib.c │ │ ├── PeiSmbusLibSmbusPpi.inf │ │ ├── PeiSmbusLibSmbusPpi.uni │ │ └── SmbusLib.c └── License.txt ├── IntelFspPkg ├── Contributions.txt ├── FspDxeIpl │ ├── DxeIpl.c │ ├── DxeIpl.h │ └── FspDxeIpl.inf ├── FspSecCore │ ├── FspSecCore.inf │ ├── Ia32 │ │ ├── FspApiEntry.asm │ │ ├── FspApiEntry.s │ │ ├── FspHelper.asm │ │ ├── FspHelper.s │ │ ├── InitializeFpu.asm │ │ ├── InitializeFpu.s │ │ ├── MicrocodeLoad.inc │ │ ├── ResetVec.asm16 │ │ ├── SaveRestoreSse.inc │ │ ├── Stack.asm │ │ └── Stacks.s │ ├── SecFsp.c │ ├── SecFsp.h │ ├── SecMain.c │ ├── SecMain.h │ └── Vtf0 │ │ ├── Bin │ │ └── ResetVec.ia32.raw │ │ ├── Build.py │ │ ├── Ia16 │ │ └── ResetVec.asm16 │ │ ├── ResetVectorCode.asm │ │ └── Tools │ │ └── FixupForRawSection.py ├── Include │ ├── FspApi.h │ ├── FspInfoHeader.h │ ├── Guid │ │ ├── FspHeaderFile.h │ │ ├── GuidHobFsp.h │ │ └── GuidHobFspEas.h │ ├── Library │ │ ├── CacheAsRamLib.h │ │ ├── CacheLib.h │ │ ├── DebugDeviceLib.h │ │ ├── FspCommonLib.h │ │ ├── FspPlatformLib.h │ │ ├── FspSecPlatformLib.h │ │ └── FspSwitchStackLib.h │ └── Private │ │ ├── FspGlobalData.h │ │ ├── FspMeasurePointId.h │ │ ├── FspPatchTable.h │ │ ├── GuidHobFspGfx.h │ │ ├── GuidHobFspMisc.h │ │ └── GuidHobFspTseg.h ├── IntelFspPkg.dec ├── IntelFspPkg.dsc ├── Library │ ├── BaseCacheAsRamLibNull │ │ ├── BaseCacheAsRamLibNull.inf │ │ └── DisableCacheAsRamNull.c │ ├── BaseCacheLib │ │ ├── BaseCacheLib.inf │ │ ├── CacheLib.c │ │ └── CacheLibInternal.h │ ├── BaseDebugDeviceLibNull │ │ ├── BaseDebugDeviceLibNull.inf │ │ └── DebugDeviceLibNull.c │ ├── BaseFspCommonLib │ │ ├── BaseFspCommonLib.inf │ │ └── FspCommonLib.c │ ├── BaseFspDebugLibSerialPort │ │ ├── BaseFspDebugLibSerialPort.inf │ │ ├── DebugLib.c │ │ └── Ia32 │ │ │ ├── FspDebug.asm │ │ │ └── FspDebug.s │ ├── BaseFspPlatformLib │ │ ├── BaseFspPlatformLib.inf │ │ ├── FspPlatformMemory.c │ │ └── FspPlatformNotify.c │ ├── BaseFspSwitchStackLib │ │ ├── BaseFspSwitchStackLib.inf │ │ ├── FspSwitchStackLib.c │ │ └── Ia32 │ │ │ ├── Stack.asm │ │ │ └── Stack.s │ └── SecFspSecPlatformLibNull │ │ ├── Ia32 │ │ ├── Flat32.asm │ │ ├── Flat32.s │ │ ├── SecCarInit.asm │ │ └── SecCarInit.s │ │ ├── PlatformSecLibNull.c │ │ └── SecFspSecPlatformLibNull.inf └── Tools │ ├── GenCfgOpt.py │ ├── PatchFv.py │ └── UserManuals │ ├── GenCfgOptUserManual.docx │ └── PatchFvUserManual.docx ├── IntelFspWrapperPkg ├── Contributions.txt ├── FspInitPei │ ├── FindPeiCore.c │ ├── FspInitPei.c │ ├── FspInitPei.h │ ├── FspInitPei.inf │ ├── FspInitPeiV1.c │ ├── FspInitPeiV2.c │ ├── FspNotifyS3.c │ ├── SecMain.c │ └── SecMain.h ├── FspNotifyDxe │ ├── FspNotifyDxe.c │ ├── FspNotifyDxe.inf │ └── LoadBelow4G.c ├── FspWrapperSecCore │ ├── FindPeiCore.c │ ├── FspWrapperSecCore.inf │ ├── Ia32 │ │ ├── Dummy.asm │ │ └── ResetVec.asm16 │ ├── SecMain.c │ ├── SecMain.h │ └── Vtf0 │ │ ├── Bin │ │ └── ResetVec.ia32.raw │ │ ├── Build.py │ │ ├── Ia16 │ │ └── ResetVec.asm16 │ │ ├── ResetVectorCode.asm │ │ └── Tools │ │ └── FixupForRawSection.py ├── Include │ ├── Library │ │ ├── FspApiLib.h │ │ ├── FspHobProcessLib.h │ │ ├── FspPlatformInfoLib.h │ │ └── FspPlatformSecLib.h │ └── Ppi │ │ ├── FspInitDone.h │ │ └── TopOfTemporaryRam.h ├── IntelFspWrapperPkg.dec ├── IntelFspWrapperPkg.dsc └── Library │ ├── BaseFspApiLib │ ├── BaseFspApiLib.inf │ ├── FspApiLib.c │ ├── IA32 │ │ └── DispatchExecute.c │ └── X64 │ │ ├── DispatchExecute.c │ │ ├── Thunk64To32.S │ │ └── Thunk64To32.asm │ ├── BaseFspPlatformInfoLibSample │ ├── BaseFspPlatformInfoLibSample.inf │ └── FspPlatformInfoLibSample.c │ ├── PeiFspHobProcessLibSample │ ├── FspHobProcessLibSample.c │ └── PeiFspHobProcessLibSample.inf │ └── SecPeiFspPlatformSecLibSample │ ├── FspPlatformSecLibSample.c │ ├── Ia32 │ ├── AsmSaveSecContext.S │ ├── AsmSaveSecContext.asm │ ├── Fsp.h │ ├── PeiCoreEntry.S │ ├── PeiCoreEntry.asm │ ├── SecEntry.S │ ├── SecEntry.asm │ ├── Stack.S │ └── Stack.asm │ ├── PlatformInit.c │ ├── SaveSecContext.c │ ├── SecGetPerformance.c │ ├── SecPeiFspPlatformSecLibSample.inf │ ├── SecPlatformInformation.c │ ├── SecRamInitData.c │ └── SecTempRamSupport.c ├── Maintainers.txt ├── MdeModulePkg ├── Application │ ├── BootManagerMenuApp │ │ ├── BootManagerMenu.c │ │ ├── BootManagerMenu.h │ │ ├── BootManagerMenuApp.inf │ │ ├── BootManagerMenuApp.uni │ │ ├── BootManagerMenuAppExtra.uni │ │ └── BootManagerMenuStrings.uni │ ├── HelloWorld │ │ ├── HelloWorld.c │ │ ├── HelloWorld.inf │ │ ├── HelloWorld.uni │ │ └── HelloWorldExtra.uni │ ├── MemoryProfileInfo │ │ ├── MemoryProfileInfo.c │ │ ├── MemoryProfileInfo.inf │ │ ├── MemoryProfileInfo.uni │ │ └── MemoryProfileInfoExtra.uni │ ├── UiApp │ │ ├── BootMaint │ │ │ ├── Bm.vfr │ │ │ ├── BmLib.c │ │ │ ├── Bmstring.uni │ │ │ ├── BootMaint.c │ │ │ ├── BootMaint.h │ │ │ ├── BootOption.c │ │ │ ├── ConsoleOption.c │ │ │ ├── Data.c │ │ │ ├── FE.vfr │ │ │ ├── FileExplorer.c │ │ │ ├── FormGuid.h │ │ │ ├── UpdatePage.c │ │ │ └── Variable.c │ │ ├── BootMngr │ │ │ ├── BootManager.c │ │ │ ├── BootManager.h │ │ │ ├── BootManagerStrings.uni │ │ │ └── BootManagerVfr.Vfr │ │ ├── DeviceMngr │ │ │ ├── DeviceManager.c │ │ │ ├── DeviceManager.h │ │ │ ├── DeviceManagerStrings.uni │ │ │ ├── DeviceManagerVfr.Vfr │ │ │ └── DriverHealthVfr.Vfr │ │ ├── FormsetGuid.h │ │ ├── FrontPage.c │ │ ├── FrontPage.h │ │ ├── FrontPageStrings.uni │ │ ├── FrontPageVfr.Vfr │ │ ├── Language.c │ │ ├── Language.h │ │ ├── String.c │ │ ├── String.h │ │ ├── Strings.uni │ │ ├── Ui.h │ │ ├── UiApp.inf │ │ ├── UiApp.uni │ │ └── UiAppExtra.uni │ └── VariableInfo │ │ ├── VariableInfo.c │ │ ├── VariableInfo.inf │ │ ├── VariableInfo.uni │ │ └── VariableInfoExtra.uni ├── Bus │ ├── Ata │ │ ├── AtaAtapiPassThru │ │ │ ├── AhciMode.c │ │ │ ├── AhciMode.h │ │ │ ├── AtaAtapiPassThru.c │ │ │ ├── AtaAtapiPassThru.h │ │ │ ├── AtaAtapiPassThru.inf │ │ │ ├── AtaAtapiPassThruDxe.uni │ │ │ ├── AtaAtapiPassThruDxeExtra.uni │ │ │ ├── ComponentName.c │ │ │ ├── IdeMode.c │ │ │ └── IdeMode.h │ │ └── AtaBusDxe │ │ │ ├── AtaBus.c │ │ │ ├── AtaBus.h │ │ │ ├── AtaBusDxe.inf │ │ │ ├── AtaBusDxe.uni │ │ │ ├── AtaBusDxeExtra.uni │ │ │ ├── AtaPassThruExecute.c │ │ │ └── ComponentName.c │ ├── I2c │ │ └── I2cDxe │ │ │ ├── I2cBus.c │ │ │ ├── I2cBusDxe.inf │ │ │ ├── I2cBusDxe.uni │ │ │ ├── I2cBusDxeExtra.uni │ │ │ ├── I2cDxe.c │ │ │ ├── I2cDxe.h │ │ │ ├── I2cDxe.inf │ │ │ ├── I2cDxe.uni │ │ │ ├── I2cDxeExtra.uni │ │ │ ├── I2cHost.c │ │ │ ├── I2cHostDxe.inf │ │ │ ├── I2cHostDxe.uni │ │ │ └── I2cHostDxeExtra.uni │ ├── Isa │ │ └── IsaBusDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── IsaBusDxe.c │ │ │ ├── IsaBusDxe.h │ │ │ ├── IsaBusDxe.inf │ │ │ ├── IsaBusDxe.uni │ │ │ └── IsaBusDxeExtra.uni │ ├── Pci │ │ ├── EhciDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── Ehci.c │ │ │ ├── Ehci.h │ │ │ ├── EhciDebug.c │ │ │ ├── EhciDebug.h │ │ │ ├── EhciDxe.inf │ │ │ ├── EhciDxe.uni │ │ │ ├── EhciDxeExtra.uni │ │ │ ├── EhciReg.c │ │ │ ├── EhciReg.h │ │ │ ├── EhciSched.c │ │ │ ├── EhciSched.h │ │ │ ├── EhciUrb.c │ │ │ ├── EhciUrb.h │ │ │ ├── UsbHcMem.c │ │ │ └── UsbHcMem.h │ │ ├── EhciPei │ │ │ ├── EhcPeim.c │ │ │ ├── EhcPeim.h │ │ │ ├── EhciPei.inf │ │ │ ├── EhciPei.uni │ │ │ ├── EhciPeiExtra.uni │ │ │ ├── EhciReg.h │ │ │ ├── EhciSched.c │ │ │ ├── EhciSched.h │ │ │ ├── EhciUrb.c │ │ │ ├── EhciUrb.h │ │ │ ├── UsbHcMem.c │ │ │ └── UsbHcMem.h │ │ ├── IdeBusPei │ │ │ ├── AtapiPeim.c │ │ │ ├── AtapiPeim.h │ │ │ ├── IdeBusPei.inf │ │ │ ├── IdeBusPei.uni │ │ │ └── IdeBusPeiExtra.uni │ │ ├── IncompatiblePciDeviceSupportDxe │ │ │ ├── IncompatiblePciDeviceSupport.c │ │ │ ├── IncompatiblePciDeviceSupport.uni │ │ │ ├── IncompatiblePciDeviceSupportDxe.inf │ │ │ └── IncompatiblePciDeviceSupportExtra.uni │ │ ├── NvmExpressDxe │ │ │ ├── ComponentName.c │ │ │ ├── NvmExpress.c │ │ │ ├── NvmExpress.h │ │ │ ├── NvmExpressBlockIo.c │ │ │ ├── NvmExpressBlockIo.h │ │ │ ├── NvmExpressDiskInfo.c │ │ │ ├── NvmExpressDiskInfo.h │ │ │ ├── NvmExpressDxe.inf │ │ │ ├── NvmExpressDxe.uni │ │ │ ├── NvmExpressDxeExtra.uni │ │ │ ├── NvmExpressHci.c │ │ │ ├── NvmExpressHci.h │ │ │ └── NvmExpressPassthru.c │ │ ├── PciBusDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── PciBus.c │ │ │ ├── PciBus.h │ │ │ ├── PciBusDxe.inf │ │ │ ├── PciBusDxe.uni │ │ │ ├── PciBusDxeExtra.uni │ │ │ ├── PciCommand.c │ │ │ ├── PciCommand.h │ │ │ ├── PciDeviceSupport.c │ │ │ ├── PciDeviceSupport.h │ │ │ ├── PciDriverOverride.c │ │ │ ├── PciDriverOverride.h │ │ │ ├── PciEnumerator.c │ │ │ ├── PciEnumerator.h │ │ │ ├── PciEnumeratorSupport.c │ │ │ ├── PciEnumeratorSupport.h │ │ │ ├── PciHotPlugSupport.c │ │ │ ├── PciHotPlugSupport.h │ │ │ ├── PciIo.c │ │ │ ├── PciIo.h │ │ │ ├── PciLib.c │ │ │ ├── PciLib.h │ │ │ ├── PciOptionRomSupport.c │ │ │ ├── PciOptionRomSupport.h │ │ │ ├── PciPowerManagement.c │ │ │ ├── PciPowerManagement.h │ │ │ ├── PciResourceSupport.c │ │ │ ├── PciResourceSupport.h │ │ │ ├── PciRomTable.c │ │ │ └── PciRomTable.h │ │ ├── UfsPciHcDxe │ │ │ ├── ComponentName.c │ │ │ ├── UfsPciHcDxe.c │ │ │ ├── UfsPciHcDxe.h │ │ │ ├── UfsPciHcDxe.inf │ │ │ ├── UfsPciHcDxe.uni │ │ │ └── UfsPciHcDxeExtra.uni │ │ ├── UfsPciHcPei │ │ │ ├── UfsPciHcPei.c │ │ │ ├── UfsPciHcPei.h │ │ │ ├── UfsPciHcPei.inf │ │ │ ├── UfsPciHcPei.uni │ │ │ └── UfsPciHcPeiExtra.uni │ │ ├── UhciDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── Uhci.c │ │ │ ├── Uhci.h │ │ │ ├── UhciDebug.c │ │ │ ├── UhciDebug.h │ │ │ ├── UhciDxe.inf │ │ │ ├── UhciDxe.uni │ │ │ ├── UhciDxeExtra.uni │ │ │ ├── UhciQueue.c │ │ │ ├── UhciQueue.h │ │ │ ├── UhciReg.c │ │ │ ├── UhciReg.h │ │ │ ├── UhciSched.c │ │ │ ├── UhciSched.h │ │ │ ├── UsbHcMem.c │ │ │ └── UsbHcMem.h │ │ ├── UhciPei │ │ │ ├── UhcPeim.c │ │ │ ├── UhcPeim.h │ │ │ ├── UhciPei.inf │ │ │ ├── UhciPei.uni │ │ │ └── UhciPeiExtra.uni │ │ ├── XhciDxe │ │ │ ├── ComponentName.c │ │ │ ├── ComponentName.h │ │ │ ├── UsbHcMem.c │ │ │ ├── UsbHcMem.h │ │ │ ├── Xhci.c │ │ │ ├── Xhci.h │ │ │ ├── XhciDxe.inf │ │ │ ├── XhciDxe.uni │ │ │ ├── XhciDxeExtra.uni │ │ │ ├── XhciReg.c │ │ │ ├── XhciReg.h │ │ │ ├── XhciSched.c │ │ │ └── XhciSched.h │ │ └── XhciPei │ │ │ ├── UsbHcMem.c │ │ │ ├── UsbHcMem.h │ │ │ ├── XhcPeim.c │ │ │ ├── XhcPeim.h │ │ │ ├── XhciPei.inf │ │ │ ├── XhciPei.uni │ │ │ ├── XhciPeiExtra.uni │ │ │ ├── XhciReg.h │ │ │ ├── XhciSched.c │ │ │ └── XhciSched.h │ ├── Scsi │ │ ├── ScsiBusDxe │ │ │ ├── ComponentName.c │ │ │ ├── ScsiBus.c │ │ │ ├── ScsiBus.h │ │ │ ├── ScsiBus.uni │ │ │ ├── ScsiBusDxe.inf │ │ │ └── ScsiBusExtra.uni │ │ └── ScsiDiskDxe │ │ │ ├── ComponentName.c │ │ │ ├── ScsiDisk.c │ │ │ ├── ScsiDisk.h │ │ │ ├── ScsiDisk.uni │ │ │ ├── ScsiDiskDxe.inf │ │ │ └── ScsiDiskExtra.uni │ ├── Ufs │ │ ├── UfsBlockIoPei │ │ │ ├── UfsBlockIoPei.c │ │ │ ├── UfsBlockIoPei.h │ │ │ ├── UfsBlockIoPei.inf │ │ │ ├── UfsBlockIoPei.uni │ │ │ ├── UfsBlockIoPeiExtra.uni │ │ │ ├── UfsHcMem.c │ │ │ ├── UfsHcMem.h │ │ │ ├── UfsHci.c │ │ │ └── UfsHci.h │ │ └── UfsPassThruDxe │ │ │ ├── ComponentName.c │ │ │ ├── UfsPassThru.c │ │ │ ├── UfsPassThru.h │ │ │ ├── UfsPassThru.uni │ │ │ ├── UfsPassThruDxe.inf │ │ │ ├── UfsPassThruExtra.uni │ │ │ ├── UfsPassThruHci.c │ │ │ └── UfsPassThruHci.h │ └── Usb │ │ ├── UsbBotPei │ │ ├── BotPeim.c │ │ ├── BotPeim.h │ │ ├── PeiAtapi.c │ │ ├── PeiUsbLib.c │ │ ├── PeiUsbLib.h │ │ ├── UsbBotPei.inf │ │ ├── UsbBotPei.uni │ │ ├── UsbBotPeiExtra.uni │ │ ├── UsbBotPeim.c │ │ ├── UsbBotPeim.h │ │ └── UsbPeim.h │ │ ├── UsbBusDxe │ │ ├── ComponentName.c │ │ ├── UsbBus.c │ │ ├── UsbBus.h │ │ ├── UsbBusDxe.inf │ │ ├── UsbBusDxe.uni │ │ ├── UsbBusDxeExtra.uni │ │ ├── UsbDesc.c │ │ ├── UsbDesc.h │ │ ├── UsbEnumer.c │ │ ├── UsbEnumer.h │ │ ├── UsbHub.c │ │ ├── UsbHub.h │ │ ├── UsbUtility.c │ │ └── UsbUtility.h │ │ ├── UsbBusPei │ │ ├── HubPeim.c │ │ ├── HubPeim.h │ │ ├── PeiUsbLib.c │ │ ├── PeiUsbLib.h │ │ ├── UsbBusPei.inf │ │ ├── UsbBusPei.uni │ │ ├── UsbBusPeiExtra.uni │ │ ├── UsbIoPeim.c │ │ ├── UsbPeim.c │ │ └── UsbPeim.h │ │ ├── UsbKbDxe │ │ ├── ComponentName.c │ │ ├── EfiKey.c │ │ ├── EfiKey.h │ │ ├── KeyBoard.c │ │ ├── KeyBoard.h │ │ ├── UsbKbDxe.inf │ │ ├── UsbKbDxe.uni │ │ └── UsbKbDxeExtra.uni │ │ ├── UsbMassStorageDxe │ │ ├── ComponentName.c │ │ ├── UsbMass.h │ │ ├── UsbMassBoot.c │ │ ├── UsbMassBoot.h │ │ ├── UsbMassBot.c │ │ ├── UsbMassBot.h │ │ ├── UsbMassCbi.c │ │ ├── UsbMassCbi.h │ │ ├── UsbMassDiskInfo.c │ │ ├── UsbMassDiskInfo.h │ │ ├── UsbMassImpl.c │ │ ├── UsbMassImpl.h │ │ ├── UsbMassStorageDxe.inf │ │ ├── UsbMassStorageDxe.uni │ │ └── UsbMassStorageDxeExtra.uni │ │ ├── UsbMouseAbsolutePointerDxe │ │ ├── ComponentName.c │ │ ├── MouseHid.c │ │ ├── UsbMouseAbsolutePointer.c │ │ ├── UsbMouseAbsolutePointer.h │ │ ├── UsbMouseAbsolutePointerDxe.inf │ │ ├── UsbMouseAbsolutePointerDxe.uni │ │ └── UsbMouseAbsolutePointerDxeExtra.uni │ │ └── UsbMouseDxe │ │ ├── ComponentName.c │ │ ├── MouseHid.c │ │ ├── UsbMouse.c │ │ ├── UsbMouse.h │ │ ├── UsbMouseDxe.inf │ │ ├── UsbMouseDxe.uni │ │ └── UsbMouseDxeExtra.uni ├── Contributions.txt ├── Core │ ├── Dxe │ │ ├── Dispatcher │ │ │ ├── Dependency.c │ │ │ └── Dispatcher.c │ │ ├── DxeCore.uni │ │ ├── DxeCoreExtra.uni │ │ ├── DxeMain.h │ │ ├── DxeMain.inf │ │ ├── DxeMain │ │ │ ├── DxeMain.c │ │ │ └── DxeProtocolNotify.c │ │ ├── Event │ │ │ ├── Event.c │ │ │ ├── Event.h │ │ │ ├── Timer.c │ │ │ └── Tpl.c │ │ ├── FwVol │ │ │ ├── Ffs.c │ │ │ ├── FwVol.c │ │ │ ├── FwVolAttrib.c │ │ │ ├── FwVolDriver.h │ │ │ ├── FwVolRead.c │ │ │ └── FwVolWrite.c │ │ ├── FwVolBlock │ │ │ ├── FwVolBlock.c │ │ │ └── FwVolBlock.h │ │ ├── Gcd │ │ │ ├── Gcd.c │ │ │ └── Gcd.h │ │ ├── Hand │ │ │ ├── DriverSupport.c │ │ │ ├── Handle.c │ │ │ ├── Handle.h │ │ │ ├── Locate.c │ │ │ └── Notify.c │ │ ├── Image │ │ │ ├── Image.c │ │ │ └── Image.h │ │ ├── Library │ │ │ └── Library.c │ │ ├── Mem │ │ │ ├── Imem.h │ │ │ ├── MemData.c │ │ │ ├── MemoryProfileRecord.c │ │ │ ├── Page.c │ │ │ └── Pool.c │ │ ├── Misc │ │ │ ├── DebugImageInfo.c │ │ │ ├── InstallConfigurationTable.c │ │ │ ├── PropertiesTable.c │ │ │ ├── SetWatchdogTimer.c │ │ │ └── Stall.c │ │ └── SectionExtraction │ │ │ └── CoreSectionExtraction.c │ ├── DxeIplPeim │ │ ├── Arm │ │ │ └── DxeLoadFunc.c │ │ ├── DxeIpl.h │ │ ├── DxeIpl.inf │ │ ├── DxeIpl.uni │ │ ├── DxeIplExtra.uni │ │ ├── DxeLoad.c │ │ ├── Ebc │ │ │ └── DxeLoadFunc.c │ │ ├── Ia32 │ │ │ ├── DxeLoadFunc.c │ │ │ ├── IdtVectorAsm.S │ │ │ └── IdtVectorAsm.asm │ │ ├── Ipf │ │ │ └── DxeLoadFunc.c │ │ └── X64 │ │ │ ├── DxeLoadFunc.c │ │ │ ├── VirtualMemory.c │ │ │ └── VirtualMemory.h │ ├── Pei │ │ ├── BootMode │ │ │ └── BootMode.c │ │ ├── CpuIo │ │ │ └── CpuIo.c │ │ ├── Dependency │ │ │ ├── Dependency.c │ │ │ └── Dependency.h │ │ ├── Dispatcher │ │ │ └── Dispatcher.c │ │ ├── FwVol │ │ │ ├── FwVol.c │ │ │ └── FwVol.h │ │ ├── Hob │ │ │ └── Hob.c │ │ ├── Image │ │ │ └── Image.c │ │ ├── Memory │ │ │ └── MemoryServices.c │ │ ├── PciCfg2 │ │ │ └── PciCfg2.c │ │ ├── PeiCore.uni │ │ ├── PeiCoreExtra.uni │ │ ├── PeiMain.h │ │ ├── PeiMain.inf │ │ ├── PeiMain │ │ │ └── PeiMain.c │ │ ├── Ppi │ │ │ └── Ppi.c │ │ ├── Reset │ │ │ └── Reset.c │ │ ├── Security │ │ │ └── Security.c │ │ └── StatusCode │ │ │ └── StatusCode.c │ ├── PiSmmCore │ │ ├── Dependency.c │ │ ├── Dispatcher.c │ │ ├── Handle.c │ │ ├── InstallConfigurationTable.c │ │ ├── Locate.c │ │ ├── Notify.c │ │ ├── Page.c │ │ ├── PiSmmCore.c │ │ ├── PiSmmCore.h │ │ ├── PiSmmCore.inf │ │ ├── PiSmmCore.uni │ │ ├── PiSmmCoreExtra.uni │ │ ├── PiSmmCorePrivateData.h │ │ ├── PiSmmIpl.c │ │ ├── PiSmmIpl.inf │ │ ├── PiSmmIpl.uni │ │ ├── PiSmmIplExtra.uni │ │ ├── Pool.c │ │ ├── Smi.c │ │ └── SmramProfileRecord.c │ └── RuntimeDxe │ │ ├── Crc32.c │ │ ├── Runtime.c │ │ ├── Runtime.h │ │ ├── RuntimeDxe.inf │ │ ├── RuntimeDxe.uni │ │ └── RuntimeDxeExtra.uni ├── Include │ ├── Guid │ │ ├── AcpiS3Context.h │ │ ├── BootScriptExecutorVariable.h │ │ ├── CapsuleVendor.h │ │ ├── ConnectConInEvent.h │ │ ├── ConsoleInDevice.h │ │ ├── ConsoleOutDevice.h │ │ ├── Crc32GuidedSectionExtraction.h │ │ ├── DebugMask.h │ │ ├── DriverSampleHii.h │ │ ├── EventExitBootServiceFailed.h │ │ ├── FaultTolerantWrite.h │ │ ├── FirmwarePerformance.h │ │ ├── HiiBootMaintenanceFormset.h │ │ ├── HiiResourceSampleHii.h │ │ ├── IdleLoopEvent.h │ │ ├── Ip4Config2Hii.h │ │ ├── Ip4IScsiConfigHii.h │ │ ├── LoadModuleAtFixedAddress.h │ │ ├── LzmaDecompress.h │ │ ├── MdeModuleHii.h │ │ ├── MdeModulePkgTokenSpace.h │ │ ├── MemoryProfile.h │ │ ├── MemoryStatusCodeRecord.h │ │ ├── MemoryTypeInformation.h │ │ ├── MtcVendor.h │ │ ├── PcdDataBaseHobGuid.h │ │ ├── PcdDataBaseSignatureGuid.h │ │ ├── Performance.h │ │ ├── PlatDriOverrideHii.h │ │ ├── RecoveryDevice.h │ │ ├── SmmLockBox.h │ │ ├── SmmVariableCommon.h │ │ ├── StandardErrorDevice.h │ │ ├── StatusCodeCallbackGuid.h │ │ ├── StatusCodeDataTypeDebug.h │ │ ├── StatusCodeDataTypeVariable.h │ │ ├── SystemNvDataGuid.h │ │ ├── TtyTerm.h │ │ ├── UsbKeyBoardLayout.h │ │ ├── VarErrorFlag.h │ │ ├── VariableFormat.h │ │ ├── VariableIndexTable.h │ │ ├── VlanConfigHii.h │ │ └── ZeroGuid.h │ ├── Library │ │ ├── AuthVariableLib.h │ │ ├── CapsuleLib.h │ │ ├── CpuExceptionHandlerLib.h │ │ ├── CustomizedDisplayLib.h │ │ ├── DebugAgentLib.h │ │ ├── DpcLib.h │ │ ├── HiiLib.h │ │ ├── HttpLib.h │ │ ├── IpIoLib.h │ │ ├── LockBoxLib.h │ │ ├── NetLib.h │ │ ├── OemHookStatusCodeLib.h │ │ ├── PlatformBootManagerLib.h │ │ ├── PlatformHookLib.h │ │ ├── PlatformVarCleanupLib.h │ │ ├── RecoveryLib.h │ │ ├── ResetSystemLib.h │ │ ├── S3Lib.h │ │ ├── SecurityManagementLib.h │ │ ├── SmmCorePlatformHookLib.h │ │ ├── SortLib.h │ │ ├── TcpIoLib.h │ │ ├── TpmMeasurementLib.h │ │ ├── UdpIoLib.h │ │ ├── UefiBootManagerLib.h │ │ ├── UefiHiiServicesLib.h │ │ └── VarCheckLib.h │ ├── Ppi │ │ ├── AtaController.h │ │ ├── PostBootScriptTable.h │ │ ├── SecPerformance.h │ │ ├── SerialPortPei.h │ │ ├── SmmAccess.h │ │ ├── SmmCommunication.h │ │ ├── SmmControl.h │ │ ├── UfsHostController.h │ │ ├── Usb2HostController.h │ │ ├── UsbController.h │ │ ├── UsbHostController.h │ │ └── UsbIo.h │ └── Protocol │ │ ├── BootLogo.h │ │ ├── DisplayProtocol.h │ │ ├── Dpc.h │ │ ├── EbcSimpleDebugger.h │ │ ├── EbcVmTest.h │ │ ├── EsrtManagement.h │ │ ├── FaultTolerantWrite.h │ │ ├── FormBrowserEx.h │ │ ├── FormBrowserEx2.h │ │ ├── GenericMemoryTest.h │ │ ├── LoadPe32Image.h │ │ ├── LockBox.h │ │ ├── Print2.h │ │ ├── SmmExitBootServices.h │ │ ├── SmmFaultTolerantWrite.h │ │ ├── SmmFirmwareVolumeBlock.h │ │ ├── SmmLegacyBoot.h │ │ ├── SmmReadyToBoot.h │ │ ├── SmmSwapAddressRange.h │ │ ├── SmmVarCheck.h │ │ ├── SmmVariable.h │ │ ├── SwapAddressRange.h │ │ ├── UfsHostController.h │ │ ├── VarCheck.h │ │ └── VariableLock.h ├── Library │ ├── AuthVariableLibNull │ │ ├── AuthVariableLibNull.c │ │ ├── AuthVariableLibNull.inf │ │ └── AuthVariableLibNull.uni │ ├── BasePlatformHookLibNull │ │ ├── BasePlatformHookLibNull.c │ │ ├── BasePlatformHookLibNull.inf │ │ └── BasePlatformHookLibNull.uni │ ├── BaseResetSystemLibNull │ │ ├── BaseResetSystemLibNull.c │ │ ├── BaseResetSystemLibNull.inf │ │ └── BaseResetSystemLibNull.uni │ ├── BaseSerialPortLib16550 │ │ ├── BaseSerialPortLib16550.c │ │ ├── BaseSerialPortLib16550.inf │ │ └── BaseSerialPortLib16550.uni │ ├── BaseSortLib │ │ ├── BaseSortLib.c │ │ ├── BaseSortLib.inf │ │ └── BaseSortLib.uni │ ├── CpuExceptionHandlerLibNull │ │ ├── CpuExceptionHandlerLibNull.c │ │ ├── CpuExceptionHandlerLibNull.inf │ │ └── CpuExceptionHandlerLibNull.uni │ ├── CustomizedDisplayLib │ │ ├── Colors.h │ │ ├── CustomizedDisplayLib.c │ │ ├── CustomizedDisplayLib.inf │ │ ├── CustomizedDisplayLib.uni │ │ ├── CustomizedDisplayLibInternal.c │ │ ├── CustomizedDisplayLibInternal.h │ │ └── CustomizedDisplayLibModStrs.uni │ ├── DebugAgentLibNull │ │ ├── DebugAgentLibNull.c │ │ ├── DebugAgentLibNull.inf │ │ └── DebugAgentLibNull.uni │ ├── DxeCapsuleLibNull │ │ ├── DxeCapsuleLibNull.c │ │ ├── DxeCapsuleLibNull.inf │ │ └── DxeCapsuleLibNull.uni │ ├── DxeCoreMemoryAllocationLib │ │ ├── DxeCoreMemoryAllocationLib.inf │ │ ├── DxeCoreMemoryAllocationLib.uni │ │ ├── DxeCoreMemoryAllocationServices.h │ │ └── MemoryAllocationLib.c │ ├── DxeCorePerformanceLib │ │ ├── DxeCorePerformanceLib.c │ │ ├── DxeCorePerformanceLib.inf │ │ ├── DxeCorePerformanceLib.uni │ │ └── DxeCorePerformanceLibInternal.h │ ├── DxeCrc32GuidedSectionExtractLib │ │ ├── DxeCrc32GuidedSectionExtractLib.c │ │ ├── DxeCrc32GuidedSectionExtractLib.inf │ │ └── DxeCrc32GuidedSectionExtractLib.uni │ ├── DxeDebugPrintErrorLevelLib │ │ ├── DxeDebugPrintErrorLevelLib.c │ │ ├── DxeDebugPrintErrorLevelLib.inf │ │ └── DxeDebugPrintErrorLevelLib.uni │ ├── DxeDpcLib │ │ ├── DpcLib.c │ │ ├── DxeDpcLib.inf │ │ └── DxeDpcLib.uni │ ├── DxeHttpLib │ │ ├── DxeHttpLib.c │ │ ├── DxeHttpLib.inf │ │ └── DxeHttpLib.uni │ ├── DxeIpIoLib │ │ ├── DxeIpIoLib.c │ │ ├── DxeIpIoLib.inf │ │ └── DxeIpIoLib.uni │ ├── DxeNetLib │ │ ├── DxeNetLib.c │ │ ├── DxeNetLib.inf │ │ ├── DxeNetLib.uni │ │ └── NetBuffer.c │ ├── DxePerformanceLib │ │ ├── DxePerformanceLib.c │ │ ├── DxePerformanceLib.inf │ │ └── DxePerformanceLib.uni │ ├── DxePrintLibPrint2Protocol │ │ ├── DxePrintLibPrint2Protocol.inf │ │ ├── DxePrintLibPrint2Protocol.uni │ │ └── PrintLib.c │ ├── DxeReportStatusCodeLib │ │ ├── DxeReportStatusCodeLib.inf │ │ ├── DxeReportStatusCodeLib.uni │ │ └── ReportStatusCodeLib.c │ ├── DxeSecurityManagementLib │ │ ├── DxeSecurityManagementLib.c │ │ ├── DxeSecurityManagementLib.inf │ │ └── DxeSecurityManagementLib.uni │ ├── DxeSmmPerformanceLib │ │ ├── DxeSmmPerformanceLib.c │ │ ├── DxeSmmPerformanceLib.inf │ │ └── DxeSmmPerformanceLib.uni │ ├── DxeTcpIoLib │ │ ├── DxeTcpIoLib.c │ │ ├── DxeTcpIoLib.inf │ │ └── DxeTcpIoLib.uni │ ├── DxeUdpIoLib │ │ ├── DxeUdpIoLib.c │ │ ├── DxeUdpIoLib.inf │ │ └── DxeUpdIoLib.uni │ ├── LockBoxNullLib │ │ ├── LockBoxNullLib.c │ │ ├── LockBoxNullLib.inf │ │ └── LockBoxNullLib.uni │ ├── LzmaCustomDecompressLib │ │ ├── F86GuidedSectionExtraction.c │ │ ├── GuidedSectionExtraction.c │ │ ├── LZMA-SDK-README.txt │ │ ├── LzmaArchCustomDecompressLib.inf │ │ ├── LzmaArchDecompressLib.uni │ │ ├── LzmaCustomDecompressLib.inf │ │ ├── LzmaDecompress.c │ │ ├── LzmaDecompressLib.uni │ │ ├── LzmaDecompressLibInternal.h │ │ ├── Sdk │ │ │ ├── C │ │ │ │ ├── 7zVersion.h │ │ │ │ ├── Bra.h │ │ │ │ ├── Bra86.c │ │ │ │ ├── CpuArch.h │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ └── Types.h │ │ │ ├── history.txt │ │ │ └── lzma.txt │ │ └── UefiLzma.h │ ├── OemHookStatusCodeLibNull │ │ ├── OemHookStatusCodeLibNull.c │ │ ├── OemHookStatusCodeLibNull.inf │ │ └── OemHookStatusCodeLibNull.uni │ ├── PeiCrc32GuidedSectionExtractLib │ │ ├── PeiCrc32GuidedSectionExtractLib.c │ │ ├── PeiCrc32GuidedSectionExtractLib.inf │ │ └── PeiCrc32GuidedSectionExtractLib.uni │ ├── PeiDebugPrintHobLib │ │ ├── PeiDebugPrintHobLib.c │ │ ├── PeiDebugPrintHobLib.inf │ │ └── PeiDebugPrintHobLib.uni │ ├── PeiDxeDebugLibReportStatusCode │ │ ├── DebugLib.c │ │ ├── PeiDxeDebugLibReportStatusCode.inf │ │ └── PeiDxeDebugLibReportStatusCode.uni │ ├── PeiPerformanceLib │ │ ├── PeiPerformanceLib.c │ │ ├── PeiPerformanceLib.inf │ │ └── PeiPerformanceLib.uni │ ├── PeiRecoveryLibNull │ │ ├── PeiRecoveryLibNull.c │ │ ├── PeiRecoveryLibNull.inf │ │ └── PeiRecoveryLibNull.uni │ ├── PeiReportStatusCodeLib │ │ ├── PeiReportStatusCodeLib.inf │ │ ├── PeiReportStatusCodeLib.uni │ │ └── ReportStatusCodeLib.c │ ├── PeiS3LibNull │ │ ├── PeiS3LibNull.c │ │ ├── PeiS3LibNull.inf │ │ └── PeiS3LibNull.uni │ ├── PiDxeS3BootScriptLib │ │ ├── BootScriptExecute.c │ │ ├── BootScriptInternalFormat.h │ │ ├── BootScriptSave.c │ │ ├── DxeS3BootScriptLib.inf │ │ ├── DxeS3BootScriptLib.uni │ │ └── InternalBootScriptLib.h │ ├── PiSmmCoreMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ ├── PiSmmCoreMemoryAllocationLib.inf │ │ ├── PiSmmCoreMemoryAllocationLib.uni │ │ └── PiSmmCoreMemoryAllocationServices.h │ ├── PiSmmCoreSmmServicesTableLib │ │ ├── PiSmmCoreSmmServicesTableLib.c │ │ ├── PiSmmCoreSmmServicesTableLib.inf │ │ └── PiSmmCoreSmmServicesTableLib.uni │ ├── PlatformBootManagerLibNull │ │ ├── PlatformBootManager.c │ │ ├── PlatformBootManagerLibNull.inf │ │ └── PlatformBootManagerLibNull.uni │ ├── PlatformHookLibSerialPortPpi │ │ ├── PlatformHookLibSerialPortPpi.c │ │ ├── PlatformHookLibSerialPortPpi.inf │ │ └── PlatformHookLibSerialPortPpi.uni │ ├── PlatformVarCleanupLib │ │ ├── PlatVarCleanup.h │ │ ├── PlatVarCleanup.vfr │ │ ├── PlatVarCleanupHii.h │ │ ├── PlatVarCleanupLib.c │ │ ├── PlatformVarCleanupLib.inf │ │ ├── PlatformVarCleanupLib.uni │ │ └── VfrStrings.uni │ ├── RuntimeDxeReportStatusCodeLib │ │ ├── ReportStatusCodeLib.c │ │ ├── RuntimeDxeReportStatusCodeLib.inf │ │ └── RuntimeDxeReportStatusCodeLib.uni │ ├── SmmCorePerformanceLib │ │ ├── SmmCorePerformanceLib.c │ │ ├── SmmCorePerformanceLib.inf │ │ ├── SmmCorePerformanceLib.uni │ │ └── SmmCorePerformanceLibInternal.h │ ├── SmmCorePlatformHookLibNull │ │ ├── SmmCorePlatformHookLibNull.c │ │ ├── SmmCorePlatformHookLibNull.inf │ │ └── SmmCorePlatformHookLibNull.uni │ ├── SmmLockBoxLib │ │ ├── SmmLockBoxDxeLib.c │ │ ├── SmmLockBoxDxeLib.inf │ │ ├── SmmLockBoxDxeLib.uni │ │ ├── SmmLockBoxLibPrivate.h │ │ ├── SmmLockBoxPeiLib.c │ │ ├── SmmLockBoxPeiLib.inf │ │ ├── SmmLockBoxPeiLib.uni │ │ ├── SmmLockBoxSmmLib.c │ │ ├── SmmLockBoxSmmLib.inf │ │ └── SmmLockBoxSmmLib.uni │ ├── SmmPerformanceLib │ │ ├── SmmPerformanceLib.c │ │ ├── SmmPerformanceLib.inf │ │ └── SmmPerformanceLib.uni │ ├── SmmReportStatusCodeLib │ │ ├── ReportStatusCodeLib.c │ │ ├── SmmReportStatusCodeLib.inf │ │ └── SmmReportStatusCodeLib.uni │ ├── TpmMeasurementLibNull │ │ ├── TpmMeasurementLibNull.c │ │ ├── TpmMeasurementLibNull.inf │ │ └── TpmMeasurementLibNull.uni │ ├── UefiBootManagerLib │ │ ├── BmBoot.c │ │ ├── BmConnect.c │ │ ├── BmConsole.c │ │ ├── BmDriverHealth.c │ │ ├── BmHotkey.c │ │ ├── BmLoadOption.c │ │ ├── BmMisc.c │ │ ├── BmPerformance.c │ │ ├── InternalBm.h │ │ ├── UefiBootManagerLib.inf │ │ └── UefiBootManagerLib.uni │ ├── UefiHiiLib │ │ ├── HiiLanguage.c │ │ ├── HiiLib.c │ │ ├── HiiString.c │ │ ├── InternalHiiLib.h │ │ ├── UefiHiiLib.inf │ │ └── UefiHiiLib.uni │ ├── UefiHiiServicesLib │ │ ├── UefiHiiServicesLib.c │ │ ├── UefiHiiServicesLib.inf │ │ └── UefiHiiServicesLib.uni │ ├── UefiSortLib │ │ ├── UefiSortLib.c │ │ ├── UefiSortLib.inf │ │ └── UefiSortLib.uni │ ├── VarCheckHiiLib │ │ ├── InternalVarCheckStructure.h │ │ ├── VarCheckHii.h │ │ ├── VarCheckHiiGen.c │ │ ├── VarCheckHiiGen.h │ │ ├── VarCheckHiiGenFromFv.c │ │ ├── VarCheckHiiGenFromHii.c │ │ ├── VarCheckHiiLib.inf │ │ ├── VarCheckHiiLib.uni │ │ └── VarCheckHiiLibNullClass.c │ ├── VarCheckLib │ │ ├── VarCheckLib.c │ │ ├── VarCheckLib.inf │ │ └── VarCheckLib.uni │ ├── VarCheckPcdLib │ │ ├── VarCheckPcdLib.inf │ │ ├── VarCheckPcdLib.uni │ │ ├── VarCheckPcdLibNullClass.c │ │ └── VarCheckPcdStructure.h │ └── VarCheckUefiLib │ │ ├── VarCheckUefiLib.inf │ │ ├── VarCheckUefiLib.uni │ │ └── VarCheckUefiLibNullClass.c ├── License.txt ├── Logo │ ├── Logo.bmp │ ├── Logo.inf │ ├── Logo.uni │ └── LogoExtra.uni ├── MdeModulePkg.dec ├── MdeModulePkg.dsc ├── MdeModulePkg.uni ├── MdeModulePkgExtra.uni └── Universal │ ├── Acpi │ ├── AcpiPlatformDxe │ │ ├── AcpiPlatform.c │ │ ├── AcpiPlatform.uni │ │ ├── AcpiPlatformDxe.inf │ │ └── AcpiPlatformExtra.uni │ ├── AcpiTableDxe │ │ ├── AcpiSdt.c │ │ ├── AcpiSdt.h │ │ ├── AcpiTable.c │ │ ├── AcpiTable.h │ │ ├── AcpiTableDxe.inf │ │ ├── AcpiTableDxe.uni │ │ ├── AcpiTableDxeExtra.uni │ │ ├── AcpiTableProtocol.c │ │ ├── Aml.c │ │ ├── AmlChild.c │ │ ├── AmlNamespace.c │ │ ├── AmlOption.c │ │ └── AmlString.c │ ├── BootGraphicsResourceTableDxe │ │ ├── BootGraphicsResourceTableDxe.c │ │ ├── BootGraphicsResourceTableDxe.inf │ │ ├── BootGraphicsResourceTableDxe.uni │ │ └── BootGraphicsResourceTableDxeExtra.uni │ ├── BootScriptExecutorDxe │ │ ├── BootScriptExecutorDxe.inf │ │ ├── BootScriptExecutorDxe.uni │ │ ├── BootScriptExecutorDxeExtra.uni │ │ ├── IA32 │ │ │ ├── S3Asm.S │ │ │ ├── S3Asm.asm │ │ │ └── SetIdtEntry.c │ │ ├── ScriptExecute.c │ │ ├── ScriptExecute.h │ │ └── X64 │ │ │ ├── S3Asm.S │ │ │ ├── S3Asm.asm │ │ │ └── SetIdtEntry.c │ ├── FirmwarePerformanceDataTableDxe │ │ ├── FirmwarePerformanceDxe.c │ │ ├── FirmwarePerformanceDxe.inf │ │ ├── FirmwarePerformanceDxe.uni │ │ └── FirmwarePerformanceDxeExtra.uni │ ├── FirmwarePerformanceDataTablePei │ │ ├── FirmwarePerformancePei.c │ │ ├── FirmwarePerformancePei.inf │ │ ├── FirmwarePerformancePei.uni │ │ └── FirmwarePerformancePeiExtra.uni │ ├── FirmwarePerformanceDataTableSmm │ │ ├── FirmwarePerformanceSmm.c │ │ ├── FirmwarePerformanceSmm.inf │ │ ├── FirmwarePerformanceSmm.uni │ │ └── FirmwarePerformanceSmmExtra.uni │ ├── S3SaveStateDxe │ │ ├── InternalS3SaveState.h │ │ ├── S3SaveState.c │ │ ├── S3SaveStateDxe.inf │ │ ├── S3SaveStateDxe.uni │ │ └── S3SaveStateDxeExtra.uni │ └── SmmS3SaveState │ │ ├── InternalSmmSaveState.h │ │ ├── SmmS3SaveState.c │ │ ├── SmmS3SaveState.inf │ │ ├── SmmS3SaveState.uni │ │ └── SmmS3SaveStateExtra.uni │ ├── BdsDxe │ ├── Bds.h │ ├── BdsDxe.inf │ ├── BdsDxe.uni │ ├── BdsDxeExtra.uni │ ├── BdsEntry.c │ ├── HwErrRecSupport.c │ ├── HwErrRecSupport.h │ ├── Language.c │ └── Language.h │ ├── BootManagerPolicyDxe │ ├── BootManagerPolicyDxe.c │ ├── BootManagerPolicyDxe.inf │ ├── BootManagerPolicyDxe.uni │ └── BootManagerPolicyDxeExtra.uni │ ├── CapsulePei │ ├── Capsule.h │ ├── CapsulePei.inf │ ├── CapsulePei.uni │ ├── CapsulePeiExtra.uni │ ├── CapsuleX64.inf │ ├── CapsuleX64.uni │ ├── CapsuleX64Extra.uni │ ├── Common │ │ ├── CapsuleCoalesce.c │ │ └── CommonHeader.h │ ├── UefiCapsule.c │ └── X64 │ │ ├── PageFaultHandler.S │ │ ├── PageFaultHandler.asm │ │ └── X64Entry.c │ ├── CapsuleRuntimeDxe │ ├── CapsuleRuntimeDxe.inf │ ├── CapsuleRuntimeDxe.uni │ ├── CapsuleRuntimeDxeExtra.uni │ ├── CapsuleService.c │ ├── SaveLongModeContext.c │ └── X64 │ │ └── SaveLongModeContext.c │ ├── Console │ ├── ConPlatformDxe │ │ ├── ComponentName.c │ │ ├── ConPlatform.c │ │ ├── ConPlatform.h │ │ ├── ConPlatformDxe.inf │ │ ├── ConPlatformDxe.uni │ │ └── ConPlatformDxeExtra.uni │ ├── ConSplitterDxe │ │ ├── ComponentName.c │ │ ├── ConSplitter.c │ │ ├── ConSplitter.h │ │ ├── ConSplitterDxe.inf │ │ ├── ConSplitterDxe.uni │ │ ├── ConSplitterDxeExtra.uni │ │ └── ConSplitterGraphics.c │ ├── GraphicsConsoleDxe │ │ ├── ComponentName.c │ │ ├── GraphicsConsole.c │ │ ├── GraphicsConsole.h │ │ ├── GraphicsConsoleDxe.inf │ │ ├── GraphicsConsoleDxe.uni │ │ ├── GraphicsConsoleDxeExtra.uni │ │ └── LaffStd.c │ └── TerminalDxe │ │ ├── Ansi.c │ │ ├── ComponentName.c │ │ ├── Terminal.c │ │ ├── Terminal.h │ │ ├── TerminalConIn.c │ │ ├── TerminalConOut.c │ │ ├── TerminalDxe.inf │ │ ├── TerminalDxe.uni │ │ ├── TerminalDxeExtra.uni │ │ └── Vtutf8.c │ ├── DebugPortDxe │ ├── ComponentName.c │ ├── DebugPort.c │ ├── DebugPort.h │ ├── DebugPortDxe.inf │ ├── DebugPortDxe.uni │ └── DebugPortDxeExtra.uni │ ├── DebugSupportDxe │ ├── DebugSupport.c │ ├── DebugSupportDxe.inf │ ├── DebugSupportDxe.uni │ ├── DebugSupportDxeExtra.uni │ ├── Ia32 │ │ ├── AsmFuncs.S │ │ ├── AsmFuncs.asm │ │ ├── DebugSupport.h │ │ ├── PlDebugSupport.c │ │ ├── PlDebugSupport.h │ │ └── PlDebugSupportIa32.c │ ├── Ipf │ │ ├── AsmFuncs.s │ │ ├── Common.i │ │ ├── Ds64Macros.i │ │ ├── PlDebugSupport.c │ │ └── PlDebugSupport.h │ └── X64 │ │ ├── AsmFuncs.S │ │ ├── AsmFuncs.asm │ │ ├── PlDebugSupport.h │ │ └── PlDebugSupportX64.c │ ├── DevicePathDxe │ ├── DevicePath.c │ ├── DevicePathDxe.inf │ ├── DevicePathDxe.uni │ └── DevicePathDxeExtra.uni │ ├── Disk │ ├── CdExpressPei │ │ ├── CdExpressPei.inf │ │ ├── CdExpressPei.uni │ │ ├── CdExpressPeiExtra.uni │ │ ├── PeiCdExpress.c │ │ └── PeiCdExpress.h │ ├── DiskIoDxe │ │ ├── ComponentName.c │ │ ├── DiskIo.c │ │ ├── DiskIo.h │ │ ├── DiskIoDxe.inf │ │ ├── DiskIoDxe.uni │ │ └── DiskIoDxeExtra.uni │ ├── PartitionDxe │ │ ├── ComponentName.c │ │ ├── ElTorito.c │ │ ├── Gpt.c │ │ ├── Mbr.c │ │ ├── Partition.c │ │ ├── Partition.h │ │ ├── PartitionDxe.inf │ │ ├── PartitionDxe.uni │ │ └── PartitionDxeExtra.uni │ └── UnicodeCollation │ │ └── EnglishDxe │ │ ├── EnglishDxe.inf │ │ ├── EnglishDxe.uni │ │ ├── EnglishDxeExtra.uni │ │ ├── UnicodeCollationEng.c │ │ └── UnicodeCollationEng.h │ ├── DisplayEngineDxe │ ├── DisplayEngine.uni │ ├── DisplayEngineDxe.inf │ ├── DisplayEngineExtra.uni │ ├── FormDisplay.c │ ├── FormDisplay.h │ ├── FormDisplayStr.uni │ ├── InputHandler.c │ └── ProcessOptions.c │ ├── DriverHealthManagerDxe │ ├── DriverHealthConfigureVfr.Vfr │ ├── DriverHealthManagerDxe.c │ ├── DriverHealthManagerDxe.h │ ├── DriverHealthManagerDxe.inf │ ├── DriverHealthManagerDxe.uni │ ├── DriverHealthManagerDxeExtra.uni │ ├── DriverHealthManagerStrings.uni │ ├── DriverHealthManagerVfr.Vfr │ └── DriverHealthManagerVfr.h │ ├── DriverSampleDxe │ ├── DriverSample.c │ ├── DriverSample.h │ ├── DriverSample.uni │ ├── DriverSampleDxe.inf │ ├── DriverSampleExtra.uni │ ├── Inventory.vfr │ ├── InventoryStrings.uni │ ├── NVDataStruc.h │ ├── Vfr.vfr │ └── VfrStrings.uni │ ├── EbcDxe │ ├── EbcDxe.inf │ ├── EbcDxe.uni │ ├── EbcDxeExtra.uni │ ├── EbcExecute.c │ ├── EbcExecute.h │ ├── EbcInt.c │ ├── EbcInt.h │ ├── Ia32 │ │ ├── EbcLowLevel.S │ │ ├── EbcLowLevel.asm │ │ └── EbcSupport.c │ ├── Ipf │ │ ├── EbcLowLevel.s │ │ ├── EbcSupport.c │ │ └── EbcSupport.h │ └── X64 │ │ ├── EbcLowLevel.S │ │ ├── EbcLowLevel.asm │ │ └── EbcSupport.c │ ├── EsrtDxe │ ├── EsrtDxe.c │ ├── EsrtDxe.inf │ ├── EsrtDxe.uni │ ├── EsrtDxeExtra.uni │ ├── EsrtImpl.c │ └── EsrtImpl.h │ ├── FaultTolerantWriteDxe │ ├── FaultTolerantWrite.c │ ├── FaultTolerantWrite.h │ ├── FaultTolerantWriteDxe.c │ ├── FaultTolerantWriteDxe.inf │ ├── FaultTolerantWriteDxe.uni │ ├── FaultTolerantWriteDxeExtra.uni │ ├── FaultTolerantWriteSmm.c │ ├── FaultTolerantWriteSmm.inf │ ├── FaultTolerantWriteSmmCommon.h │ ├── FaultTolerantWriteSmmDxe.c │ ├── FaultTolerantWriteSmmDxe.h │ ├── FaultTolerantWriteSmmDxe.inf │ ├── FaultTolerantWriteSmmDxe.uni │ ├── FaultTolerantWriteSmmDxeExtra.uni │ ├── FtwMisc.c │ ├── SmmFaultTolerantWriteDxe.uni │ ├── SmmFaultTolerantWriteDxeExtra.uni │ └── UpdateWorkingBlock.c │ ├── FaultTolerantWritePei │ ├── FaultTolerantWritePei.c │ ├── FaultTolerantWritePei.inf │ ├── FaultTolerantWritePei.uni │ └── FaultTolerantWritePeiExtra.uni │ ├── FvSimpleFileSystemDxe │ ├── ComponentName.c │ ├── FvSimpleFileSystem.c │ ├── FvSimpleFileSystem.uni │ ├── FvSimpleFileSystemDxe.inf │ ├── FvSimpleFileSystemEntryPoint.c │ ├── FvSimpleFileSystemExtra.uni │ └── FvSimpleFileSystemInternal.h │ ├── HiiDatabaseDxe │ ├── ConfigKeywordHandler.c │ ├── ConfigRouting.c │ ├── Database.c │ ├── Font.c │ ├── HiiDatabase.h │ ├── HiiDatabase.uni │ ├── HiiDatabaseDxe.inf │ ├── HiiDatabaseEntry.c │ ├── HiiDatabaseExtra.uni │ ├── Image.c │ └── String.c │ ├── HiiResourcesSampleDxe │ ├── HiiResourcesSample.c │ ├── HiiResourcesSample.uni │ ├── HiiResourcesSampleDxe.inf │ ├── HiiResourcesSampleExtra.uni │ ├── Sample.vfr │ └── SampleStrings.uni │ ├── LegacyRegion2Dxe │ ├── LegacyRegion2.c │ ├── LegacyRegion2.h │ ├── LegacyRegion2Dxe.inf │ ├── LegacyRegion2Dxe.uni │ └── LegacyRegion2DxeExtra.uni │ ├── LockBox │ └── SmmLockBox │ │ ├── SmmLockBox.c │ │ ├── SmmLockBox.inf │ │ ├── SmmLockBox.uni │ │ └── SmmLockBoxExtra.uni │ ├── MemoryTest │ ├── GenericMemoryTestDxe │ │ ├── GenericMemoryTestDxe.inf │ │ ├── GenericMemoryTestDxe.uni │ │ ├── GenericMemoryTestDxeExtra.uni │ │ ├── LightMemoryTest.c │ │ └── LightMemoryTest.h │ └── NullMemoryTestDxe │ │ ├── NullMemoryTest.c │ │ ├── NullMemoryTest.h │ │ ├── NullMemoryTestDxe.inf │ │ ├── NullMemoryTestDxe.uni │ │ └── NullMemoryTestDxeExtra.uni │ ├── Metronome │ ├── Metronome.c │ ├── Metronome.h │ ├── Metronome.inf │ ├── Metronome.uni │ └── MetronomeExtra.uni │ ├── MonotonicCounterRuntimeDxe │ ├── MonotonicCounter.c │ ├── MonotonicCounterRuntimeDxe.inf │ ├── MonotonicCounterRuntimeDxe.uni │ └── MonotonicCounterRuntimeDxeExtra.uni │ ├── Network │ ├── ArpDxe │ │ ├── ArpDriver.c │ │ ├── ArpDriver.h │ │ ├── ArpDxe.inf │ │ ├── ArpDxe.uni │ │ ├── ArpDxeExtra.uni │ │ ├── ArpImpl.c │ │ ├── ArpImpl.h │ │ ├── ArpMain.c │ │ └── ComponentName.c │ ├── Dhcp4Dxe │ │ ├── ComponentName.c │ │ ├── Dhcp4Driver.c │ │ ├── Dhcp4Driver.h │ │ ├── Dhcp4Dxe.inf │ │ ├── Dhcp4Dxe.uni │ │ ├── Dhcp4DxeExtra.uni │ │ ├── Dhcp4Impl.c │ │ ├── Dhcp4Impl.h │ │ ├── Dhcp4Io.c │ │ ├── Dhcp4Io.h │ │ ├── Dhcp4Option.c │ │ └── Dhcp4Option.h │ ├── DpcDxe │ │ ├── Dpc.c │ │ ├── Dpc.h │ │ ├── DpcDxe.inf │ │ ├── DpcDxe.uni │ │ └── DpcDxeExtra.uni │ ├── IScsiDxe │ │ ├── ComponentName.c │ │ ├── ComponentName.h │ │ ├── IScsi4Dxe.uni │ │ ├── IScsi4DxeExtra.uni │ │ ├── IScsiCHAP.c │ │ ├── IScsiCHAP.h │ │ ├── IScsiCommon.h │ │ ├── IScsiConfig.c │ │ ├── IScsiConfig.h │ │ ├── IScsiConfigDxe.vfr │ │ ├── IScsiConfigDxeStrings.uni │ │ ├── IScsiConfigNVDataStruc.h │ │ ├── IScsiDhcp.c │ │ ├── IScsiDhcp.h │ │ ├── IScsiDriver.c │ │ ├── IScsiDriver.h │ │ ├── IScsiDxe.inf │ │ ├── IScsiExtScsiPassThru.c │ │ ├── IScsiExtScsiPassThru.h │ │ ├── IScsiIbft.c │ │ ├── IScsiIbft.h │ │ ├── IScsiImpl.h │ │ ├── IScsiInitiatorName.c │ │ ├── IScsiInitiatorName.h │ │ ├── IScsiMisc.c │ │ ├── IScsiMisc.h │ │ ├── IScsiProto.c │ │ ├── IScsiProto.h │ │ ├── IScsiTcp4Io.c │ │ ├── IScsiTcp4Io.h │ │ ├── Md5.c │ │ └── Md5.h │ ├── Ip4Dxe │ │ ├── ComponentName.c │ │ ├── Ip4Common.c │ │ ├── Ip4Common.h │ │ ├── Ip4Config2.vfr │ │ ├── Ip4Config2Impl.c │ │ ├── Ip4Config2Impl.h │ │ ├── Ip4Config2Nv.c │ │ ├── Ip4Config2Nv.h │ │ ├── Ip4Driver.c │ │ ├── Ip4Driver.h │ │ ├── Ip4Dxe.inf │ │ ├── Ip4Dxe.uni │ │ ├── Ip4DxeExtra.uni │ │ ├── Ip4DxeStrings.uni │ │ ├── Ip4Icmp.c │ │ ├── Ip4Icmp.h │ │ ├── Ip4If.c │ │ ├── Ip4If.h │ │ ├── Ip4Igmp.c │ │ ├── Ip4Igmp.h │ │ ├── Ip4Impl.c │ │ ├── Ip4Impl.h │ │ ├── Ip4Input.c │ │ ├── Ip4Input.h │ │ ├── Ip4NvData.h │ │ ├── Ip4Option.c │ │ ├── Ip4Option.h │ │ ├── Ip4Output.c │ │ ├── Ip4Output.h │ │ ├── Ip4Route.c │ │ └── Ip4Route.h │ ├── MnpDxe │ │ ├── ComponentName.c │ │ ├── ComponentName.h │ │ ├── MnpConfig.c │ │ ├── MnpDriver.c │ │ ├── MnpDriver.h │ │ ├── MnpDxe.inf │ │ ├── MnpDxe.uni │ │ ├── MnpDxeExtra.uni │ │ ├── MnpImpl.h │ │ ├── MnpIo.c │ │ ├── MnpMain.c │ │ ├── MnpVlan.c │ │ └── MnpVlan.h │ ├── Mtftp4Dxe │ │ ├── ComponentName.c │ │ ├── Mtftp4Driver.c │ │ ├── Mtftp4Driver.h │ │ ├── Mtftp4Dxe.inf │ │ ├── Mtftp4Dxe.uni │ │ ├── Mtftp4DxeExtra.uni │ │ ├── Mtftp4Impl.c │ │ ├── Mtftp4Impl.h │ │ ├── Mtftp4Option.c │ │ ├── Mtftp4Option.h │ │ ├── Mtftp4Rrq.c │ │ ├── Mtftp4Support.c │ │ ├── Mtftp4Support.h │ │ └── Mtftp4Wrq.c │ ├── SnpDxe │ │ ├── Callback.c │ │ ├── ComponentName.c │ │ ├── Get_status.c │ │ ├── Initialize.c │ │ ├── Mcast_ip_to_mac.c │ │ ├── Nvdata.c │ │ ├── Receive.c │ │ ├── Receive_filters.c │ │ ├── Reset.c │ │ ├── Shutdown.c │ │ ├── Snp.c │ │ ├── Snp.h │ │ ├── SnpDxe.inf │ │ ├── SnpDxe.uni │ │ ├── SnpDxeExtra.uni │ │ ├── Start.c │ │ ├── Station_address.c │ │ ├── Statistics.c │ │ ├── Stop.c │ │ ├── Transmit.c │ │ └── WaitForPacket.c │ ├── Tcp4Dxe │ │ ├── ComponentName.c │ │ ├── SockImpl.c │ │ ├── SockImpl.h │ │ ├── SockInterface.c │ │ ├── Socket.h │ │ ├── Tcp4Dispatcher.c │ │ ├── Tcp4Driver.c │ │ ├── Tcp4Driver.h │ │ ├── Tcp4Dxe.inf │ │ ├── Tcp4Dxe.uni │ │ ├── Tcp4DxeExtra.uni │ │ ├── Tcp4Func.h │ │ ├── Tcp4Input.c │ │ ├── Tcp4Io.c │ │ ├── Tcp4Main.c │ │ ├── Tcp4Main.h │ │ ├── Tcp4Misc.c │ │ ├── Tcp4Option.c │ │ ├── Tcp4Option.h │ │ ├── Tcp4Output.c │ │ ├── Tcp4Proto.h │ │ └── Tcp4Timer.c │ ├── Udp4Dxe │ │ ├── ComponentName.c │ │ ├── Udp4Driver.c │ │ ├── Udp4Driver.h │ │ ├── Udp4Dxe.inf │ │ ├── Udp4Dxe.uni │ │ ├── Udp4DxeExtra.uni │ │ ├── Udp4Impl.c │ │ ├── Udp4Impl.h │ │ └── Udp4Main.c │ ├── UefiPxeBcDxe │ │ ├── ComponentName.c │ │ ├── PxeBcDhcp.c │ │ ├── PxeBcDhcp.h │ │ ├── PxeBcDriver.c │ │ ├── PxeBcDriver.h │ │ ├── PxeBcImpl.c │ │ ├── PxeBcImpl.h │ │ ├── PxeBcMtftp.c │ │ ├── PxeBcMtftp.h │ │ ├── PxeBcSupport.c │ │ ├── PxeBcSupport.h │ │ ├── UefiPxe4BcDxe.uni │ │ ├── UefiPxe4BcDxeExtra.uni │ │ └── UefiPxeBcDxe.inf │ └── VlanConfigDxe │ │ ├── ComponentName.c │ │ ├── VlanConfig.vfr │ │ ├── VlanConfigDriver.c │ │ ├── VlanConfigDxe.inf │ │ ├── VlanConfigDxe.uni │ │ ├── VlanConfigDxeExtra.uni │ │ ├── VlanConfigImpl.c │ │ ├── VlanConfigImpl.h │ │ ├── VlanConfigNvData.h │ │ └── VlanConfigStrings.uni │ ├── PCD │ ├── Dxe │ │ ├── Pcd.c │ │ ├── Pcd.inf │ │ ├── PcdDxe.uni │ │ ├── PcdDxeExtra.uni │ │ ├── Service.c │ │ └── Service.h │ └── Pei │ │ ├── Pcd.c │ │ ├── Pcd.inf │ │ ├── PcdPeim.uni │ │ ├── PcdPeimExtra.uni │ │ ├── Service.c │ │ └── Service.h │ ├── PcatSingleSegmentPciCfg2Pei │ ├── PcatSingleSegmentPciCfg2Pei.inf │ ├── PcatSingleSegmentPciCfg2Pei.uni │ ├── PcatSingleSegmentPciCfg2PeiExtra.uni │ └── PciCfg2.c │ ├── PlatformDriOverrideDxe │ ├── InternalPlatDriOverrideDxe.h │ ├── PlatDriOverrideDxe.c │ ├── PlatDriOverrideDxe.uni │ ├── PlatDriOverrideDxeExtra.uni │ ├── PlatDriOverrideLib.c │ ├── PlatOverMngr.h │ ├── PlatformDriOverrideDxe.inf │ ├── Vfr.vfr │ └── VfrStrings.uni │ ├── PrintDxe │ ├── Print.c │ ├── PrintDxe.inf │ ├── PrintDxe.uni │ └── PrintDxeExtra.uni │ ├── PropertiesTableAttributesDxe │ ├── PropertiesTableAttributesDxe.c │ ├── PropertiesTableAttributesDxe.inf │ ├── PropertiesTableAttributesDxe.uni │ └── PropertiesTableAttributesDxeExtra.uni │ ├── RegularExpressionDxe │ ├── Oniguruma │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── OnigurumaIntrinsics.c │ │ ├── OnigurumaUefiPort.c │ │ ├── OnigurumaUefiPort.h │ │ ├── README │ │ ├── enc │ │ │ ├── ascii.c │ │ │ ├── unicode.c │ │ │ └── utf16_le.c │ │ ├── oniggnu.h │ │ ├── onigposix.h │ │ ├── oniguruma.h │ │ ├── regcomp.c │ │ ├── regenc.c │ │ ├── regenc.h │ │ ├── regerror.c │ │ ├── regexec.c │ │ ├── reggnu.c │ │ ├── regint.h │ │ ├── regparse.c │ │ ├── regparse.h │ │ ├── regposerr.c │ │ ├── regposix.c │ │ ├── regsyntax.c │ │ ├── regtrav.c │ │ ├── regversion.c │ │ ├── st.c │ │ └── st.h │ ├── RegularExpressionDxe.c │ ├── RegularExpressionDxe.h │ └── RegularExpressionDxe.inf │ ├── ReportStatusCodeRouter │ ├── Pei │ │ ├── ReportStatusCodeRouterPei.c │ │ ├── ReportStatusCodeRouterPei.h │ │ ├── ReportStatusCodeRouterPei.inf │ │ ├── ReportStatusCodeRouterPei.uni │ │ └── ReportStatusCodeRouterPeiExtra.uni │ ├── RuntimeDxe │ │ ├── ReportStatusCodeRouterRuntimeDxe.c │ │ ├── ReportStatusCodeRouterRuntimeDxe.h │ │ ├── ReportStatusCodeRouterRuntimeDxe.inf │ │ ├── ReportStatusCodeRouterRuntimeDxe.uni │ │ └── ReportStatusCodeRouterRuntimeDxeExtra.uni │ └── Smm │ │ ├── ReportStatusCodeRouterSmm.c │ │ ├── ReportStatusCodeRouterSmm.h │ │ ├── ReportStatusCodeRouterSmm.inf │ │ ├── ReportStatusCodeRouterSmm.uni │ │ └── ReportStatusCodeRouterSmmExtra.uni │ ├── ResetSystemRuntimeDxe │ ├── ResetSystem.c │ ├── ResetSystem.h │ ├── ResetSystemRuntimeDxe.inf │ ├── ResetSystemRuntimeDxe.uni │ └── ResetSystemRuntimeDxeExtra.uni │ ├── SectionExtractionDxe │ ├── SectionExtractionDxe.c │ ├── SectionExtractionDxe.inf │ ├── SectionExtractionDxe.uni │ └── SectionExtractionDxeExtra.uni │ ├── SectionExtractionPei │ ├── SectionExtractionPei.c │ ├── SectionExtractionPei.inf │ ├── SectionExtractionPei.uni │ └── SectionExtractionPeiExtra.uni │ ├── SecurityStubDxe │ ├── SecurityStub.c │ ├── SecurityStubDxe.inf │ ├── SecurityStubDxe.uni │ └── SecurityStubDxeExtra.uni │ ├── SetupBrowserDxe │ ├── Expression.c │ ├── Expression.h │ ├── IfrParse.c │ ├── Presentation.c │ ├── Setup.c │ ├── Setup.h │ ├── SetupBrowser.uni │ ├── SetupBrowserDxe.inf │ └── SetupBrowserExtra.uni │ ├── SmbiosDxe │ ├── SmbiosDxe.c │ ├── SmbiosDxe.h │ ├── SmbiosDxe.inf │ ├── SmbiosDxe.uni │ └── SmbiosDxeExtra.uni │ ├── StatusCodeHandler │ ├── Pei │ │ ├── MemoryStausCodeWorker.c │ │ ├── SerialStatusCodeWorker.c │ │ ├── StatusCodeHandlerPei.c │ │ ├── StatusCodeHandlerPei.h │ │ ├── StatusCodeHandlerPei.inf │ │ ├── StatusCodeHandlerPei.uni │ │ └── StatusCodeHandlerPeiExtra.uni │ ├── RuntimeDxe │ │ ├── MemoryStatusCodeWorker.c │ │ ├── SerialStatusCodeWorker.c │ │ ├── StatusCodeHandlerRuntimeDxe.c │ │ ├── StatusCodeHandlerRuntimeDxe.h │ │ ├── StatusCodeHandlerRuntimeDxe.inf │ │ ├── StatusCodeHandlerRuntimeDxe.uni │ │ └── StatusCodeHandlerRuntimeDxeExtra.uni │ └── Smm │ │ ├── MemoryStatusCodeWorker.c │ │ ├── SerialStatusCodeWorker.c │ │ ├── StatusCodeHandlerSmm.c │ │ ├── StatusCodeHandlerSmm.h │ │ ├── StatusCodeHandlerSmm.inf │ │ ├── StatusCodeHandlerSmm.uni │ │ └── StatusCodeHandlerSmmExtra.uni │ ├── TimestampDxe │ ├── TimestampDxe.c │ ├── TimestampDxe.inf │ ├── TimestampDxe.uni │ └── TimestampDxeExtra.uni │ ├── Variable │ ├── EmuRuntimeDxe │ │ ├── EmuVariable.c │ │ ├── EmuVariableRuntimeDxe.inf │ │ ├── EmuVariableRuntimeDxe.uni │ │ ├── EmuVariableRuntimeDxeExtra.uni │ │ ├── InitVariable.c │ │ └── Variable.h │ ├── Pei │ │ ├── PeiVariable.uni │ │ ├── PeiVariableExtra.uni │ │ ├── Variable.c │ │ ├── Variable.h │ │ └── VariablePei.inf │ └── RuntimeDxe │ │ ├── Measurement.c │ │ ├── Reclaim.c │ │ ├── VarCheck.c │ │ ├── Variable.c │ │ ├── Variable.h │ │ ├── VariableDxe.c │ │ ├── VariableExLib.c │ │ ├── VariableRuntimeDxe.inf │ │ ├── VariableRuntimeDxe.uni │ │ ├── VariableRuntimeDxeExtra.uni │ │ ├── VariableSmm.c │ │ ├── VariableSmm.inf │ │ ├── VariableSmm.uni │ │ ├── VariableSmmExtra.uni │ │ ├── VariableSmmRuntimeDxe.c │ │ ├── VariableSmmRuntimeDxe.inf │ │ ├── VariableSmmRuntimeDxe.uni │ │ └── VariableSmmRuntimeDxeExtra.uni │ └── WatchdogTimerDxe │ ├── WatchdogTimer.c │ ├── WatchdogTimer.h │ ├── WatchdogTimer.inf │ ├── WatchdogTimer.uni │ └── WatchdogTimerExtra.uni ├── MdePkg ├── Contributions.txt ├── Include │ ├── AArch64 │ │ └── ProcessorBind.h │ ├── Arm │ │ └── ProcessorBind.h │ ├── Base.h │ ├── Ebc │ │ └── ProcessorBind.h │ ├── Guid │ │ ├── Acpi.h │ │ ├── Apriori.h │ │ ├── AprioriFileName.h │ │ ├── CapsuleReport.h │ │ ├── Cper.h │ │ ├── DebugImageInfoTable.h │ │ ├── DxeServices.h │ │ ├── EventGroup.h │ │ ├── EventLegacyBios.h │ │ ├── FileInfo.h │ │ ├── FileSystemInfo.h │ │ ├── FileSystemVolumeLabelInfo.h │ │ ├── FirmwareContentsSigned.h │ │ ├── FirmwareFileSystem2.h │ │ ├── FirmwareFileSystem3.h │ │ ├── FmpCapsule.h │ │ ├── GlobalVariable.h │ │ ├── Gpt.h │ │ ├── GraphicsInfoHob.h │ │ ├── HardwareErrorVariable.h │ │ ├── HiiFormMapMethodGuid.h │ │ ├── HiiKeyBoardLayout.h │ │ ├── HiiPlatformSetupFormset.h │ │ ├── HobList.h │ │ ├── ImageAuthentication.h │ │ ├── MdePkgTokenSpace.h │ │ ├── MemoryAllocationHob.h │ │ ├── MemoryOverwriteControl.h │ │ ├── Mps.h │ │ ├── PcAnsi.h │ │ ├── PropertiesTable.h │ │ ├── SalSystemTable.h │ │ ├── SmBios.h │ │ ├── StatusCodeDataTypeId.h │ │ ├── SystemResourceTable.h │ │ ├── VectorHandoffTable.h │ │ └── WinCertificate.h │ ├── Ia32 │ │ └── ProcessorBind.h │ ├── IndustryStandard │ │ ├── Acpi.h │ │ ├── Acpi10.h │ │ ├── Acpi20.h │ │ ├── Acpi30.h │ │ ├── Acpi40.h │ │ ├── Acpi50.h │ │ ├── Acpi51.h │ │ ├── Acpi60.h │ │ ├── AcpiAml.h │ │ ├── AlertStandardFormatTable.h │ │ ├── Atapi.h │ │ ├── Bluetooth.h │ │ ├── Bmp.h │ │ ├── DebugPort2Table.h │ │ ├── DebugPortTable.h │ │ ├── ElTorito.h │ │ ├── HighPrecisionEventTimerTable.h │ │ ├── Hsti.h │ │ ├── IScsiBootFirmwareTable.h │ │ ├── LegacyBiosMpTable.h │ │ ├── Mbr.h │ │ ├── MemoryMappedConfigurationSpaceAccessTable.h │ │ ├── MemoryOverwriteRequestControlLock.h │ │ ├── Pal.h │ │ ├── Pci.h │ │ ├── Pci22.h │ │ ├── Pci23.h │ │ ├── Pci30.h │ │ ├── PciCodeId.h │ │ ├── PciExpress21.h │ │ ├── PciExpress30.h │ │ ├── PeImage.h │ │ ├── Sal.h │ │ ├── Scsi.h │ │ ├── SdramSpd.h │ │ ├── SerialPortConsoleRedirectionTable.h │ │ ├── SmBios.h │ │ ├── SmBus.h │ │ ├── TcgPhysicalPresence.h │ │ ├── TcpaAcpi.h │ │ ├── Tpm12.h │ │ ├── Tpm20.h │ │ ├── Tpm2Acpi.h │ │ ├── UefiTcgPlatform.h │ │ ├── Usb.h │ │ ├── WatchdogActionTable.h │ │ ├── WatchdogResourceTable.h │ │ └── WindowsUxCapsule.h │ ├── Ipf │ │ ├── IpfMacro.i │ │ └── ProcessorBind.h │ ├── Library │ │ ├── BaseLib.h │ │ ├── BaseMemoryLib.h │ │ ├── CacheMaintenanceLib.h │ │ ├── CpuLib.h │ │ ├── DebugLib.h │ │ ├── DebugPrintErrorLevelLib.h │ │ ├── DevicePathLib.h │ │ ├── DxeCoreEntryPoint.h │ │ ├── DxeServicesLib.h │ │ ├── DxeServicesTableLib.h │ │ ├── ExtendedSalLib.h │ │ ├── ExtractGuidedSectionLib.h │ │ ├── FileHandleLib.h │ │ ├── HobLib.h │ │ ├── HstiLib.h │ │ ├── IoLib.h │ │ ├── MemoryAllocationLib.h │ │ ├── OrderedCollectionLib.h │ │ ├── PalLib.h │ │ ├── PcdLib.h │ │ ├── PciCf8Lib.h │ │ ├── PciExpressLib.h │ │ ├── PciLib.h │ │ ├── PciSegmentLib.h │ │ ├── PeCoffExtraActionLib.h │ │ ├── PeCoffGetEntryPointLib.h │ │ ├── PeCoffLib.h │ │ ├── PeiCoreEntryPoint.h │ │ ├── PeiServicesLib.h │ │ ├── PeiServicesTablePointerLib.h │ │ ├── PeimEntryPoint.h │ │ ├── PerformanceLib.h │ │ ├── PostCodeLib.h │ │ ├── PrintLib.h │ │ ├── ReportStatusCodeLib.h │ │ ├── ResourcePublicationLib.h │ │ ├── RngLib.h │ │ ├── S3BootScriptLib.h │ │ ├── S3IoLib.h │ │ ├── S3PciLib.h │ │ ├── S3SmbusLib.h │ │ ├── S3StallLib.h │ │ ├── SalLib.h │ │ ├── SerialPortLib.h │ │ ├── SmbusLib.h │ │ ├── SmmLib.h │ │ ├── SmmMemLib.h │ │ ├── SmmPeriodicSmiLib.h │ │ ├── SmmServicesTableLib.h │ │ ├── SynchronizationLib.h │ │ ├── TimerLib.h │ │ ├── UefiApplicationEntryPoint.h │ │ ├── UefiBootServicesTableLib.h │ │ ├── UefiDecompressLib.h │ │ ├── UefiDriverEntryPoint.h │ │ ├── UefiLib.h │ │ ├── UefiRuntimeLib.h │ │ ├── UefiRuntimeServicesTableLib.h │ │ ├── UefiScsiLib.h │ │ └── UefiUsbLib.h │ ├── PPC64 │ │ └── ProcessorBind.h │ ├── Pi │ │ ├── PiBootMode.h │ │ ├── PiDependency.h │ │ ├── PiDxeCis.h │ │ ├── PiFirmwareFile.h │ │ ├── PiFirmwareVolume.h │ │ ├── PiHob.h │ │ ├── PiI2c.h │ │ ├── PiMultiPhase.h │ │ ├── PiPeiCis.h │ │ ├── PiS3BootScript.h │ │ ├── PiSmmCis.h │ │ ├── PiSmmCommunicationAcpiTable.h │ │ └── PiStatusCode.h │ ├── PiDxe.h │ ├── PiPei.h │ ├── PiSmm.h │ ├── Ppi │ │ ├── BlockIo.h │ │ ├── BlockIo2.h │ │ ├── BootInRecoveryMode.h │ │ ├── Capsule.h │ │ ├── CpuIo.h │ │ ├── Decompress.h │ │ ├── DeviceRecoveryModule.h │ │ ├── DxeIpl.h │ │ ├── EndOfPeiPhase.h │ │ ├── FirmwareVolume.h │ │ ├── FirmwareVolumeInfo.h │ │ ├── FirmwareVolumeInfo2.h │ │ ├── Graphics.h │ │ ├── GuidedSectionExtraction.h │ │ ├── I2cMaster.h │ │ ├── IsaHc.h │ │ ├── LoadFile.h │ │ ├── LoadImage.h │ │ ├── MasterBootMode.h │ │ ├── MemoryDiscovered.h │ │ ├── MpServices.h │ │ ├── Pcd.h │ │ ├── PcdInfo.h │ │ ├── PciCfg2.h │ │ ├── PiPcd.h │ │ ├── PiPcdInfo.h │ │ ├── ReadOnlyVariable2.h │ │ ├── RecoveryModule.h │ │ ├── ReportStatusCodeHandler.h │ │ ├── Reset.h │ │ ├── Reset2.h │ │ ├── S3Resume2.h │ │ ├── SecPlatformInformation.h │ │ ├── SecPlatformInformation2.h │ │ ├── Security2.h │ │ ├── Smbus2.h │ │ ├── Stall.h │ │ ├── StatusCode.h │ │ ├── SuperIo.h │ │ ├── TemporaryRamDone.h │ │ ├── TemporaryRamSupport.h │ │ └── VectorHandoffInfo.h │ ├── Protocol │ │ ├── AbsolutePointer.h │ │ ├── AcpiSystemDescriptionTable.h │ │ ├── AcpiTable.h │ │ ├── AdapterInformation.h │ │ ├── Arp.h │ │ ├── AtaPassThru.h │ │ ├── AuthenticationInfo.h │ │ ├── Bds.h │ │ ├── Bis.h │ │ ├── BlockIo.h │ │ ├── BlockIo2.h │ │ ├── BlockIoCrypto.h │ │ ├── BluetoothConfig.h │ │ ├── BluetoothHc.h │ │ ├── BluetoothIo.h │ │ ├── BootManagerPolicy.h │ │ ├── BusSpecificDriverOverride.h │ │ ├── Capsule.h │ │ ├── ComponentName.h │ │ ├── ComponentName2.h │ │ ├── Cpu.h │ │ ├── CpuIo2.h │ │ ├── DebugPort.h │ │ ├── DebugSupport.h │ │ ├── Decompress.h │ │ ├── DeferredImageLoad.h │ │ ├── DeviceIo.h │ │ ├── DevicePath.h │ │ ├── DevicePathFromText.h │ │ ├── DevicePathToText.h │ │ ├── DevicePathUtilities.h │ │ ├── Dhcp4.h │ │ ├── Dhcp6.h │ │ ├── DiskInfo.h │ │ ├── DiskIo.h │ │ ├── DiskIo2.h │ │ ├── Dns4.h │ │ ├── Dns6.h │ │ ├── DriverBinding.h │ │ ├── DriverConfiguration.h │ │ ├── DriverConfiguration2.h │ │ ├── DriverDiagnostics.h │ │ ├── DriverDiagnostics2.h │ │ ├── DriverFamilyOverride.h │ │ ├── DriverHealth.h │ │ ├── DriverSupportedEfiVersion.h │ │ ├── DxeSmmReadyToLock.h │ │ ├── Eap.h │ │ ├── EapConfiguration.h │ │ ├── EapManagement.h │ │ ├── EapManagement2.h │ │ ├── Ebc.h │ │ ├── EdidActive.h │ │ ├── EdidDiscovered.h │ │ ├── EdidOverride.h │ │ ├── ExtendedSalBootService.h │ │ ├── ExtendedSalServiceClasses.h │ │ ├── FirmwareManagement.h │ │ ├── FirmwareVolume2.h │ │ ├── FirmwareVolumeBlock.h │ │ ├── FormBrowser2.h │ │ ├── Ftp4.h │ │ ├── GraphicsOutput.h │ │ ├── GuidedSectionExtraction.h │ │ ├── Hash.h │ │ ├── Hash2.h │ │ ├── HiiConfigAccess.h │ │ ├── HiiConfigKeyword.h │ │ ├── HiiConfigRouting.h │ │ ├── HiiDatabase.h │ │ ├── HiiFont.h │ │ ├── HiiImage.h │ │ ├── HiiPackageList.h │ │ ├── HiiString.h │ │ ├── Http.h │ │ ├── HttpUtilities.h │ │ ├── I2cBusConfigurationManagement.h │ │ ├── I2cEnumerate.h │ │ ├── I2cHost.h │ │ ├── I2cIo.h │ │ ├── I2cMaster.h │ │ ├── IScsiInitiatorName.h │ │ ├── IdeControllerInit.h │ │ ├── IncompatiblePciDeviceSupport.h │ │ ├── Ip4.h │ │ ├── Ip4Config.h │ │ ├── Ip4Config2.h │ │ ├── Ip6.h │ │ ├── Ip6Config.h │ │ ├── IpSec.h │ │ ├── IpSecConfig.h │ │ ├── IsaHc.h │ │ ├── Kms.h │ │ ├── LegacyRegion2.h │ │ ├── LoadFile.h │ │ ├── LoadFile2.h │ │ ├── LoadedImage.h │ │ ├── ManagedNetwork.h │ │ ├── McaInitPmi.h │ │ ├── Metronome.h │ │ ├── MonotonicCounter.h │ │ ├── MpService.h │ │ ├── Mtftp4.h │ │ ├── Mtftp6.h │ │ ├── NetworkInterfaceIdentifier.h │ │ ├── NvmExpressPassthru.h │ │ ├── Pcd.h │ │ ├── PcdInfo.h │ │ ├── PciEnumerationComplete.h │ │ ├── PciHostBridgeResourceAllocation.h │ │ ├── PciHotPlugInit.h │ │ ├── PciHotPlugRequest.h │ │ ├── PciIo.h │ │ ├── PciOverride.h │ │ ├── PciPlatform.h │ │ ├── PciRootBridgeIo.h │ │ ├── PiPcd.h │ │ ├── PiPcdInfo.h │ │ ├── Pkcs7Verify.h │ │ ├── PlatformDriverOverride.h │ │ ├── PlatformToDriverConfiguration.h │ │ ├── PxeBaseCode.h │ │ ├── PxeBaseCodeCallBack.h │ │ ├── RealTimeClock.h │ │ ├── RegularExpressionProtocol.h │ │ ├── ReportStatusCodeHandler.h │ │ ├── Reset.h │ │ ├── Rest.h │ │ ├── Rng.h │ │ ├── Runtime.h │ │ ├── S3SaveState.h │ │ ├── S3SmmSaveState.h │ │ ├── ScsiIo.h │ │ ├── ScsiPassThru.h │ │ ├── ScsiPassThruExt.h │ │ ├── Security.h │ │ ├── Security2.h │ │ ├── SecurityPolicy.h │ │ ├── SerialIo.h │ │ ├── ServiceBinding.h │ │ ├── SimpleFileSystem.h │ │ ├── SimpleNetwork.h │ │ ├── SimplePointer.h │ │ ├── SimpleTextIn.h │ │ ├── SimpleTextInEx.h │ │ ├── SimpleTextOut.h │ │ ├── SmartCardEdge.h │ │ ├── SmartCardReader.h │ │ ├── Smbios.h │ │ ├── SmbusHc.h │ │ ├── SmmAccess2.h │ │ ├── SmmBase2.h │ │ ├── SmmCommunication.h │ │ ├── SmmConfiguration.h │ │ ├── SmmControl2.h │ │ ├── SmmCpu.h │ │ ├── SmmCpuIo2.h │ │ ├── SmmEndOfDxe.h │ │ ├── SmmGpiDispatch2.h │ │ ├── SmmIoTrapDispatch2.h │ │ ├── SmmPciRootBridgeIo.h │ │ ├── SmmPeriodicTimerDispatch2.h │ │ ├── SmmPowerButtonDispatch2.h │ │ ├── SmmReadyToLock.h │ │ ├── SmmReportStatusCodeHandler.h │ │ ├── SmmStandbyButtonDispatch2.h │ │ ├── SmmStatusCode.h │ │ ├── SmmSwDispatch2.h │ │ ├── SmmSxDispatch2.h │ │ ├── SmmUsbDispatch2.h │ │ ├── StatusCode.h │ │ ├── StorageSecurityCommand.h │ │ ├── SuperIo.h │ │ ├── SuperIoControl.h │ │ ├── TapeIo.h │ │ ├── Tcg2Protocol.h │ │ ├── TcgService.h │ │ ├── Tcp4.h │ │ ├── Tcp6.h │ │ ├── Timer.h │ │ ├── Timestamp.h │ │ ├── TrEEProtocol.h │ │ ├── Udp4.h │ │ ├── Udp6.h │ │ ├── UgaDraw.h │ │ ├── UgaIo.h │ │ ├── UnicodeCollation.h │ │ ├── Usb2HostController.h │ │ ├── UsbFunctionIo.h │ │ ├── UsbHostController.h │ │ ├── UsbIo.h │ │ ├── UserCredential.h │ │ ├── UserCredential2.h │ │ ├── UserManager.h │ │ ├── Variable.h │ │ ├── VariableWrite.h │ │ ├── VlanConfig.h │ │ ├── WatchdogTimer.h │ │ └── WiFi.h │ ├── Uefi.h │ ├── Uefi │ │ ├── UefiAcpiDataTable.h │ │ ├── UefiBaseType.h │ │ ├── UefiGpt.h │ │ ├── UefiInternalFormRepresentation.h │ │ ├── UefiMultiPhase.h │ │ ├── UefiPxe.h │ │ └── UefiSpec.h │ └── X64 │ │ └── ProcessorBind.h ├── Library │ ├── BaseCacheMaintenanceLib │ │ ├── ArmCache.c │ │ ├── BaseCacheMaintenanceLib.inf │ │ ├── BaseCacheMaintenanceLib.uni │ │ ├── EbcCache.c │ │ ├── IpfCache.c │ │ └── X86Cache.c │ ├── BaseCpuLib │ │ ├── AArch64 │ │ │ ├── CpuFlushTlb.S │ │ │ └── CpuSleep.S │ │ ├── Arm │ │ │ ├── CpuFlushTlb.S │ │ │ ├── CpuFlushTlb.asm │ │ │ ├── CpuSleep.S │ │ │ └── CpuSleep.asm │ │ ├── BaseCpuLib.inf │ │ ├── BaseCpuLib.uni │ │ ├── Ebc │ │ │ └── CpuSleepFlushTlb.c │ │ ├── Ia32 │ │ │ ├── CpuFlushTlb.asm │ │ │ ├── CpuFlushTlb.c │ │ │ ├── CpuFlushTlbGcc.c │ │ │ ├── CpuSleep.asm │ │ │ ├── CpuSleep.c │ │ │ └── CpuSleepGcc.c │ │ ├── Ipf │ │ │ ├── CpuFlushTlb.s │ │ │ └── CpuSleep.c │ │ └── X64 │ │ │ ├── CpuFlushTlb.S │ │ │ ├── CpuFlushTlb.asm │ │ │ ├── CpuSleep.S │ │ │ └── CpuSleep.asm │ ├── BaseDebugLibNull │ │ ├── BaseDebugLibNull.inf │ │ ├── BaseDebugLibNull.uni │ │ └── DebugLib.c │ ├── BaseDebugLibSerialPort │ │ ├── BaseDebugLibSerialPort.inf │ │ ├── BaseDebugLibSerialPort.uni │ │ └── DebugLib.c │ ├── BaseDebugPrintErrorLevelLib │ │ ├── BaseDebugPrintErrorLevelLib.c │ │ ├── BaseDebugPrintErrorLevelLib.inf │ │ └── BaseDebugPrintErrorLevelLib.uni │ ├── BaseExtractGuidedSectionLib │ │ ├── BaseExtractGuidedSectionLib.c │ │ ├── BaseExtractGuidedSectionLib.inf │ │ └── BaseExtractGuidedSectionLib.uni │ ├── BaseIoLibIntrinsic │ │ ├── BaseIoLibIntrinsic.inf │ │ ├── BaseIoLibIntrinsic.uni │ │ ├── BaseIoLibIntrinsicInternal.h │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ ├── IoLibArm.c │ │ ├── IoLibGcc.c │ │ ├── IoLibIcc.c │ │ ├── IoLibIpf.c │ │ ├── IoLibMmioBuffer.c │ │ ├── IoLibMsc.c │ │ └── IoLibPPC64.c │ ├── BaseLib │ │ ├── AArch64 │ │ │ ├── CpuBreakpoint.S │ │ │ ├── DisableInterrupts.S │ │ │ ├── EnableInterrupts.S │ │ │ ├── GetInterruptsState.S │ │ │ ├── MemoryFence.S │ │ │ ├── SetJumpLongJump.S │ │ │ └── SwitchStack.S │ │ ├── ARShiftU64.c │ │ ├── Arm │ │ │ ├── CpuBreakpoint.S │ │ │ ├── CpuBreakpoint.asm │ │ │ ├── CpuPause.asm │ │ │ ├── DisableInterrupts.S │ │ │ ├── DisableInterrupts.asm │ │ │ ├── EnableInterrupts.S │ │ │ ├── EnableInterrupts.asm │ │ │ ├── GetInterruptsState.S │ │ │ ├── GetInterruptsState.asm │ │ │ ├── InternalSwitchStack.c │ │ │ ├── Math64.S │ │ │ ├── MemoryFence.S │ │ │ ├── MemoryFence.asm │ │ │ ├── SetJumpLongJump.S │ │ │ ├── SetJumpLongJump.asm │ │ │ ├── SwitchStack.S │ │ │ ├── SwitchStack.asm │ │ │ └── Unaligned.c │ │ ├── BaseLib.inf │ │ ├── BaseLib.uni │ │ ├── BaseLibInternals.h │ │ ├── BitField.c │ │ ├── CheckSum.c │ │ ├── ChkStkGcc.c │ │ ├── Cpu.c │ │ ├── CpuDeadLoop.c │ │ ├── DivS64x64Remainder.c │ │ ├── DivU64x32.c │ │ ├── DivU64x32Remainder.c │ │ ├── DivU64x64Remainder.c │ │ ├── Ebc │ │ │ ├── CpuBreakpoint.c │ │ │ ├── SetJumpLongJump.c │ │ │ └── SwitchStack.c │ │ ├── FilePaths.c │ │ ├── GetPowerOfTwo32.c │ │ ├── GetPowerOfTwo64.c │ │ ├── HighBitSet32.c │ │ ├── HighBitSet64.c │ │ ├── Ia32 │ │ │ ├── ARShiftU64.S │ │ │ ├── ARShiftU64.asm │ │ │ ├── ARShiftU64.c │ │ │ ├── CpuBreakpoint.asm │ │ │ ├── CpuBreakpoint.c │ │ │ ├── CpuId.S │ │ │ ├── CpuId.asm │ │ │ ├── CpuId.c │ │ │ ├── CpuIdEx.S │ │ │ ├── CpuIdEx.asm │ │ │ ├── CpuIdEx.c │ │ │ ├── CpuPause.asm │ │ │ ├── CpuPause.c │ │ │ ├── DisableCache.S │ │ │ ├── DisableCache.asm │ │ │ ├── DisableCache.c │ │ │ ├── DisableInterrupts.asm │ │ │ ├── DisableInterrupts.c │ │ │ ├── DisablePaging32.S │ │ │ ├── DisablePaging32.asm │ │ │ ├── DisablePaging32.c │ │ │ ├── DivS64x64Remainder.c │ │ │ ├── DivU64x32.S │ │ │ ├── DivU64x32.asm │ │ │ ├── DivU64x32.c │ │ │ ├── DivU64x32Remainder.S │ │ │ ├── DivU64x32Remainder.asm │ │ │ ├── DivU64x32Remainder.c │ │ │ ├── DivU64x64Remainder.S │ │ │ ├── DivU64x64Remainder.asm │ │ │ ├── EnableCache.S │ │ │ ├── EnableCache.asm │ │ │ ├── EnableCache.c │ │ │ ├── EnableDisableInterrupts.S │ │ │ ├── EnableDisableInterrupts.asm │ │ │ ├── EnableDisableInterrupts.c │ │ │ ├── EnableInterrupts.S │ │ │ ├── EnableInterrupts.asm │ │ │ ├── EnableInterrupts.c │ │ │ ├── EnablePaging32.S │ │ │ ├── EnablePaging32.asm │ │ │ ├── EnablePaging32.c │ │ │ ├── EnablePaging64.S │ │ │ ├── EnablePaging64.asm │ │ │ ├── FlushCacheLine.asm │ │ │ ├── FlushCacheLine.c │ │ │ ├── FxRestore.asm │ │ │ ├── FxRestore.c │ │ │ ├── FxSave.asm │ │ │ ├── FxSave.c │ │ │ ├── GccInline.c │ │ │ ├── InternalSwitchStack.S │ │ │ ├── InternalSwitchStack.c │ │ │ ├── Invd.asm │ │ │ ├── Invd.c │ │ │ ├── LRotU64.S │ │ │ ├── LRotU64.asm │ │ │ ├── LRotU64.c │ │ │ ├── LShiftU64.S │ │ │ ├── LShiftU64.asm │ │ │ ├── LShiftU64.c │ │ │ ├── LongJump.S │ │ │ ├── LongJump.asm │ │ │ ├── LongJump.c │ │ │ ├── ModU64x32.S │ │ │ ├── ModU64x32.asm │ │ │ ├── ModU64x32.c │ │ │ ├── Monitor.S │ │ │ ├── Monitor.asm │ │ │ ├── Monitor.c │ │ │ ├── MultU64x32.S │ │ │ ├── MultU64x32.asm │ │ │ ├── MultU64x32.c │ │ │ ├── MultU64x64.S │ │ │ ├── MultU64x64.asm │ │ │ ├── MultU64x64.c │ │ │ ├── Mwait.S │ │ │ ├── Mwait.asm │ │ │ ├── Mwait.c │ │ │ ├── Non-existing.c │ │ │ ├── RRotU64.S │ │ │ ├── RRotU64.asm │ │ │ ├── RRotU64.c │ │ │ ├── RShiftU64.S │ │ │ ├── RShiftU64.asm │ │ │ ├── RShiftU64.c │ │ │ ├── RdRand.S │ │ │ ├── RdRand.asm │ │ │ ├── ReadCr0.asm │ │ │ ├── ReadCr0.c │ │ │ ├── ReadCr2.asm │ │ │ ├── ReadCr2.c │ │ │ ├── ReadCr3.asm │ │ │ ├── ReadCr3.c │ │ │ ├── ReadCr4.asm │ │ │ ├── ReadCr4.c │ │ │ ├── ReadCs.asm │ │ │ ├── ReadCs.c │ │ │ ├── ReadDr0.asm │ │ │ ├── ReadDr0.c │ │ │ ├── ReadDr1.asm │ │ │ ├── ReadDr1.c │ │ │ ├── ReadDr2.asm │ │ │ ├── ReadDr2.c │ │ │ ├── ReadDr3.asm │ │ │ ├── ReadDr3.c │ │ │ ├── ReadDr4.asm │ │ │ ├── ReadDr4.c │ │ │ ├── ReadDr5.asm │ │ │ ├── ReadDr5.c │ │ │ ├── ReadDr6.asm │ │ │ ├── ReadDr6.c │ │ │ ├── ReadDr7.asm │ │ │ ├── ReadDr7.c │ │ │ ├── ReadDs.asm │ │ │ ├── ReadDs.c │ │ │ ├── ReadEflags.asm │ │ │ ├── ReadEflags.c │ │ │ ├── ReadEs.asm │ │ │ ├── ReadEs.c │ │ │ ├── ReadFs.asm │ │ │ ├── ReadFs.c │ │ │ ├── ReadGdtr.asm │ │ │ ├── ReadGdtr.c │ │ │ ├── ReadGs.asm │ │ │ ├── ReadGs.c │ │ │ ├── ReadIdtr.asm │ │ │ ├── ReadIdtr.c │ │ │ ├── ReadLdtr.asm │ │ │ ├── ReadLdtr.c │ │ │ ├── ReadMm0.asm │ │ │ ├── ReadMm0.c │ │ │ ├── ReadMm1.asm │ │ │ ├── ReadMm1.c │ │ │ ├── ReadMm2.asm │ │ │ ├── ReadMm2.c │ │ │ ├── ReadMm3.asm │ │ │ ├── ReadMm3.c │ │ │ ├── ReadMm4.asm │ │ │ ├── ReadMm4.c │ │ │ ├── ReadMm5.asm │ │ │ ├── ReadMm5.c │ │ │ ├── ReadMm6.asm │ │ │ ├── ReadMm6.c │ │ │ ├── ReadMm7.asm │ │ │ ├── ReadMm7.c │ │ │ ├── ReadMsr64.S │ │ │ ├── ReadMsr64.asm │ │ │ ├── ReadMsr64.c │ │ │ ├── ReadPmc.asm │ │ │ ├── ReadPmc.c │ │ │ ├── ReadSs.S │ │ │ ├── ReadSs.asm │ │ │ ├── ReadSs.c │ │ │ ├── ReadTr.S │ │ │ ├── ReadTr.asm │ │ │ ├── ReadTr.c │ │ │ ├── ReadTsc.asm │ │ │ ├── ReadTsc.c │ │ │ ├── SetJump.S │ │ │ ├── SetJump.asm │ │ │ ├── SetJump.c │ │ │ ├── SwapBytes64.S │ │ │ ├── SwapBytes64.asm │ │ │ ├── SwapBytes64.c │ │ │ ├── Thunk16.S │ │ │ ├── Thunk16.asm │ │ │ ├── Thunk16.nasm │ │ │ ├── Wbinvd.asm │ │ │ ├── Wbinvd.c │ │ │ ├── WriteCr0.asm │ │ │ ├── WriteCr0.c │ │ │ ├── WriteCr2.asm │ │ │ ├── WriteCr2.c │ │ │ ├── WriteCr3.asm │ │ │ ├── WriteCr3.c │ │ │ ├── WriteCr4.asm │ │ │ ├── WriteCr4.c │ │ │ ├── WriteDr0.asm │ │ │ ├── WriteDr0.c │ │ │ ├── WriteDr1.asm │ │ │ ├── WriteDr1.c │ │ │ ├── WriteDr2.asm │ │ │ ├── WriteDr2.c │ │ │ ├── WriteDr3.asm │ │ │ ├── WriteDr3.c │ │ │ ├── WriteDr4.asm │ │ │ ├── WriteDr4.c │ │ │ ├── WriteDr5.asm │ │ │ ├── WriteDr5.c │ │ │ ├── WriteDr6.asm │ │ │ ├── WriteDr6.c │ │ │ ├── WriteDr7.asm │ │ │ ├── WriteDr7.c │ │ │ ├── WriteGdtr.asm │ │ │ ├── WriteGdtr.c │ │ │ ├── WriteIdtr.asm │ │ │ ├── WriteIdtr.c │ │ │ ├── WriteLdtr.asm │ │ │ ├── WriteLdtr.c │ │ │ ├── WriteMm0.asm │ │ │ ├── WriteMm0.c │ │ │ ├── WriteMm1.asm │ │ │ ├── WriteMm1.c │ │ │ ├── WriteMm2.asm │ │ │ ├── WriteMm2.c │ │ │ ├── WriteMm3.asm │ │ │ ├── WriteMm3.c │ │ │ ├── WriteMm4.asm │ │ │ ├── WriteMm4.c │ │ │ ├── WriteMm5.asm │ │ │ ├── WriteMm5.c │ │ │ ├── WriteMm6.asm │ │ │ ├── WriteMm6.c │ │ │ ├── WriteMm7.asm │ │ │ ├── WriteMm7.c │ │ │ ├── WriteMsr64.S │ │ │ ├── WriteMsr64.asm │ │ │ └── WriteMsr64.c │ │ ├── Ipf │ │ │ ├── AccessDbr.s │ │ │ ├── AccessEicr.s │ │ │ ├── AccessGcr.s │ │ │ ├── AccessGp.s │ │ │ ├── AccessKr.s │ │ │ ├── AccessKr7.s │ │ │ ├── AccessMsr.s │ │ │ ├── AccessMsrDb.s │ │ │ ├── AccessPmr.s │ │ │ ├── AccessPsr.s │ │ │ ├── Asm.h │ │ │ ├── AsmCpuMisc.s │ │ │ ├── AsmPalCall.s │ │ │ ├── CpuBreakpoint.c │ │ │ ├── CpuBreakpointMsc.c │ │ │ ├── CpuPause.s │ │ │ ├── ExecFc.s │ │ │ ├── FlushCacheRange.c │ │ │ ├── GetInterruptState.s │ │ │ ├── Ia64gen.h │ │ │ ├── InternalFlushCacheRange.s │ │ │ ├── InternalSwitchStack.c │ │ │ ├── LongJmp.s │ │ │ ├── ReadAr.s │ │ │ ├── ReadCpuid.s │ │ │ ├── ReadCr.s │ │ │ ├── SetJmp.s │ │ │ ├── SwitchStack.s │ │ │ └── Unaligned.c │ │ ├── LRotU32.c │ │ ├── LRotU64.c │ │ ├── LShiftU64.c │ │ ├── LinkedList.c │ │ ├── LongJump.c │ │ ├── LowBitSet32.c │ │ ├── LowBitSet64.c │ │ ├── Math64.c │ │ ├── ModU64x32.c │ │ ├── MultS64x64.c │ │ ├── MultU64x32.c │ │ ├── MultU64x64.c │ │ ├── PPC64 │ │ │ ├── CpuBreakpoint.S │ │ │ ├── CpuPause.S │ │ │ ├── SetJump.S │ │ │ └── SwitchStack.S │ │ ├── RRotU32.c │ │ ├── RRotU64.c │ │ ├── RShiftU64.c │ │ ├── SafeString.c │ │ ├── SetJump.c │ │ ├── String.c │ │ ├── SwapBytes16.c │ │ ├── SwapBytes32.c │ │ ├── SwapBytes64.c │ │ ├── SwitchStack.c │ │ ├── Unaligned.c │ │ ├── X64 │ │ │ ├── CpuBreakpoint.S │ │ │ ├── CpuBreakpoint.asm │ │ │ ├── CpuBreakpoint.c │ │ │ ├── CpuId.S │ │ │ ├── CpuId.asm │ │ │ ├── CpuIdEx.S │ │ │ ├── CpuIdEx.asm │ │ │ ├── CpuPause.asm │ │ │ ├── DisableCache.S │ │ │ ├── DisableCache.asm │ │ │ ├── DisableInterrupts.asm │ │ │ ├── DisablePaging64.S │ │ │ ├── DisablePaging64.asm │ │ │ ├── EnableCache.S │ │ │ ├── EnableCache.asm │ │ │ ├── EnableDisableInterrupts.S │ │ │ ├── EnableDisableInterrupts.asm │ │ │ ├── EnableInterrupts.asm │ │ │ ├── FlushCacheLine.asm │ │ │ ├── FxRestore.asm │ │ │ ├── FxSave.asm │ │ │ ├── GccInline.c │ │ │ ├── Invd.asm │ │ │ ├── LongJump.S │ │ │ ├── LongJump.asm │ │ │ ├── Monitor.asm │ │ │ ├── Mwait.asm │ │ │ ├── Non-existing.c │ │ │ ├── RdRand.S │ │ │ ├── RdRand.asm │ │ │ ├── ReadCr0.asm │ │ │ ├── ReadCr2.asm │ │ │ ├── ReadCr3.asm │ │ │ ├── ReadCr4.asm │ │ │ ├── ReadCs.asm │ │ │ ├── ReadDr0.asm │ │ │ ├── ReadDr1.asm │ │ │ ├── ReadDr2.asm │ │ │ ├── ReadDr3.asm │ │ │ ├── ReadDr4.asm │ │ │ ├── ReadDr5.asm │ │ │ ├── ReadDr6.asm │ │ │ ├── ReadDr7.asm │ │ │ ├── ReadDs.asm │ │ │ ├── ReadEflags.asm │ │ │ ├── ReadEs.asm │ │ │ ├── ReadFs.asm │ │ │ ├── ReadGdtr.asm │ │ │ ├── ReadGs.asm │ │ │ ├── ReadIdtr.asm │ │ │ ├── ReadLdtr.asm │ │ │ ├── ReadMm0.asm │ │ │ ├── ReadMm1.asm │ │ │ ├── ReadMm2.asm │ │ │ ├── ReadMm3.asm │ │ │ ├── ReadMm4.asm │ │ │ ├── ReadMm5.asm │ │ │ ├── ReadMm6.asm │ │ │ ├── ReadMm7.asm │ │ │ ├── ReadMsr64.asm │ │ │ ├── ReadMsr64.c │ │ │ ├── ReadPmc.asm │ │ │ ├── ReadSs.asm │ │ │ ├── ReadTr.asm │ │ │ ├── ReadTsc.asm │ │ │ ├── SetJump.S │ │ │ ├── SetJump.asm │ │ │ ├── SwitchStack.S │ │ │ ├── SwitchStack.asm │ │ │ ├── Thunk16.S │ │ │ ├── Thunk16.asm │ │ │ ├── Thunk16.nasm │ │ │ ├── Wbinvd.S │ │ │ ├── Wbinvd.asm │ │ │ ├── WriteCr0.asm │ │ │ ├── WriteCr2.asm │ │ │ ├── WriteCr3.asm │ │ │ ├── WriteCr4.asm │ │ │ ├── WriteDr0.asm │ │ │ ├── WriteDr1.asm │ │ │ ├── WriteDr2.asm │ │ │ ├── WriteDr3.asm │ │ │ ├── WriteDr4.asm │ │ │ ├── WriteDr5.asm │ │ │ ├── WriteDr6.asm │ │ │ ├── WriteDr7.asm │ │ │ ├── WriteGdtr.asm │ │ │ ├── WriteIdtr.asm │ │ │ ├── WriteLdtr.asm │ │ │ ├── WriteMm0.asm │ │ │ ├── WriteMm1.asm │ │ │ ├── WriteMm2.asm │ │ │ ├── WriteMm3.asm │ │ │ ├── WriteMm4.asm │ │ │ ├── WriteMm5.asm │ │ │ ├── WriteMm6.asm │ │ │ ├── WriteMm7.asm │ │ │ ├── WriteMsr64.asm │ │ │ └── WriteMsr64.c │ │ ├── X86DisablePaging32.c │ │ ├── X86DisablePaging64.c │ │ ├── X86EnablePaging32.c │ │ ├── X86EnablePaging64.c │ │ ├── X86FxRestore.c │ │ ├── X86FxSave.c │ │ ├── X86GetInterruptState.c │ │ ├── X86MemoryFence.c │ │ ├── X86Msr.c │ │ ├── X86ReadGdtr.c │ │ ├── X86ReadIdtr.c │ │ ├── X86Thunk.c │ │ ├── X86WriteGdtr.c │ │ └── X86WriteIdtr.c │ ├── BaseMemoryLib │ │ ├── BaseMemoryLib.inf │ │ ├── BaseMemoryLib.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMem.c │ │ ├── CopyMemWrapper.c │ │ ├── MemLibGeneric.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibMmx │ │ ├── BaseMemoryLibMmx.inf │ │ ├── BaseMemoryLibMmx.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.S │ │ │ ├── CompareMem.asm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── ScanMem16.S │ │ │ ├── ScanMem16.asm │ │ │ ├── ScanMem32.S │ │ │ ├── ScanMem32.asm │ │ │ ├── ScanMem64.S │ │ │ ├── ScanMem64.asm │ │ │ ├── ScanMem8.S │ │ │ ├── ScanMem8.asm │ │ │ ├── SetMem.S │ │ │ ├── SetMem.asm │ │ │ ├── SetMem16.S │ │ │ ├── SetMem16.asm │ │ │ ├── SetMem32.S │ │ │ ├── SetMem32.asm │ │ │ ├── SetMem64.S │ │ │ ├── SetMem64.asm │ │ │ ├── ZeroMem.S │ │ │ └── ZeroMem.asm │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.S │ │ │ ├── CompareMem.asm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── ScanMem16.S │ │ │ ├── ScanMem16.asm │ │ │ ├── ScanMem32.S │ │ │ ├── ScanMem32.asm │ │ │ ├── ScanMem64.S │ │ │ ├── ScanMem64.asm │ │ │ ├── ScanMem8.S │ │ │ ├── ScanMem8.asm │ │ │ ├── SetMem.S │ │ │ ├── SetMem.asm │ │ │ ├── SetMem16.S │ │ │ ├── SetMem16.asm │ │ │ ├── SetMem32.S │ │ │ ├── SetMem32.asm │ │ │ ├── SetMem64.S │ │ │ ├── SetMem64.asm │ │ │ ├── ZeroMem.S │ │ │ └── ZeroMem.asm │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibOptDxe │ │ ├── BaseMemoryLibOptDxe.inf │ │ ├── BaseMemoryLibOptDxe.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.S │ │ │ ├── CompareMem.asm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── ScanMem16.S │ │ │ ├── ScanMem16.asm │ │ │ ├── ScanMem32.S │ │ │ ├── ScanMem32.asm │ │ │ ├── ScanMem64.S │ │ │ ├── ScanMem64.asm │ │ │ ├── ScanMem8.S │ │ │ ├── ScanMem8.asm │ │ │ ├── SetMem.S │ │ │ ├── SetMem.asm │ │ │ ├── SetMem16.S │ │ │ ├── SetMem16.asm │ │ │ ├── SetMem32.S │ │ │ ├── SetMem32.asm │ │ │ ├── SetMem64.S │ │ │ ├── SetMem64.asm │ │ │ ├── ZeroMem.S │ │ │ └── ZeroMem.asm │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.S │ │ │ ├── CompareMem.asm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── ScanMem16.S │ │ │ ├── ScanMem16.asm │ │ │ ├── ScanMem32.S │ │ │ ├── ScanMem32.asm │ │ │ ├── ScanMem64.S │ │ │ ├── ScanMem64.asm │ │ │ ├── ScanMem8.S │ │ │ ├── ScanMem8.asm │ │ │ ├── SetMem.S │ │ │ ├── SetMem.asm │ │ │ ├── SetMem16.S │ │ │ ├── SetMem16.asm │ │ │ ├── SetMem32.S │ │ │ ├── SetMem32.asm │ │ │ ├── SetMem64.S │ │ │ ├── SetMem64.asm │ │ │ ├── ZeroMem.S │ │ │ └── ZeroMem.asm │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibOptPei │ │ ├── BaseMemoryLibOptPei.inf │ │ ├── BaseMemoryLibOptPei.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.S │ │ │ ├── CompareMem.asm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── ScanMem16.S │ │ │ ├── ScanMem16.asm │ │ │ ├── ScanMem32.S │ │ │ ├── ScanMem32.asm │ │ │ ├── ScanMem64.S │ │ │ ├── ScanMem64.asm │ │ │ ├── ScanMem8.S │ │ │ ├── ScanMem8.asm │ │ │ ├── SetMem.S │ │ │ ├── SetMem.asm │ │ │ ├── SetMem16.S │ │ │ ├── SetMem16.asm │ │ │ ├── SetMem32.S │ │ │ ├── SetMem32.asm │ │ │ ├── SetMem64.S │ │ │ ├── SetMem64.asm │ │ │ ├── ZeroMem.S │ │ │ └── ZeroMem.asm │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.S │ │ │ ├── CompareMem.asm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── ScanMem16.S │ │ │ ├── ScanMem16.asm │ │ │ ├── ScanMem32.S │ │ │ ├── ScanMem32.asm │ │ │ ├── ScanMem64.S │ │ │ ├── ScanMem64.asm │ │ │ ├── ScanMem8.S │ │ │ ├── ScanMem8.asm │ │ │ ├── SetMem.S │ │ │ ├── SetMem.asm │ │ │ ├── SetMem16.S │ │ │ ├── SetMem16.asm │ │ │ ├── SetMem32.S │ │ │ ├── SetMem32.asm │ │ │ ├── SetMem64.S │ │ │ ├── SetMem64.asm │ │ │ ├── ZeroMem.S │ │ │ └── ZeroMem.asm │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibRepStr │ │ ├── BaseMemoryLibRepStr.inf │ │ ├── BaseMemoryLibRepStr.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.S │ │ │ ├── CompareMem.asm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── ScanMem16.S │ │ │ ├── ScanMem16.asm │ │ │ ├── ScanMem32.S │ │ │ ├── ScanMem32.asm │ │ │ ├── ScanMem64.S │ │ │ ├── ScanMem64.asm │ │ │ ├── ScanMem8.S │ │ │ ├── ScanMem8.asm │ │ │ ├── SetMem.S │ │ │ ├── SetMem.asm │ │ │ ├── SetMem16.S │ │ │ ├── SetMem16.asm │ │ │ ├── SetMem32.S │ │ │ ├── SetMem32.asm │ │ │ ├── SetMem64.S │ │ │ ├── SetMem64.asm │ │ │ ├── ZeroMem.S │ │ │ └── ZeroMem.asm │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.S │ │ │ ├── CompareMem.asm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── ScanMem16.S │ │ │ ├── ScanMem16.asm │ │ │ ├── ScanMem32.S │ │ │ ├── ScanMem32.asm │ │ │ ├── ScanMem64.S │ │ │ ├── ScanMem64.asm │ │ │ ├── ScanMem8.S │ │ │ ├── ScanMem8.asm │ │ │ ├── SetMem.S │ │ │ ├── SetMem.asm │ │ │ ├── SetMem16.S │ │ │ ├── SetMem16.asm │ │ │ ├── SetMem32.S │ │ │ ├── SetMem32.asm │ │ │ ├── SetMem64.S │ │ │ ├── SetMem64.asm │ │ │ ├── ZeroMem.S │ │ │ └── ZeroMem.asm │ │ └── ZeroMemWrapper.c │ ├── BaseMemoryLibSse2 │ │ ├── BaseMemoryLibSse2.inf │ │ ├── BaseMemoryLibSse2.uni │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── Ia32 │ │ │ ├── CompareMem.S │ │ │ ├── CompareMem.asm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── ScanMem16.S │ │ │ ├── ScanMem16.asm │ │ │ ├── ScanMem32.S │ │ │ ├── ScanMem32.asm │ │ │ ├── ScanMem64.S │ │ │ ├── ScanMem64.asm │ │ │ ├── ScanMem8.S │ │ │ ├── ScanMem8.asm │ │ │ ├── SetMem.S │ │ │ ├── SetMem.asm │ │ │ ├── SetMem16.S │ │ │ ├── SetMem16.asm │ │ │ ├── SetMem32.S │ │ │ ├── SetMem32.asm │ │ │ ├── SetMem64.S │ │ │ ├── SetMem64.asm │ │ │ ├── ZeroMem.S │ │ │ └── ZeroMem.asm │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── X64 │ │ │ ├── CompareMem.S │ │ │ ├── CompareMem.asm │ │ │ ├── CopyMem.S │ │ │ ├── CopyMem.asm │ │ │ ├── ScanMem16.S │ │ │ ├── ScanMem16.asm │ │ │ ├── ScanMem32.S │ │ │ ├── ScanMem32.asm │ │ │ ├── ScanMem64.S │ │ │ ├── ScanMem64.asm │ │ │ ├── ScanMem8.S │ │ │ ├── ScanMem8.asm │ │ │ ├── SetMem.S │ │ │ ├── SetMem.asm │ │ │ ├── SetMem16.S │ │ │ ├── SetMem16.asm │ │ │ ├── SetMem32.S │ │ │ ├── SetMem32.asm │ │ │ ├── SetMem64.S │ │ │ ├── SetMem64.asm │ │ │ ├── ZeroMem.S │ │ │ └── ZeroMem.asm │ │ └── ZeroMemWrapper.c │ ├── BaseOrderedCollectionRedBlackTreeLib │ │ ├── BaseOrderedCollectionRedBlackTreeLib.c │ │ ├── BaseOrderedCollectionRedBlackTreeLib.inf │ │ └── BaseOrderedCollectionRedBlackTreeLib.uni │ ├── BasePalLibNull │ │ ├── BasePalLibNull.inf │ │ ├── BasePalLibNull.uni │ │ └── PalCall.c │ ├── BasePcdLibNull │ │ ├── BasePcdLibNull.inf │ │ ├── BasePcdLibNull.uni │ │ └── PcdLib.c │ ├── BasePciCf8Lib │ │ ├── BasePciCf8Lib.inf │ │ ├── BasePciCf8Lib.uni │ │ └── PciCf8Lib.c │ ├── BasePciExpressLib │ │ ├── BasePciExpressLib.inf │ │ ├── BasePciExpressLib.uni │ │ └── PciExpressLib.c │ ├── BasePciLibCf8 │ │ ├── BasePciLibCf8.inf │ │ ├── BasePciLibCf8.uni │ │ └── PciLib.c │ ├── BasePciLibPciExpress │ │ ├── BasePciLibPciExpress.inf │ │ ├── BasePciLibPciExpress.uni │ │ └── PciLib.c │ ├── BasePeCoffExtraActionLibNull │ │ ├── BasePeCoffExtraActionLibNull.inf │ │ ├── PeCoffExtraActionLib.c │ │ └── PeCoffExtraActionLibNull.uni │ ├── BasePeCoffGetEntryPointLib │ │ ├── BasePeCoffGetEntryPointLib.inf │ │ ├── BasePeCoffGetEntryPointLib.uni │ │ └── PeCoffGetEntryPoint.c │ ├── BasePeCoffLib │ │ ├── Arm │ │ │ └── PeCoffLoaderEx.c │ │ ├── BasePeCoff.c │ │ ├── BasePeCoffLib.inf │ │ ├── BasePeCoffLib.uni │ │ ├── BasePeCoffLibInternals.h │ │ ├── Ipf │ │ │ └── PeCoffLoaderEx.c │ │ └── PeCoffLoaderEx.c │ ├── BasePerformanceLibNull │ │ ├── BasePerformanceLibNull.inf │ │ ├── BasePerformanceLibNull.uni │ │ └── PerformanceLib.c │ ├── BasePostCodeLibDebug │ │ ├── BasePostCodeLibDebug.inf │ │ ├── BasePostCodeLibDebug.uni │ │ └── PostCode.c │ ├── BasePostCodeLibPort80 │ │ ├── BasePostCodeLibPort80.inf │ │ ├── BasePostCodeLibPort80.uni │ │ └── PostCode.c │ ├── BasePrintLib │ │ ├── BasePrintLib.inf │ │ ├── BasePrintLib.uni │ │ ├── PrintLib.c │ │ ├── PrintLibInternal.c │ │ └── PrintLibInternal.h │ ├── BaseReportStatusCodeLibNull │ │ ├── BaseReportStatusCodeLib.c │ │ ├── BaseReportStatusCodeLibNull.inf │ │ └── BaseReportStatusCodeLibNull.uni │ ├── BaseRngLib │ │ ├── BaseRng.c │ │ ├── BaseRngLib.inf │ │ └── BaseRngLib.uni │ ├── BaseS3BootScriptLibNull │ │ ├── BaseS3BootScriptLibNull.inf │ │ ├── BaseS3BootScriptLibNull.uni │ │ └── BootScriptLib.c │ ├── BaseS3IoLib │ │ ├── BaseS3IoLib.inf │ │ ├── BaseS3IoLib.uni │ │ └── S3IoLib.c │ ├── BaseS3PciLib │ │ ├── BaseS3PciLib.inf │ │ ├── BaseS3PciLib.uni │ │ └── S3PciLib.c │ ├── BaseS3SmbusLib │ │ ├── BaseS3SmbusLib.inf │ │ ├── BaseS3SmbusLib.uni │ │ └── S3SmbusLib.c │ ├── BaseS3StallLib │ │ ├── BaseS3StallLib.inf │ │ ├── BaseS3StallLib.uni │ │ └── S3StallLib.c │ ├── BaseSerialPortLibNull │ │ ├── BaseSerialPortLibNull.c │ │ ├── BaseSerialPortLibNull.inf │ │ └── BaseSerialPortLibNull.uni │ ├── BaseSmbusLibNull │ │ ├── BaseSmbusLibNull.c │ │ ├── BaseSmbusLibNull.inf │ │ └── BaseSmbusLibNull.uni │ ├── BaseStackCheckLib │ │ ├── BaseStackCheckGcc.c │ │ ├── BaseStackCheckLib.inf │ │ └── BaseStackCheckLib.uni │ ├── BaseSynchronizationLib │ │ ├── AArch64 │ │ │ └── Synchronization.S │ │ ├── Arm │ │ │ ├── Synchronization.S │ │ │ └── Synchronization.asm │ │ ├── BaseSynchronizationLib.inf │ │ ├── BaseSynchronizationLib.uni │ │ ├── BaseSynchronizationLibInternals.h │ │ ├── Ebc │ │ │ └── Synchronization.c │ │ ├── Ia32 │ │ │ ├── GccInline.c │ │ │ ├── InterlockedCompareExchange16.asm │ │ │ ├── InterlockedCompareExchange16.c │ │ │ ├── InterlockedCompareExchange32.asm │ │ │ ├── InterlockedCompareExchange32.c │ │ │ ├── InterlockedCompareExchange64.asm │ │ │ ├── InterlockedCompareExchange64.c │ │ │ ├── InterlockedDecrement.asm │ │ │ ├── InterlockedDecrement.c │ │ │ ├── InterlockedIncrement.asm │ │ │ └── InterlockedIncrement.c │ │ ├── Ipf │ │ │ ├── InterlockedCompareExchange16.s │ │ │ ├── InterlockedCompareExchange32.s │ │ │ ├── InterlockedCompareExchange64.s │ │ │ └── Synchronization.c │ │ ├── Synchronization.c │ │ ├── SynchronizationGcc.c │ │ ├── SynchronizationMsc.c │ │ └── X64 │ │ │ ├── GccInline.c │ │ │ ├── InterlockedCompareExchange16.asm │ │ │ ├── InterlockedCompareExchange16.c │ │ │ ├── InterlockedCompareExchange32.asm │ │ │ ├── InterlockedCompareExchange32.c │ │ │ ├── InterlockedCompareExchange64.asm │ │ │ ├── InterlockedCompareExchange64.c │ │ │ ├── InterlockedDecrement.asm │ │ │ ├── InterlockedDecrement.c │ │ │ ├── InterlockedIncrement.asm │ │ │ └── InterlockedIncrement.c │ ├── BaseTimerLibNullTemplate │ │ ├── BaseTimerLibNullTemplate.inf │ │ ├── BaseTimerLibNullTemplate.uni │ │ └── TimerLibNull.c │ ├── BaseUefiDecompressLib │ │ ├── BaseUefiDecompressLib.c │ │ ├── BaseUefiDecompressLib.inf │ │ ├── BaseUefiDecompressLib.uni │ │ └── BaseUefiDecompressLibInternals.h │ ├── DxeCoreEntryPoint │ │ ├── DxeCoreEntryPoint.c │ │ ├── DxeCoreEntryPoint.inf │ │ └── DxeCoreEntryPoint.uni │ ├── DxeCoreHobLib │ │ ├── DxeCoreHobLib.inf │ │ ├── DxeCoreHobLib.uni │ │ └── HobLib.c │ ├── DxeExtendedSalLib │ │ ├── DxeExtendedSalLib.inf │ │ ├── DxeExtendedSalLib.uni │ │ ├── ExtendedSalLib.c │ │ └── Ipf │ │ │ └── AsmExtendedSalLib.s │ ├── DxeExtractGuidedSectionLib │ │ ├── DxeExtractGuidedSectionLib.c │ │ ├── DxeExtractGuidedSectionLib.inf │ │ └── DxeExtractGuidedSectionLib.uni │ ├── DxeHobLib │ │ ├── DxeHobLib.inf │ │ ├── DxeHobLib.uni │ │ └── HobLib.c │ ├── DxeHstiLib │ │ ├── DxeHstiLib.inf │ │ ├── DxeHstiLib.uni │ │ ├── HstiAip.c │ │ ├── HstiDxe.c │ │ └── HstiDxe.h │ ├── DxeIoLibCpuIo2 │ │ ├── DxeCpuIo2LibInternal.h │ │ ├── DxeIoLibCpuIo2.inf │ │ ├── DxeIoLibCpuIo2.uni │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ └── IoLibMmioBuffer.c │ ├── DxeIoLibEsal │ │ ├── DxeIoLibEsal.inf │ │ ├── DxeIoLibEsal.uni │ │ ├── DxeIoLibEsalInternal.h │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ └── IoLibMmioBuffer.c │ ├── DxePalLibEsal │ │ ├── DxePalLibEsal.c │ │ ├── DxePalLibEsal.inf │ │ └── DxePalLibEsal.uni │ ├── DxePcdLib │ │ ├── DxePcdLib.c │ │ ├── DxePcdLib.inf │ │ └── DxePcdLib.uni │ ├── DxePciLibEsal │ │ ├── DxePciLibEsal.inf │ │ ├── DxePciLibEsal.uni │ │ └── PciLib.c │ ├── DxePciSegmentLibEsal │ │ ├── DxePciSegementLibEsal.uni │ │ ├── DxePciSegmentLibEsal.inf │ │ └── PciLib.c │ ├── DxeRuntimeExtendedSalLib │ │ ├── DxeRuntimeExtendedSalLib.inf │ │ ├── DxeRuntimeExtendedSalLib.uni │ │ ├── ExtendedSalLib.c │ │ └── Ipf │ │ │ └── AsmExtendedSalLib.s │ ├── DxeRuntimePciExpressLib │ │ ├── DxeRuntimePciExpressLib.inf │ │ ├── DxeRuntimePciExpressLib.uni │ │ └── PciExpressLib.c │ ├── DxeSalLibEsal │ │ ├── DxeSalLibEsal.c │ │ ├── DxeSalLibEsal.inf │ │ └── DxeSalLibEsal.uni │ ├── DxeServicesLib │ │ ├── DxeServicesLib.c │ │ ├── DxeServicesLib.inf │ │ └── DxeServicesLib.uni │ ├── DxeServicesTableLib │ │ ├── DxeServicesTableLib.c │ │ ├── DxeServicesTableLib.inf │ │ └── DxeServicesTableLib.uni │ ├── DxeSmbusLib │ │ ├── DxeSmbusLib.c │ │ ├── DxeSmbusLib.inf │ │ ├── DxeSmbusLib.uni │ │ ├── InternalSmbusLib.h │ │ └── SmbusLib.c │ ├── DxeTimerLibEsal │ │ ├── DxeTimerLibEsal.c │ │ ├── DxeTimerLibEsal.inf │ │ └── DxeTimerLibEsal.uni │ ├── PeiCoreEntryPoint │ │ ├── PeiCoreEntryPoint.c │ │ ├── PeiCoreEntryPoint.inf │ │ └── PeiCoreEntryPoint.uni │ ├── PeiDxePostCodeLibReportStatusCode │ │ ├── PeiDxePostCodeLibReportStatusCode.inf │ │ ├── PeiDxePostCodeLibReportStatusCode.uni │ │ └── PostCode.c │ ├── PeiExtractGuidedSectionLib │ │ ├── PeiExtractGuidedSectionLib.c │ │ ├── PeiExtractGuidedSectionLib.inf │ │ └── PeiExtractGuidedSectionLib.uni │ ├── PeiHobLib │ │ ├── HobLib.c │ │ ├── PeiHobLib.inf │ │ └── PeiHobLib.uni │ ├── PeiIoLibCpuIo │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ ├── IoLibMmioBuffer.c │ │ ├── PeiIoLibCpuIo.inf │ │ └── PeiIoLibCpuIo.uni │ ├── PeiMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ ├── PeiMemoryAllocationLib.inf │ │ └── PeiMemoryAllocationLib.uni │ ├── PeiMemoryLib │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── MemLib.c │ │ ├── MemLibGeneric.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── PeiMemoryLib.inf │ │ ├── PeiMemoryLib.uni │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ └── ZeroMemWrapper.c │ ├── PeiPalLib │ │ ├── PeiPalLib.c │ │ ├── PeiPalLib.inf │ │ └── PeiPalLib.uni │ ├── PeiPcdLib │ │ ├── PeiPcdLib.c │ │ ├── PeiPcdLib.inf │ │ └── PeiPcdLib.uni │ ├── PeiPciLibPciCfg2 │ │ ├── PciLib.c │ │ ├── PeiPciLibPciCfg2.inf │ │ └── PeiPciLibPciCfg2.uni │ ├── PeiPciSegmentLibPciCfg2 │ │ ├── PciSegmentLib.c │ │ ├── PeiPciSegmentLibPciCfg2.inf │ │ └── PeiPciSegmentLibPciCfg2.uni │ ├── PeiResourcePublicationLib │ │ ├── PeiResourcePublicationLib.c │ │ ├── PeiResourcePublicationLib.inf │ │ └── PeiResourcePublicationLib.uni │ ├── PeiServicesLib │ │ ├── PeiServicesLib.c │ │ ├── PeiServicesLib.inf │ │ └── PeiServicesLib.uni │ ├── PeiServicesTablePointerLib │ │ ├── PeiServicesTablePointer.c │ │ ├── PeiServicesTablePointerLib.inf │ │ └── PeiServicesTablePointerLib.uni │ ├── PeiServicesTablePointerLibIdt │ │ ├── PeiServicesTablePointer.c │ │ ├── PeiServicesTablePointerLibIdt.inf │ │ └── PeiServicesTablePointerLibIdt.uni │ ├── PeiServicesTablePointerLibKr7 │ │ ├── PeiServicesTablePointer.c │ │ ├── PeiServicesTablePointerLibKr7.inf │ │ └── PeiServicesTablePointerLibKr7.uni │ ├── PeiSmbusLibSmbus2Ppi │ │ ├── InternalSmbusLib.h │ │ ├── PeiSmbusLib.c │ │ ├── PeiSmbusLibSmbus2Ppi.inf │ │ ├── PeiSmbusLibSmbus2Ppi.uni │ │ └── SmbusLib.c │ ├── PeimEntryPoint │ │ ├── PeimEntryPoint.c │ │ ├── PeimEntryPoint.inf │ │ └── PeimEntryPoint.uni │ ├── SecPeiDxeTimerLibCpu │ │ ├── IpfTimerLib.c │ │ ├── SecPeiDxeTimerLibCpu.inf │ │ ├── SecPeiDxeTimerLibCpu.uni │ │ └── X86TimerLib.c │ ├── SmmIoLibSmmCpuIo2 │ │ ├── IoHighLevel.c │ │ ├── IoLib.c │ │ ├── IoLibMmioBuffer.c │ │ ├── SmmCpuIoLibInternal.h │ │ ├── SmmIoLibSmmCpuIo2.inf │ │ └── SmmIoLibSmmCpuIo2.uni │ ├── SmmLibNull │ │ ├── SmmLibNull.c │ │ ├── SmmLibNull.inf │ │ └── SmmLibNull.uni │ ├── SmmMemLib │ │ ├── SmmMemLib.c │ │ ├── SmmMemLib.inf │ │ └── SmmMemLib.uni │ ├── SmmMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ ├── SmmMemoryAllocationLib.inf │ │ └── SmmMemoryAllocationLib.uni │ ├── SmmPciLibPciRootBridgeIo │ │ ├── PciLib.c │ │ ├── SmmPciLibPciRootBridgeIo.inf │ │ └── SmmPciLibPciRootBridgeIo.uni │ ├── SmmPeriodicSmiLib │ │ ├── SmmPeriodicSmiLib.c │ │ ├── SmmPeriodicSmiLib.inf │ │ └── SmmPeriodicSmiLib.uni │ ├── SmmServicesTableLib │ │ ├── SmmServicesTableLib.c │ │ ├── SmmServicesTableLib.inf │ │ └── SmmServicesTableLib.uni │ ├── UefiApplicationEntryPoint │ │ ├── ApplicationEntryPoint.c │ │ ├── UefiApplicationEntryPoint.inf │ │ └── UefiApplicationEntryPoint.uni │ ├── UefiBootServicesTableLib │ │ ├── UefiBootServicesTableLib.c │ │ ├── UefiBootServicesTableLib.inf │ │ └── UefiBootServicesTableLib.uni │ ├── UefiDebugLibConOut │ │ ├── DebugLib.c │ │ ├── UefiDebugLibConOut.inf │ │ └── UefiDebugLibConOut.uni │ ├── UefiDebugLibDebugPortProtocol │ │ ├── DebugLib.c │ │ ├── UefiDebugLibDebugPortProtocol.inf │ │ └── UefiDebugLibDebugPortProtocol.uni │ ├── UefiDebugLibStdErr │ │ ├── DebugLib.c │ │ ├── UefiDebugLibStdErr.inf │ │ └── UefiDebugLibStdErr.uni │ ├── UefiDevicePathLib │ │ ├── DevicePathFromText.c │ │ ├── DevicePathToText.c │ │ ├── DevicePathUtilities.c │ │ ├── UefiDevicePathLib.c │ │ ├── UefiDevicePathLib.h │ │ ├── UefiDevicePathLib.inf │ │ ├── UefiDevicePathLib.uni │ │ ├── UefiDevicePathLibOptionalDevicePathProtocol.c │ │ ├── UefiDevicePathLibOptionalDevicePathProtocol.inf │ │ └── UefiDevicePathLibOptionalDevicePathProtocol.uni │ ├── UefiDevicePathLibDevicePathProtocol │ │ ├── UefiDevicePathLib.c │ │ ├── UefiDevicePathLibDevicePathProtocol.inf │ │ └── UefiDevicePathLibDevicePathProtocol.uni │ ├── UefiDriverEntryPoint │ │ ├── DriverEntryPoint.c │ │ ├── UefiDriverEntryPoint.inf │ │ └── UefiDriverEntryPoint.uni │ ├── UefiFileHandleLib │ │ ├── UefiFileHandleLib.c │ │ ├── UefiFileHandleLib.inf │ │ └── UefiFileHandleLib.uni │ ├── UefiLib │ │ ├── Console.c │ │ ├── UefiDriverModel.c │ │ ├── UefiLib.c │ │ ├── UefiLib.inf │ │ ├── UefiLib.uni │ │ ├── UefiLibInternal.h │ │ ├── UefiLibPrint.c │ │ └── UefiNotTiano.c │ ├── UefiMemoryAllocationLib │ │ ├── MemoryAllocationLib.c │ │ ├── UefiMemoryAllocationLib.inf │ │ └── UefiMemoryAllocationLib.uni │ ├── UefiMemoryLib │ │ ├── CompareMemWrapper.c │ │ ├── CopyMemWrapper.c │ │ ├── MemLib.c │ │ ├── MemLibGeneric.c │ │ ├── MemLibGuid.c │ │ ├── MemLibInternals.h │ │ ├── ScanMem16Wrapper.c │ │ ├── ScanMem32Wrapper.c │ │ ├── ScanMem64Wrapper.c │ │ ├── ScanMem8Wrapper.c │ │ ├── SetMem16Wrapper.c │ │ ├── SetMem32Wrapper.c │ │ ├── SetMem64Wrapper.c │ │ ├── SetMemWrapper.c │ │ ├── UefiMemoryLib.inf │ │ ├── UefiMemoryLib.uni │ │ └── ZeroMemWrapper.c │ ├── UefiPalLib │ │ ├── UefiPalLib.c │ │ ├── UefiPalLib.inf │ │ └── UefiPalLib.uni │ ├── UefiPciLibPciRootBridgeIo │ │ ├── PciLib.c │ │ ├── UefiPciLibPciRootBridgeIo.inf │ │ └── UefiPciLibPciRootBridgeIo.uni │ ├── UefiPciSegmentLibPciRootBridgeIo │ │ ├── PciSegmentLib.c │ │ ├── PciSegmentLib.h │ │ ├── UefiPciSegmentLibPciRootBridgeIo.inf │ │ └── UefiPciSegmentLibPciRootBridgeIo.uni │ ├── UefiRuntimeLib │ │ ├── RuntimeLib.c │ │ ├── UefiRuntimeLib.inf │ │ └── UefiRuntimeLib.uni │ ├── UefiRuntimeServicesTableLib │ │ ├── UefiRuntimeServicesTableLib.c │ │ ├── UefiRuntimeServicesTableLib.inf │ │ └── UefiRuntimeServicesTableLib.uni │ ├── UefiSalLib │ │ ├── UefiSalLib.c │ │ ├── UefiSalLib.inf │ │ └── UefiSalLib.uni │ ├── UefiScsiLib │ │ ├── UefiScsiLib.c │ │ ├── UefiScsiLib.inf │ │ └── UefiScsiLib.uni │ └── UefiUsbLib │ │ ├── Hid.c │ │ ├── UefiUsbLib.inf │ │ ├── UefiUsbLib.uni │ │ ├── UefiUsbLibInternal.h │ │ └── UsbDxeLib.c ├── License.txt ├── MdePkg.dec ├── MdePkg.dsc ├── MdePkg.uni └── MdePkgExtra.uni ├── NetworkPkg ├── Application │ ├── IfConfig6 │ │ ├── IfConfig6.c │ │ ├── IfConfig6.h │ │ ├── IfConfig6.inf │ │ ├── IfConfig6.uni │ │ ├── IfConfig6Extra.uni │ │ └── IfConfig6Strings.uni │ ├── IpsecConfig │ │ ├── Delete.c │ │ ├── Delete.h │ │ ├── Dump.c │ │ ├── Dump.h │ │ ├── ForEach.c │ │ ├── ForEach.h │ │ ├── Helper.c │ │ ├── Helper.h │ │ ├── Indexer.c │ │ ├── Indexer.h │ │ ├── IpSecConfig.c │ │ ├── IpSecConfig.h │ │ ├── IpSecConfig.inf │ │ ├── IpSecConfig.uni │ │ ├── IpSecConfigExtra.uni │ │ ├── IpSecConfigStrings.uni │ │ ├── Match.c │ │ ├── Match.h │ │ ├── PolicyEntryOperation.c │ │ └── PolicyEntryOperation.h │ ├── Ping6 │ │ ├── Ia32 │ │ │ └── Tsc.c │ │ ├── Ipf │ │ │ └── Itc.c │ │ ├── Ping6.c │ │ ├── Ping6.h │ │ ├── Ping6.inf │ │ ├── Ping6.uni │ │ ├── Ping6Extra.uni │ │ ├── Ping6Strings.uni │ │ └── X64 │ │ │ └── Tsc.c │ └── VConfig │ │ ├── VConfig.c │ │ ├── VConfig.inf │ │ ├── VConfig.uni │ │ ├── VConfigExtra.uni │ │ └── VConfigStrings.uni ├── Contributions.txt ├── Dhcp6Dxe │ ├── ComponentName.c │ ├── Dhcp6Driver.c │ ├── Dhcp6Driver.h │ ├── Dhcp6Dxe.inf │ ├── Dhcp6Dxe.uni │ ├── Dhcp6DxeExtra.uni │ ├── Dhcp6Impl.c │ ├── Dhcp6Impl.h │ ├── Dhcp6Io.c │ ├── Dhcp6Io.h │ ├── Dhcp6Utility.c │ └── Dhcp6Utility.h ├── DnsDxe │ ├── ComponentName.c │ ├── DnsDhcp.c │ ├── DnsDhcp.h │ ├── DnsDriver.c │ ├── DnsDriver.h │ ├── DnsDxe.inf │ ├── DnsDxe.uni │ ├── DnsDxeExtra.uni │ ├── DnsImpl.c │ ├── DnsImpl.h │ └── DnsProtocol.c ├── HttpBootDxe │ ├── HttpBootClient.c │ ├── HttpBootClient.h │ ├── HttpBootComponentName.c │ ├── HttpBootComponentName.h │ ├── HttpBootDhcp4.c │ ├── HttpBootDhcp4.h │ ├── HttpBootDxe.c │ ├── HttpBootDxe.h │ ├── HttpBootDxe.inf │ ├── HttpBootDxe.uni │ ├── HttpBootDxeExtra.uni │ ├── HttpBootImpl.c │ ├── HttpBootImpl.h │ ├── HttpBootSupport.c │ └── HttpBootSupport.h ├── HttpDxe │ ├── ComponentName.c │ ├── ComponentName.h │ ├── HttpDns.c │ ├── HttpDns.h │ ├── HttpDriver.c │ ├── HttpDriver.h │ ├── HttpDxe.inf │ ├── HttpDxe.uni │ ├── HttpDxeExtra.uni │ ├── HttpImpl.c │ ├── HttpImpl.h │ ├── HttpProto.c │ └── HttpProto.h ├── HttpUtilitiesDxe │ ├── HttpUtilitiesDxe.c │ ├── HttpUtilitiesDxe.h │ ├── HttpUtilitiesDxe.inf │ ├── HttpUtilitiesDxe.uni │ ├── HttpUtilitiesDxeExtra.uni │ ├── HttpUtilitiesImpl.c │ └── HttpUtilitiesProtocol.c ├── IScsiDxe │ ├── ComponentName.c │ ├── IScsiAuthenticationInfo.c │ ├── IScsiCHAP.c │ ├── IScsiCHAP.h │ ├── IScsiConfig.c │ ├── IScsiConfig.h │ ├── IScsiConfigNVDataStruc.h │ ├── IScsiConfigStrings.uni │ ├── IScsiConfigVfr.vfr │ ├── IScsiDhcp.c │ ├── IScsiDhcp.h │ ├── IScsiDhcp6.c │ ├── IScsiDhcp6.h │ ├── IScsiDriver.c │ ├── IScsiDriver.h │ ├── IScsiDxe.inf │ ├── IScsiDxe.uni │ ├── IScsiDxeExtra.uni │ ├── IScsiExtScsiPassThru.c │ ├── IScsiIbft.c │ ├── IScsiIbft.h │ ├── IScsiImpl.h │ ├── IScsiInitiatorName.c │ ├── IScsiMisc.c │ ├── IScsiMisc.h │ ├── IScsiProto.c │ └── IScsiProto.h ├── Include │ └── Guid │ │ ├── IScsiConfigHii.h │ │ └── Ip6ConfigHii.h ├── Ip6Dxe │ ├── ComponentName.c │ ├── Ip6Common.c │ ├── Ip6Common.h │ ├── Ip6Config.vfr │ ├── Ip6ConfigImpl.c │ ├── Ip6ConfigImpl.h │ ├── Ip6ConfigNv.c │ ├── Ip6ConfigNv.h │ ├── Ip6Driver.c │ ├── Ip6Driver.h │ ├── Ip6Dxe.inf │ ├── Ip6Dxe.uni │ ├── Ip6DxeExtra.uni │ ├── Ip6DxeStrings.uni │ ├── Ip6Icmp.c │ ├── Ip6Icmp.h │ ├── Ip6If.c │ ├── Ip6If.h │ ├── Ip6Impl.c │ ├── Ip6Impl.h │ ├── Ip6Input.c │ ├── Ip6Input.h │ ├── Ip6Mld.c │ ├── Ip6Mld.h │ ├── Ip6Nd.c │ ├── Ip6Nd.h │ ├── Ip6NvData.h │ ├── Ip6Option.c │ ├── Ip6Option.h │ ├── Ip6Output.c │ ├── Ip6Output.h │ ├── Ip6Route.c │ └── Ip6Route.h ├── IpSecDxe │ ├── ComponentName.c │ ├── IetfConstants.c │ ├── Ike.h │ ├── IkeCommon.c │ ├── IkeCommon.h │ ├── IkePacket.c │ ├── IkePacket.h │ ├── IkeService.c │ ├── IkeService.h │ ├── Ikev2 │ │ ├── ChildSa.c │ │ ├── Exchange.c │ │ ├── Ikev2.h │ │ ├── Info.c │ │ ├── Payload.c │ │ ├── Payload.h │ │ ├── Sa.c │ │ ├── Utility.c │ │ └── Utility.h │ ├── IpSecConfigImpl.c │ ├── IpSecConfigImpl.h │ ├── IpSecCryptIo.c │ ├── IpSecCryptIo.h │ ├── IpSecDebug.c │ ├── IpSecDebug.h │ ├── IpSecDriver.c │ ├── IpSecDxe.inf │ ├── IpSecDxe.uni │ ├── IpSecDxeExtra.uni │ ├── IpSecImpl.c │ ├── IpSecImpl.h │ └── IpSecMain.c ├── License.txt ├── Mtftp6Dxe │ ├── ComponentName.c │ ├── Mtftp6Driver.c │ ├── Mtftp6Driver.h │ ├── Mtftp6Dxe.inf │ ├── Mtftp6Dxe.uni │ ├── Mtftp6DxeExtra.uni │ ├── Mtftp6Impl.c │ ├── Mtftp6Impl.h │ ├── Mtftp6Option.c │ ├── Mtftp6Option.h │ ├── Mtftp6Rrq.c │ ├── Mtftp6Support.c │ ├── Mtftp6Support.h │ └── Mtftp6Wrq.c ├── NetworkPkg.dec ├── NetworkPkg.dsc ├── NetworkPkg.uni ├── NetworkPkgExtra.uni ├── TcpDxe │ ├── ComponentName.c │ ├── SockImpl.c │ ├── SockImpl.h │ ├── SockInterface.c │ ├── Socket.h │ ├── TcpDispatcher.c │ ├── TcpDriver.c │ ├── TcpDriver.h │ ├── TcpDxe.inf │ ├── TcpDxe.uni │ ├── TcpDxeExtra.uni │ ├── TcpFunc.h │ ├── TcpInput.c │ ├── TcpIo.c │ ├── TcpMain.c │ ├── TcpMain.h │ ├── TcpMisc.c │ ├── TcpOption.c │ ├── TcpOption.h │ ├── TcpOutput.c │ ├── TcpProto.h │ └── TcpTimer.c ├── Udp6Dxe │ ├── ComponentName.c │ ├── Udp6Driver.c │ ├── Udp6Driver.h │ ├── Udp6Dxe.inf │ ├── Udp6Dxe.uni │ ├── Udp6DxeExtra.uni │ ├── Udp6Impl.c │ ├── Udp6Impl.h │ └── Udp6Main.c └── UefiPxeBcDxe │ ├── ComponentName.c │ ├── PxeBcBoot.c │ ├── PxeBcBoot.h │ ├── PxeBcDhcp4.c │ ├── PxeBcDhcp4.h │ ├── PxeBcDhcp6.c │ ├── PxeBcDhcp6.h │ ├── PxeBcDriver.c │ ├── PxeBcDriver.h │ ├── PxeBcImpl.c │ ├── PxeBcImpl.h │ ├── PxeBcMtftp.c │ ├── PxeBcMtftp.h │ ├── PxeBcSupport.c │ ├── PxeBcSupport.h │ ├── UefiPxeBcDxe.inf │ ├── UefiPxeBcDxe.uni │ └── UefiPxeBcDxeExtra.uni ├── Nt32Pkg ├── BootModePei │ ├── BootModePei.c │ └── BootModePei.inf ├── Contributions.txt ├── CpuRuntimeDxe │ ├── Cpu.c │ ├── CpuDriver.h │ ├── CpuIo.c │ ├── CpuRuntimeDxe.inf │ └── Strings.uni ├── FvbServicesRuntimeDxe │ ├── FWBlockService.c │ ├── FvbInfo.c │ ├── FvbServicesRuntimeDxe.inf │ └── FwBlockService.h ├── Include │ ├── Common │ │ └── WinNTInclude.h │ ├── Guid │ │ └── WinNtSystemConfig.h │ ├── Library │ │ └── WinNtLib.h │ ├── Ppi │ │ ├── NtAutoscan.h │ │ ├── NtFwh.h │ │ ├── NtPeiLoadFile.h │ │ └── NtThunk.h │ ├── Protocol │ │ ├── WinNtIo.h │ │ └── WinNtThunk.h │ ├── WinNtDxe.h │ └── WinNtPeim.h ├── Library │ ├── DxeNt32OemHookStatusCodeLib │ │ ├── DxeNt32OemHookStatusCodeLib.inf │ │ └── Nt32OemHookStatusCodeLib.c │ ├── DxeNt32PeCoffExtraActionLib │ │ ├── DxeNt32PeCoffExtraActionLib.c │ │ └── DxeNt32PeCoffExtraActionLib.inf │ ├── DxeWinNtLib │ │ ├── DxeWinNtLib.inf │ │ └── WinNtLib.c │ ├── Nt32PeiPeCoffGetEntryPointLib │ │ ├── Nt32PeiPeCoffGetEntryPointLib.inf │ │ └── PeCoffGetEntryPoint.c │ ├── PeiNt32OemHookStatusCodeLib │ │ ├── Nt32OemHookStatusCodeLib.c │ │ └── PeiNt32OemHookStatusCodeLib.inf │ ├── PeiNt32PeCoffExtraActionLib │ │ ├── PeiNt32PeCoffExtraActionLib.c │ │ └── PeiNt32PeCoffExtraActionLib.inf │ ├── PlatformBootManagerLib │ │ ├── MemoryTest.c │ │ ├── PlatformBootManager.c │ │ ├── PlatformBootManager.h │ │ ├── PlatformBootManagerLib.inf │ │ ├── PlatformData.c │ │ └── Strings.uni │ └── PlatformSecureLib │ │ ├── PlatformSecureLib.c │ │ └── PlatformSecureLib.inf ├── License.txt ├── MetronomeDxe │ ├── Metronome.c │ ├── Metronome.h │ └── MetronomeDxe.inf ├── MiscSubClassPlatformDxe │ ├── MiscBaseBoardManufacturerData.c │ ├── MiscBaseBoardManufacturerFunction.c │ ├── MiscBiosVendorData.c │ ├── MiscBiosVendorFunction.c │ ├── MiscBootInformationData.c │ ├── MiscBootInformationFunction.c │ ├── MiscChassisManufacturerData.c │ ├── MiscChassisManufacturerFunction.c │ ├── MiscDevicePath.h │ ├── MiscNumberOfInstallableLanguagesData.c │ ├── MiscNumberOfInstallableLanguagesFunction.c │ ├── MiscOemStringData.c │ ├── MiscOemStringFunction.c │ ├── MiscPortInternalConnectorDesignatorData.c │ ├── MiscPortInternalConnectorDesignatorFunction.c │ ├── MiscResetCapabilitiesData.c │ ├── MiscResetCapabilitiesFunction.c │ ├── MiscSubClassPlatformDxe.inf │ ├── MiscSubclassDriver.h │ ├── MiscSubclassDriver.uni │ ├── MiscSubclassDriverDataTable.c │ ├── MiscSubclassDriverEntryPoint.c │ ├── MiscSystemLanguageStringData.c │ ├── MiscSystemLanguageStringFunction.c │ ├── MiscSystemManufacturerData.c │ ├── MiscSystemManufacturerFunction.c │ ├── MiscSystemOptionStringData.c │ ├── MiscSystemOptionStringFunction.c │ ├── MiscSystemSlotDesignationData.c │ └── MiscSystemSlotDesignationFunction.c ├── Nt32Pkg.dec ├── Nt32Pkg.dsc ├── Nt32Pkg.fdf ├── RealTimeClockRuntimeDxe │ ├── RealTimeClock.c │ └── RealTimeClockRuntimeDxe.inf ├── ResetRuntimeDxe │ ├── ResetRuntimeDxe.inf │ └── reset.c ├── Sec │ ├── FwVol.c │ ├── SecMain.c │ ├── SecMain.h │ ├── SecMain.inf │ ├── Stack.asm │ ├── StackX64.asm │ └── WinNtThunk.c ├── SnpNt32Dxe │ ├── ComponentName.c │ ├── SnpNt32.c │ ├── SnpNt32.h │ └── SnpNt32Dxe.inf ├── StallPei │ ├── Stall.c │ └── StallPei.inf ├── TimerDxe │ ├── Timer.c │ ├── Timer.h │ └── TimerDxe.inf ├── WinNtAutoScanPei │ ├── WinNtAutoScan.c │ └── WinNtAutoScanPei.inf ├── WinNtBlockIoDxe │ ├── ComponentName.c │ ├── DriverConfiguration.c │ ├── DriverDiagnostics.c │ ├── WinNtBlockIo.c │ ├── WinNtBlockIo.h │ └── WinNtBlockIoDxe.inf ├── WinNtBusDriverDxe │ ├── ComponentName.c │ ├── WinNtBusDriver.c │ ├── WinNtBusDriver.h │ └── WinNtBusDriverDxe.inf ├── WinNtFirmwareVolumePei │ ├── WinNtFirmwareVolumePei.inf │ └── WinntFwh.c ├── WinNtFlashMapPei │ ├── FlashMap.c │ └── WinNtFlashMapPei.inf ├── WinNtGopDxe │ ├── ComponentName.c │ ├── WinNtGop.h │ ├── WinNtGopDriver.c │ ├── WinNtGopDxe.inf │ ├── WinNtGopInput.c │ └── WinNtGopScreen.c ├── WinNtOemHookStatusCodeHandlerDxe │ ├── WinNtOemHookStatusCodeHandlerDxe.c │ └── WinNtOemHookStatusCodeHandlerDxe.inf ├── WinNtOemHookStatusCodeHandlerPei │ ├── WinNtOemHookStatusCodeHandlerPei.c │ └── WinNtOemHookStatusCodeHandlerPei.inf ├── WinNtSerialIoDxe │ ├── ComponentName.c │ ├── WinNtSerialIo.c │ ├── WinNtSerialIo.h │ └── WinNtSerialIoDxe.inf ├── WinNtSimpleFileSystemDxe │ ├── ComponentName.c │ ├── WinNtSimpleFileSystem.c │ ├── WinNtSimpleFileSystem.h │ └── WinNtSimpleFileSystemDxe.inf ├── WinNtThunkDxe │ ├── WinNtThunk.c │ ├── WinNtThunk.h │ └── WinNtThunkDxe.inf └── WinNtThunkPPIToProtocolPei │ ├── WinNtThunkPPIToProtocol.c │ └── WinNtThunkPPIToProtocolPei.inf ├── Omap35xxPkg ├── Contributions.txt ├── Flash │ ├── Flash.c │ ├── Flash.h │ └── Flash.inf ├── Gpio │ ├── Gpio.c │ └── Gpio.inf ├── Include │ ├── Library │ │ ├── OmapDmaLib.h │ │ └── OmapLib.h │ ├── Omap3530 │ │ ├── Omap3530.h │ │ ├── Omap3530Dma.h │ │ ├── Omap3530Gpio.h │ │ ├── Omap3530Gpmc.h │ │ ├── Omap3530I2c.h │ │ ├── Omap3530Interrupt.h │ │ ├── Omap3530MMCHS.h │ │ ├── Omap3530PadConfiguration.h │ │ ├── Omap3530Prcm.h │ │ ├── Omap3530Timer.h │ │ ├── Omap3530Uart.h │ │ └── Omap3530Usb.h │ └── TPS65950.h ├── InterruptDxe │ ├── HardwareInterrupt.c │ └── InterruptDxe.inf ├── LcdGraphicsOutputDxe │ ├── LcdGraphicsOutputBlt.c │ ├── LcdGraphicsOutputDxe.c │ ├── LcdGraphicsOutputDxe.h │ └── LcdGraphicsOutputDxe.inf ├── Library │ ├── DebugAgentTimerLib │ │ ├── DebugAgentTimerLib.c │ │ └── DebugAgentTimerLib.inf │ ├── EblCmdLib │ │ ├── EblCmdLib.c │ │ └── EblCmdLib.inf │ ├── GdbSerialLib │ │ ├── GdbSerialLib.c │ │ └── GdbSerialLib.inf │ ├── Omap35xxTimerLib │ │ ├── Omap35xxTimerLib.inf │ │ └── TimerLib.c │ ├── OmapDmaLib │ │ ├── OmapDmaLib.c │ │ └── OmapDmaLib.inf │ ├── OmapLib │ │ ├── OmapLib.c │ │ └── OmapLib.inf │ ├── RealTimeClockLib │ │ ├── RealTimeClockLib.c │ │ └── RealTimeClockLib.inf │ ├── ResetSystemLib │ │ ├── ResetSystemLib.c │ │ └── ResetSystemLib.inf │ └── SerialPortLib │ │ ├── SerialPortLib.c │ │ └── SerialPortLib.inf ├── License.txt ├── MMCHSDxe │ ├── MMCHS.c │ ├── MMCHS.h │ └── MMCHS.inf ├── MmcHostDxe │ ├── MmcHostDxe.c │ ├── MmcHostDxe.h │ └── MmcHostDxe.inf ├── Omap35xxPkg.dec ├── Omap35xxPkg.dsc ├── PciEmulation │ ├── PciEmulation.c │ ├── PciEmulation.h │ ├── PciEmulation.inf │ └── PciRootBridgeIo.c ├── SmbusDxe │ ├── Smbus.c │ └── Smbus.inf ├── TPS65950Dxe │ ├── TPS65950.c │ └── TPS65950.inf └── TimerDxe │ ├── Timer.c │ └── TimerDxe.inf ├── OptionRomPkg ├── Application │ └── BltLibSample │ │ ├── BltLibSample.c │ │ └── BltLibSample.inf ├── AtapiPassThruDxe │ ├── AtapiPassThru.c │ ├── AtapiPassThru.h │ ├── AtapiPassThruDxe.inf │ ├── ComponentName.c │ └── DriverSupportedEfiVersion.c ├── Bus │ └── Usb │ │ ├── FtdiUsbSerialDxe │ │ ├── CompatibleDevices.txt │ │ ├── ComponentName.c │ │ ├── FtdiUsbSerialDriver.c │ │ ├── FtdiUsbSerialDriver.h │ │ ├── FtdiUsbSerialDxe.inf │ │ └── ReadMe.txt │ │ └── UsbNetworking │ │ ├── Ax88772 │ │ ├── Ax88772.c │ │ ├── Ax88772.h │ │ ├── Ax88772.inf │ │ ├── ComponentName.c │ │ ├── DriverBinding.c │ │ └── SimpleNetwork.c │ │ └── Ax88772b │ │ ├── Ax88772.c │ │ ├── Ax88772.h │ │ ├── Ax88772b.inf │ │ ├── ComponentName.c │ │ ├── DriverBinding.c │ │ └── SimpleNetwork.c ├── CirrusLogic5430Dxe │ ├── CirrusLogic5430.c │ ├── CirrusLogic5430.h │ ├── CirrusLogic5430Dxe.inf │ ├── CirrusLogic5430GraphicsOutput.c │ ├── CirrusLogic5430I2c.c │ ├── CirrusLogic5430I2c.h │ ├── CirrusLogic5430UgaDraw.c │ ├── ComponentName.c │ ├── DriverSupportedEfiVersion.c │ └── Edid.c ├── Contributions.txt ├── Include │ └── Library │ │ └── BltLib.h ├── Library │ ├── FrameBufferBltLib │ │ ├── FrameBufferBltLib.c │ │ └── FrameBufferBltLib.inf │ └── GopBltLib │ │ ├── GopBltLib.c │ │ └── GopBltLib.inf ├── License.txt ├── OptionRomPkg.dec ├── OptionRomPkg.dsc ├── ReadMe.txt └── UndiRuntimeDxe │ ├── ComponentName.c │ ├── Decode.c │ ├── E100b.c │ ├── E100b.h │ ├── Init.c │ ├── Undi32.h │ ├── UndiAipImpl.c │ └── UndiRuntimeDxe.inf ├── OvmfPkg ├── AcpiPlatformDxe │ ├── AcpiPlatform.c │ ├── AcpiPlatform.h │ ├── AcpiPlatformDxe.inf │ ├── EntryPoint.c │ ├── Qemu.c │ ├── QemuFwCfgAcpi.c │ ├── QemuFwCfgAcpiPlatform.c │ ├── QemuFwCfgAcpiPlatformDxe.inf │ ├── QemuLoader.h │ └── Xen.c ├── AcpiS3SaveDxe │ ├── AcpiS3Save.c │ └── AcpiS3SaveDxe.inf ├── AcpiTables │ ├── AcpiTables.inf │ ├── Dsdt.asl │ ├── Facp.aslc │ ├── Facs.aslc │ ├── Madt.aslc │ ├── Platform.h │ └── Ssdt.asl ├── BlockMmioToBlockIoDxe │ ├── BlockIo.c │ ├── BlockIo.h │ ├── BlockIo.inf │ └── ComponentName.c ├── Contributions.txt ├── Csm │ ├── Csm16 │ │ ├── Csm16.inf │ │ └── ReadMe.txt │ └── CsmSupportLib │ │ ├── CsmSupportLib.c │ │ ├── CsmSupportLib.h │ │ ├── CsmSupportLib.inf │ │ ├── LegacyInterrupt.c │ │ ├── LegacyInterrupt.h │ │ ├── LegacyPlatform.c │ │ ├── LegacyPlatform.h │ │ ├── LegacyRegion.c │ │ └── LegacyRegion.h ├── EmuVariableFvbRuntimeDxe │ ├── Fvb.c │ ├── Fvb.h │ └── Fvb.inf ├── Include │ ├── Guid │ │ ├── OvmfPlatformConfig.h │ │ ├── VirtioMmioTransport.h │ │ ├── XenBusRootDevice.h │ │ └── XenInfo.h │ ├── IndustryStandard │ │ ├── E820.h │ │ ├── I440FxPiix4.h │ │ ├── LegacyVgaBios.h │ │ ├── LinuxBzimage.h │ │ ├── Q35MchIch9.h │ │ ├── Virtio.h │ │ ├── VirtioBlk.h │ │ ├── VirtioNet.h │ │ ├── VirtioScsi.h │ │ └── Xen │ │ │ ├── README │ │ │ ├── arch-arm │ │ │ └── xen.h │ │ │ ├── arch-x86 │ │ │ ├── xen-x86_32.h │ │ │ ├── xen-x86_64.h │ │ │ └── xen.h │ │ │ ├── event_channel.h │ │ │ ├── grant_table.h │ │ │ ├── hvm │ │ │ ├── hvm_op.h │ │ │ └── params.h │ │ │ ├── io │ │ │ ├── blkif.h │ │ │ ├── console.h │ │ │ ├── protocols.h │ │ │ ├── ring.h │ │ │ ├── xenbus.h │ │ │ └── xs_wire.h │ │ │ ├── memory.h │ │ │ ├── xen-compat.h │ │ │ └── xen.h │ ├── Library │ │ ├── LoadLinuxLib.h │ │ ├── NvVarsFileLib.h │ │ ├── PlatformFvbLib.h │ │ ├── QemuBootOrderLib.h │ │ ├── QemuFwCfgLib.h │ │ ├── SerializeVariablesLib.h │ │ ├── VirtioLib.h │ │ ├── VirtioMmioDeviceLib.h │ │ ├── XenHypercallLib.h │ │ └── XenIoMmioLib.h │ ├── OvmfPlatforms.h │ └── Protocol │ │ ├── BlockMmio.h │ │ ├── VirtioDevice.h │ │ ├── XenBus.h │ │ └── XenIo.h ├── Library │ ├── AcpiTimerLib │ │ ├── AcpiTimerLib.c │ │ ├── AcpiTimerLib.h │ │ ├── BaseAcpiTimerLib.c │ │ ├── BaseAcpiTimerLib.inf │ │ ├── BaseRomAcpiTimerLib.c │ │ ├── BaseRomAcpiTimerLib.inf │ │ ├── DxeAcpiTimerLib.c │ │ └── DxeAcpiTimerLib.inf │ ├── EmuVariableFvbLib │ │ ├── EmuVariableFvbLib.c │ │ └── EmuVariableFvbLib.inf │ ├── LoadLinuxLib │ │ ├── Ia32 │ │ │ └── JumpToKernel.nasm │ │ ├── Linux.c │ │ ├── LinuxGdt.c │ │ ├── LoadLinuxLib.h │ │ ├── LoadLinuxLib.inf │ │ └── X64 │ │ │ └── JumpToKernel.nasm │ ├── LockBoxLib │ │ ├── LockBoxBase.c │ │ ├── LockBoxBaseLib.inf │ │ ├── LockBoxDxe.c │ │ ├── LockBoxDxeLib.inf │ │ ├── LockBoxLib.c │ │ └── LockBoxLib.h │ ├── NvVarsFileLib │ │ ├── FsAccess.c │ │ ├── NvVarsFileLib.c │ │ ├── NvVarsFileLib.h │ │ └── NvVarsFileLib.inf │ ├── PlatformBdsLib │ │ ├── BdsPlatform.c │ │ ├── BdsPlatform.h │ │ ├── PlatformBdsLib.inf │ │ ├── PlatformData.c │ │ └── QemuKernel.c │ ├── PlatformDebugLibIoPort │ │ ├── DebugLib.c │ │ └── PlatformDebugLibIoPort.inf │ ├── PlatformFvbLibNull │ │ ├── PlatformFvbLibNull.c │ │ └── PlatformFvbLibNull.inf │ ├── PlatformSecureLib │ │ ├── PlatformSecureLib.c │ │ └── PlatformSecureLib.inf │ ├── QemuBootOrderLib │ │ ├── ExtraRootBusMap.c │ │ ├── ExtraRootBusMap.h │ │ ├── QemuBootOrderLib.c │ │ └── QemuBootOrderLib.inf │ ├── QemuFwCfgLib │ │ ├── Ia32 │ │ │ └── IoLibExAsm.nasm │ │ ├── QemuFwCfgLib.c │ │ ├── QemuFwCfgLib.inf │ │ ├── QemuFwCfgPeiDxe.c │ │ ├── QemuFwCfgSec.c │ │ ├── QemuFwCfgSecLib.inf │ │ └── X64 │ │ │ └── IoLibExAsm.nasm │ ├── ResetSystemLib │ │ ├── ResetSystemLib.c │ │ └── ResetSystemLib.inf │ ├── SerializeVariablesLib │ │ ├── SerializeVariablesLib.c │ │ ├── SerializeVariablesLib.h │ │ └── SerializeVariablesLib.inf │ ├── SmbiosVersionLib │ │ ├── DetectSmbiosVersionLib.c │ │ └── DetectSmbiosVersionLib.inf │ ├── VirtioLib │ │ ├── VirtioLib.c │ │ └── VirtioLib.inf │ ├── VirtioMmioDeviceLib │ │ ├── VirtioMmioDevice.c │ │ ├── VirtioMmioDevice.h │ │ ├── VirtioMmioDeviceFunctions.c │ │ └── VirtioMmioDeviceLib.inf │ ├── XenConsoleSerialPortLib │ │ ├── XenConsoleSerialPortLib.c │ │ └── XenConsoleSerialPortLib.inf │ ├── XenHypercallLib │ │ ├── Aarch64 │ │ │ └── Hypercall.S │ │ ├── Arm │ │ │ └── Hypercall.S │ │ ├── ArmXenHypercall.c │ │ ├── Ia32 │ │ │ └── hypercall.nasm │ │ ├── X64 │ │ │ └── hypercall.nasm │ │ ├── X86XenHypercall.c │ │ ├── XenHypercall.c │ │ └── XenHypercallLib.inf │ └── XenIoMmioLib │ │ ├── XenIoMmioLib.c │ │ └── XenIoMmioLib.inf ├── License.txt ├── OvmfPkg.dec ├── OvmfPkg.fdf.inc ├── OvmfPkgIa32.dsc ├── OvmfPkgIa32.fdf ├── OvmfPkgIa32X64.dsc ├── OvmfPkgIa32X64.fdf ├── OvmfPkgX64.dsc ├── OvmfPkgX64.fdf ├── PciHostBridgeDxe │ ├── Ia32 │ │ ├── IoFifo.S │ │ └── IoFifo.asm │ ├── IoFifo.h │ ├── PciHostBridge.c │ ├── PciHostBridge.h │ ├── PciHostBridgeDxe.inf │ ├── PciRootBridgeIo.c │ └── X64 │ │ ├── IoFifo.S │ │ └── IoFifo.asm ├── PlatformDxe │ ├── Platform.c │ ├── Platform.h │ ├── Platform.inf │ ├── Platform.uni │ ├── PlatformConfig.c │ ├── PlatformConfig.h │ └── PlatformForms.vfr ├── PlatformPei │ ├── Cmos.c │ ├── Cmos.h │ ├── Fv.c │ ├── MemDetect.c │ ├── Platform.c │ ├── Platform.h │ ├── PlatformPei.inf │ ├── Xen.c │ └── Xen.h ├── QemuFlashFvbServicesRuntimeDxe │ ├── FvbInfo.c │ ├── FvbServicesRuntimeDxe.inf │ ├── FwBlockService.c │ ├── FwBlockService.h │ ├── QemuFlash.c │ └── QemuFlash.h ├── QemuVideoDxe │ ├── ComponentName.c │ ├── Driver.c │ ├── DriverSupportedEfiVersion.c │ ├── Gop.c │ ├── Initialize.c │ ├── Qemu.h │ ├── QemuVideoDxe.inf │ ├── VbeShim.asm │ ├── VbeShim.c │ ├── VbeShim.h │ └── VbeShim.sh ├── README ├── ResetVector │ ├── Ia32 │ │ └── PageTables64.asm │ ├── ResetVector.inf │ ├── ResetVector.nasmb │ └── ResetVectorCode.asm ├── SataControllerDxe │ ├── ComponentName.c │ ├── SataController.c │ ├── SataController.h │ └── SataControllerDxe.inf ├── Sec │ ├── Ia32 │ │ └── SecEntry.nasm │ ├── SecMain.c │ ├── SecMain.inf │ └── X64 │ │ └── SecEntry.nasm ├── SmbiosPlatformDxe │ ├── ArmXen.c │ ├── Qemu.c │ ├── SmbiosPlatformDxe.c │ ├── SmbiosPlatformDxe.h │ ├── SmbiosPlatformDxe.inf │ └── X86Xen.c ├── VarStore.fdf.inc ├── VirtioBlkDxe │ ├── VirtioBlk.c │ ├── VirtioBlk.h │ └── VirtioBlk.inf ├── VirtioNetDxe │ ├── ComponentName.c │ ├── DriverBinding.c │ ├── EntryPoint.c │ ├── Events.c │ ├── SnpGetStatus.c │ ├── SnpInitialize.c │ ├── SnpMcastIpToMac.c │ ├── SnpReceive.c │ ├── SnpReceiveFilters.c │ ├── SnpSharedHelpers.c │ ├── SnpShutdown.c │ ├── SnpStart.c │ ├── SnpStop.c │ ├── SnpTransmit.c │ ├── SnpUnsupported.c │ ├── TechNotes.txt │ ├── VirtioNet.h │ └── VirtioNet.inf ├── VirtioPciDeviceDxe │ ├── VirtioPciDevice.c │ ├── VirtioPciDevice.h │ ├── VirtioPciDeviceDxe.inf │ └── VirtioPciFunctions.c ├── VirtioScsiDxe │ ├── VirtioScsi.c │ ├── VirtioScsi.h │ └── VirtioScsi.inf ├── XenBusDxe │ ├── ComponentName.c │ ├── ComponentName.h │ ├── DriverBinding.h │ ├── EventChannel.c │ ├── EventChannel.h │ ├── GrantTable.c │ ├── GrantTable.h │ ├── Helpers.c │ ├── TestAndClearBit.c │ ├── XenBus.c │ ├── XenBus.h │ ├── XenBusDxe.c │ ├── XenBusDxe.h │ ├── XenBusDxe.inf │ ├── XenStore.c │ └── XenStore.h ├── XenIoPciDxe │ ├── XenIoPciDxe.c │ └── XenIoPciDxe.inf ├── XenPvBlkDxe │ ├── BlockFront.c │ ├── BlockFront.h │ ├── BlockIo.c │ ├── BlockIo.h │ ├── ComponentName.c │ ├── ComponentName.h │ ├── DriverBinding.h │ ├── XenPvBlkDxe.c │ ├── XenPvBlkDxe.h │ └── XenPvBlkDxe.inf ├── build.sh └── create-release.py ├── PPC64Pkg ├── Application │ └── Test │ │ ├── Test.c │ │ └── Test.inf ├── Drivers │ ├── CpuDxe │ │ ├── CpuDxe.c │ │ ├── CpuDxe.h │ │ ├── CpuDxe.inf │ │ └── PPC64 │ │ │ └── Vectors.S │ ├── FdtBusDxe │ │ ├── FdtBus.c │ │ └── FdtBusDxe.inf │ └── TimerDxe │ │ ├── TimerDxe.c │ │ └── TimerDxe.inf ├── FDLoader │ ├── FDLoader.inf │ ├── PPC64 │ │ └── ModuleEntryPoint.S │ └── Scripts │ │ └── FDLoader.lds ├── Include │ ├── AsmMacroLib.h │ ├── Chipset │ │ ├── PPC64.h │ │ └── PPC64Intrinsics.h │ ├── Endian.h │ ├── Library │ │ └── OpalLib.h │ └── Pcr.h ├── Ipl │ ├── Ipl.c │ ├── Ipl.h │ ├── Ipl.inf │ ├── LzmaDecompress.h │ └── PPC64 │ │ └── ModuleEntryPoint.S ├── Library │ ├── OpalLib │ │ ├── OpalLib.inf │ │ └── PPC64 │ │ │ └── Opal.S │ ├── OpalRealTimeClockLib │ │ ├── OpalRealTimeClockLib.c │ │ └── OpalRealTimeClockLib.inf │ ├── OpalResetSystemLib │ │ ├── OpalResetSystemLib.c │ │ ├── OpalResetSystemLib.inf │ │ └── OpalResetSystemLib.uni │ ├── OpalSerialPortLib │ │ ├── OpalSerialPortLib.inf │ │ └── SerialPortLib.c │ ├── PPC64CacheMaintenanceLib │ │ ├── PPC64CacheMaintenanceLib.c │ │ └── PPC64CacheMaintenanceLib.inf │ ├── PlatformIntelBdsLib │ │ ├── IntelBdsPlatform.c │ │ ├── IntelBdsPlatform.h │ │ └── PlatformIntelBdsLib.inf │ ├── PrePiHobListPointerLib │ │ ├── PrePiHobListPointer.c │ │ └── PrePiHobListPointerLib.inf │ └── TBTimerLib │ │ ├── TBTimerLib.c │ │ └── TBTimerLib.inf ├── PPC64Pkg.dec ├── PPC64Pkg.dsc └── PPC64Pkg.fdf ├── PPC64PlatformPkg ├── PPC64PlatformPkg.dec ├── PPC64PlatformPkg.dsc └── Test │ ├── Test.c │ └── Test.inf ├── PcAtChipsetPkg ├── 8254TimerDxe │ ├── 8254Timer.inf │ ├── Timer.c │ ├── Timer.h │ ├── Timer.uni │ └── TimerExtra.uni ├── 8259InterruptControllerDxe │ ├── 8259.c │ ├── 8259.h │ ├── 8259.inf │ ├── Legacy8259.uni │ └── Legacy8259Extra.uni ├── Bus │ └── Pci │ │ └── IdeControllerDxe │ │ ├── ComponentName.c │ │ ├── IdeController.c │ │ ├── IdeController.h │ │ ├── IdeController.uni │ │ ├── IdeControllerDxe.inf │ │ └── IdeControllerExtra.uni ├── Contributions.txt ├── HpetTimerDxe │ ├── HpetTimer.c │ ├── HpetTimerDxe.inf │ ├── HpetTimerDxe.uni │ └── HpetTimerDxeExtra.uni ├── Include │ ├── Guid │ │ └── PcAtChipsetTokenSpace.h │ ├── Library │ │ └── IoApicLib.h │ └── Register │ │ ├── Hpet.h │ │ └── IoApic.h ├── IsaAcpiDxe │ ├── ComponentName.c │ ├── IsaAcpi.c │ ├── IsaAcpi.inf │ ├── IsaAcpi.uni │ ├── IsaAcpiExtra.uni │ ├── PcatIsaAcpi.c │ └── PcatIsaAcpi.h ├── KbcResetDxe │ ├── KbcReset.uni │ ├── KbcResetExtra.uni │ ├── Reset.inf │ └── ResetEntry.c ├── Library │ ├── AcpiTimerLib │ │ ├── AcpiTimerLib.c │ │ ├── BaseAcpiTimerLib.c │ │ ├── BaseAcpiTimerLib.inf │ │ ├── BaseAcpiTimerLib.uni │ │ ├── DxeAcpiTimerLib.c │ │ ├── DxeAcpiTimerLib.inf │ │ └── DxeAcpiTimerLib.uni │ ├── BaseIoApicLib │ │ ├── BaseIoApicLib.inf │ │ ├── BaseIoApicLib.uni │ │ └── IoApicLib.c │ ├── ResetSystemLib │ │ ├── ResetSystemLib.c │ │ ├── ResetSystemLib.inf │ │ └── ResetSystemLib.uni │ └── SerialIoLib │ │ ├── PcAtSerialPortLib.uni │ │ ├── SerialIoLib.inf │ │ └── SerialPortLib.c ├── License.txt ├── PcAtChipsetPkg.dec ├── PcAtChipsetPkg.dsc ├── PcAtChipsetPkg.uni ├── PcAtChipsetPkgExtra.uni ├── PcatRealTimeClockRuntimeDxe │ ├── PcRtc.c │ ├── PcRtc.h │ ├── PcRtc.uni │ ├── PcRtcEntry.c │ ├── PcRtcExtra.uni │ └── PcatRealTimeClockRuntimeDxe.inf └── PciHostBridgeDxe │ ├── Ia32 │ ├── IoFifo.S │ └── IoFifo.asm │ ├── IoFifo.h │ ├── PciHostBridge.c │ ├── PciHostBridge.h │ ├── PciHostBridge.uni │ ├── PciHostBridgeDxe.inf │ ├── PciHostBridgeExtra.uni │ ├── PciRootBridgeIo.c │ └── X64 │ ├── IoFifo.S │ └── IoFifo.asm ├── PerformancePkg ├── Contributions.txt ├── Dp_App │ ├── Dp.c │ ├── Dp.h │ ├── Dp.inf │ ├── DpInternal.h │ ├── DpProfile.c │ ├── DpStrings.uni │ ├── DpTrace.c │ ├── DpUtilities.c │ ├── Literals.c │ └── Literals.h ├── Include │ ├── Guid │ │ ├── PerformancePkgTokenSpace.h │ │ └── TscFrequency.h │ ├── Ich │ │ └── GenericIch.h │ └── PerformanceTokens.h ├── Library │ └── TscTimerLib │ │ ├── BaseTscTimerLib.c │ │ ├── BaseTscTimerLib.inf │ │ ├── DxeTscTimerLib.c │ │ ├── DxeTscTimerLib.inf │ │ ├── PeiTscTimerLib.c │ │ ├── PeiTscTimerLib.inf │ │ ├── TscTimerLibInternal.h │ │ └── TscTimerLibShare.c ├── License.txt ├── PerformancePkg.dec └── PerformancePkg.dsc ├── README ├── SecurityPkg ├── Application │ └── RngTest │ │ ├── RngTest.c │ │ ├── RngTest.inf │ │ ├── RngTest.uni │ │ └── RngTestExtra.uni ├── Contributions.txt ├── Hash2DxeCrypto │ ├── Driver.c │ ├── Driver.h │ ├── Hash2DxeCrypto.c │ ├── Hash2DxeCrypto.inf │ ├── Hash2DxeCrypto.uni │ └── Hash2DxeCryptoExtra.uni ├── Include │ ├── Guid │ │ ├── AuthenticatedVariableFormat.h │ │ ├── MeasuredFvHob.h │ │ ├── PhysicalPresenceData.h │ │ ├── PwdCredentialProviderHii.h │ │ ├── SecureBootConfigHii.h │ │ ├── SecurityPkgTokenSpace.h │ │ ├── Tcg2ConfigHii.h │ │ ├── Tcg2PhysicalPresenceData.h │ │ ├── TcgConfigHii.h │ │ ├── TcgEventHob.h │ │ ├── TpmInstance.h │ │ ├── TrEEConfigHii.h │ │ ├── TrEEPhysicalPresenceData.h │ │ ├── UsbCredentialProviderHii.h │ │ ├── UserIdentifyManagerHii.h │ │ └── UserProfileManagerHii.h │ ├── Library │ │ ├── HashLib.h │ │ ├── PlatformSecureLib.h │ │ ├── Tcg2PhysicalPresenceLib.h │ │ ├── Tcg2PpVendorLib.h │ │ ├── TcgPhysicalPresenceLib.h │ │ ├── TcgPpVendorLib.h │ │ ├── Tpm12CommandLib.h │ │ ├── Tpm12DeviceLib.h │ │ ├── Tpm2CommandLib.h │ │ ├── Tpm2DeviceLib.h │ │ ├── TpmCommLib.h │ │ ├── TrEEPhysicalPresenceLib.h │ │ └── TrEEPpVendorLib.h │ └── Ppi │ │ ├── FirmwareVolumeInfoMeasurementExcluded.h │ │ ├── LockPhysicalPresence.h │ │ └── TpmInitialized.h ├── Library │ ├── AuthVariableLib │ │ ├── AuthService.c │ │ ├── AuthServiceInternal.h │ │ ├── AuthVariableLib.c │ │ ├── AuthVariableLib.inf │ │ └── AuthVariableLib.uni │ ├── DxeDeferImageLoadLib │ │ ├── DxeDeferImageLoadLib.c │ │ ├── DxeDeferImageLoadLib.h │ │ ├── DxeDeferImageLoadLib.inf │ │ └── DxeDeferImageLoadLib.uni │ ├── DxeImageAuthenticationStatusLib │ │ ├── DxeImageAuthenticationStatusLib.c │ │ ├── DxeImageAuthenticationStatusLib.inf │ │ └── DxeImageAuthenticationStatusLib.uni │ ├── DxeImageVerificationLib │ │ ├── DxeImageVerificationLib.c │ │ ├── DxeImageVerificationLib.h │ │ ├── DxeImageVerificationLib.inf │ │ ├── DxeImageVerificationLib.uni │ │ └── Measurement.c │ ├── DxeRsa2048Sha256GuidedSectionExtractLib │ │ ├── DxeRsa2048Sha256GuidedSectionExtractLib.c │ │ ├── DxeRsa2048Sha256GuidedSectionExtractLib.inf │ │ └── DxeRsa2048Sha256GuidedSectionExtractLib.uni │ ├── DxeTcg2PhysicalPresenceLib │ │ ├── DxeTcg2PhysicalPresenceLib.c │ │ ├── DxeTcg2PhysicalPresenceLib.inf │ │ ├── DxeTcg2PhysicalPresenceLib.uni │ │ └── PhysicalPresenceStrings.uni │ ├── DxeTcgPhysicalPresenceLib │ │ ├── DxeTcgPhysicalPresenceLib.c │ │ ├── DxeTcgPhysicalPresenceLib.inf │ │ ├── DxeTcgPhysicalPresenceLib.uni │ │ └── PhysicalPresenceStrings.uni │ ├── DxeTpm2MeasureBootLib │ │ ├── DxeTpm2MeasureBootLib.c │ │ ├── DxeTpm2MeasureBootLib.inf │ │ └── DxeTpm2MeasureBootLib.uni │ ├── DxeTpmMeasureBootLib │ │ ├── DxeTpmMeasureBootLib.c │ │ ├── DxeTpmMeasureBootLib.inf │ │ └── DxeTpmMeasureBootLib.uni │ ├── DxeTpmMeasurementLib │ │ ├── DxeTpmMeasurementLib.c │ │ ├── DxeTpmMeasurementLib.inf │ │ └── DxeTpmMeasurementLib.uni │ ├── DxeTrEEPhysicalPresenceLib │ │ ├── DxeTrEEPhysicalPresenceLib.c │ │ ├── DxeTrEEPhysicalPresenceLib.inf │ │ ├── DxeTrEEPhysicalPresenceLib.uni │ │ └── PhysicalPresenceStrings.uni │ ├── HashInstanceLibSha1 │ │ ├── HashInstanceLibSha1.c │ │ ├── HashInstanceLibSha1.inf │ │ └── HashInstanceLibSha1.uni │ ├── HashInstanceLibSha256 │ │ ├── HashInstanceLibSha256.c │ │ ├── HashInstanceLibSha256.inf │ │ └── HashInstanceLibSha256.uni │ ├── HashLibBaseCryptoRouter │ │ ├── HashLibBaseCryptoRouterCommon.c │ │ ├── HashLibBaseCryptoRouterCommon.h │ │ ├── HashLibBaseCryptoRouterDxe.c │ │ ├── HashLibBaseCryptoRouterDxe.inf │ │ ├── HashLibBaseCryptoRouterDxe.uni │ │ ├── HashLibBaseCryptoRouterPei.c │ │ ├── HashLibBaseCryptoRouterPei.inf │ │ └── HashLibBaseCryptoRouterPei.uni │ ├── HashLibTpm2 │ │ ├── HashLibTpm2.c │ │ ├── HashLibTpm2.inf │ │ └── HashLibTpm2.uni │ ├── PeiRsa2048Sha256GuidedSectionExtractLib │ │ ├── PeiRsa2048Sha256GuidedSectionExtractLib.c │ │ ├── PeiRsa2048Sha256GuidedSectionExtractLib.inf │ │ └── PeiRsa2048Sha256GuidedSectionExtractLib.uni │ ├── PeiTcg2PhysicalPresenceLib │ │ ├── PeiTcg2PhysicalPresenceLib.c │ │ ├── PeiTcg2PhysicalPresenceLib.inf │ │ └── PeiTcg2PhysicalPresenceLib.uni │ ├── PlatformSecureLibNull │ │ ├── PlatformSecureLibNull.c │ │ ├── PlatformSecureLibNull.inf │ │ └── PlatformSecureLibNull.uni │ ├── SmmTcg2PhysicalPresenceLib │ │ ├── SmmTcg2PhysicalPresenceLib.c │ │ ├── SmmTcg2PhysicalPresenceLib.inf │ │ └── SmmTcg2PhysicalPresenceLib.uni │ ├── Tcg2PpVendorLibNull │ │ ├── Tcg2PpVendorLibNull.c │ │ ├── Tcg2PpVendorLibNull.inf │ │ └── Tcg2PpVendorLibNull.uni │ ├── TcgPpVendorLibNull │ │ ├── TcgPpVendorLibNull.c │ │ ├── TcgPpVendorLibNull.inf │ │ └── TcgPpVendorLibNull.uni │ ├── Tpm12CommandLib │ │ ├── Tpm12CommandLib.inf │ │ ├── Tpm12CommandLib.uni │ │ ├── Tpm12NvStorage.c │ │ ├── Tpm12Ownership.c │ │ └── Tpm12Startup.c │ ├── Tpm12DeviceLibDTpm │ │ ├── Tpm12DeviceLibDTpm.inf │ │ ├── Tpm12DeviceLibDTpm.uni │ │ └── Tpm12Tis.c │ ├── Tpm12DeviceLibTcg │ │ ├── Tpm12DeviceLibTcg.c │ │ ├── Tpm12DeviceLibTcg.inf │ │ └── Tpm12DeviceLibTcg.uni │ ├── Tpm2CommandLib │ │ ├── Tpm2Capability.c │ │ ├── Tpm2CommandLib.inf │ │ ├── Tpm2CommandLib.uni │ │ ├── Tpm2Context.c │ │ ├── Tpm2DictionaryAttack.c │ │ ├── Tpm2EnhancedAuthorization.c │ │ ├── Tpm2Help.c │ │ ├── Tpm2Hierarchy.c │ │ ├── Tpm2Integrity.c │ │ ├── Tpm2Miscellaneous.c │ │ ├── Tpm2NVStorage.c │ │ ├── Tpm2Sequences.c │ │ ├── Tpm2Session.c │ │ ├── Tpm2Startup.c │ │ └── Tpm2Test.c │ ├── Tpm2DeviceLibDTpm │ │ ├── Tpm2DeviceLibDTpm.c │ │ ├── Tpm2DeviceLibDTpm.inf │ │ ├── Tpm2DeviceLibDTpm.uni │ │ ├── Tpm2InstanceLibDTpm.c │ │ ├── Tpm2InstanceLibDTpm.inf │ │ ├── Tpm2InstanceLibDTpm.uni │ │ └── Tpm2Tis.c │ ├── Tpm2DeviceLibRouter │ │ ├── Tpm2DeviceLibRouterDxe.c │ │ ├── Tpm2DeviceLibRouterDxe.inf │ │ ├── Tpm2DeviceLibRouterDxe.uni │ │ ├── Tpm2DeviceLibRouterPei.c │ │ ├── Tpm2DeviceLibRouterPei.inf │ │ └── Tpm2DeviceLibRouterPei.uni │ ├── Tpm2DeviceLibTcg2 │ │ ├── Tpm2DeviceLibTcg2.c │ │ ├── Tpm2DeviceLibTcg2.inf │ │ └── Tpm2DeviceLibTcg2.uni │ ├── Tpm2DeviceLibTrEE │ │ ├── Tpm2DeviceLibTrEE.c │ │ ├── Tpm2DeviceLibTrEE.inf │ │ └── Tpm2DeviceLibTrEE.uni │ ├── TpmCommLib │ │ ├── CommonHeader.h │ │ ├── TisPc.c │ │ ├── TpmComm.c │ │ ├── TpmCommLib.inf │ │ └── TpmCommLib.uni │ └── TrEEPpVendorLibNull │ │ ├── TrEEPpVendorLibNull.c │ │ ├── TrEEPpVendorLibNull.inf │ │ └── TrEEPpVendorLibNull.uni ├── License.txt ├── Pkcs7Verify │ └── Pkcs7VerifyDxe │ │ ├── Pkcs7VerifyDxe.c │ │ ├── Pkcs7VerifyDxe.inf │ │ ├── Pkcs7VerifyDxe.uni │ │ └── Pkcs7VerifyDxeExtra.uni ├── RandomNumberGenerator │ └── RngDxe │ │ ├── AesCore.c │ │ ├── AesCore.h │ │ ├── IA32 │ │ ├── AsmRdRand.asm │ │ ├── GccRdRand.c │ │ └── RdRandWord.c │ │ ├── RdRand.c │ │ ├── RdRand.h │ │ ├── RngDxe.c │ │ ├── RngDxe.inf │ │ ├── RngDxe.uni │ │ ├── RngDxeExtra.uni │ │ └── X64 │ │ ├── AsmRdRand.asm │ │ ├── GccRdRand.c │ │ └── RdRandWord.c ├── SecurityPkg.dec ├── SecurityPkg.dsc ├── SecurityPkg.uni ├── SecurityPkgExtra.uni ├── Tcg │ ├── MemoryOverwriteControl │ │ ├── TcgMor.c │ │ ├── TcgMor.h │ │ ├── TcgMor.inf │ │ ├── TcgMor.uni │ │ └── TcgMorExtra.uni │ ├── MemoryOverwriteRequestControlLock │ │ ├── TcgMorLock.c │ │ ├── TcgMorLock.h │ │ ├── TcgMorLock.uni │ │ ├── TcgMorLockExtra.uni │ │ ├── TcgMorLockSmm.c │ │ └── TcgMorLockSmm.inf │ ├── PhysicalPresencePei │ │ ├── PhysicalPresencePei.c │ │ ├── PhysicalPresencePei.inf │ │ ├── PhysicalPresencePei.uni │ │ └── PhysicalPresencePeiExtra.uni │ ├── Tcg2Config │ │ ├── Tcg2Config.vfr │ │ ├── Tcg2ConfigDriver.c │ │ ├── Tcg2ConfigDxe.inf │ │ ├── Tcg2ConfigDxe.uni │ │ ├── Tcg2ConfigDxeExtra.uni │ │ ├── Tcg2ConfigImpl.c │ │ ├── Tcg2ConfigImpl.h │ │ ├── Tcg2ConfigNvData.h │ │ ├── Tcg2ConfigPei.inf │ │ ├── Tcg2ConfigPei.uni │ │ ├── Tcg2ConfigPeiExtra.uni │ │ ├── Tcg2ConfigPeim.c │ │ ├── Tcg2ConfigStrings.uni │ │ └── TpmDetection.c │ ├── Tcg2Dxe │ │ ├── MeasureBootPeCoff.c │ │ ├── Tcg2Dxe.c │ │ ├── Tcg2Dxe.inf │ │ ├── Tcg2Dxe.uni │ │ └── Tcg2DxeExtra.uni │ ├── Tcg2Pei │ │ ├── Tcg2Pei.c │ │ ├── Tcg2Pei.inf │ │ ├── Tcg2Pei.uni │ │ └── Tcg2PeiExtra.uni │ ├── Tcg2Smm │ │ ├── Tcg2Smm.c │ │ ├── Tcg2Smm.h │ │ ├── Tcg2Smm.inf │ │ ├── Tcg2Smm.uni │ │ ├── Tcg2SmmExtra.uni │ │ └── Tpm.asl │ ├── TcgConfigDxe │ │ ├── TcgConfig.vfr │ │ ├── TcgConfigDriver.c │ │ ├── TcgConfigDxe.inf │ │ ├── TcgConfigDxe.uni │ │ ├── TcgConfigDxeExtra.uni │ │ ├── TcgConfigImpl.c │ │ ├── TcgConfigImpl.h │ │ ├── TcgConfigNvData.h │ │ └── TcgConfigStrings.uni │ ├── TcgDxe │ │ ├── TcgDxe.c │ │ ├── TcgDxe.inf │ │ ├── TcgDxe.uni │ │ ├── TcgDxeExtra.uni │ │ ├── TisDxe.c │ │ ├── TpmComm.c │ │ └── TpmComm.h │ ├── TcgPei │ │ ├── TcgPei.c │ │ ├── TcgPei.inf │ │ ├── TcgPei.uni │ │ ├── TcgPeiExtra.uni │ │ ├── TisPei.c │ │ ├── TpmComm.c │ │ └── TpmComm.h │ ├── TcgSmm │ │ ├── TcgSmm.c │ │ ├── TcgSmm.h │ │ ├── TcgSmm.inf │ │ ├── TcgSmm.uni │ │ ├── TcgSmmExtra.uni │ │ └── Tpm.asl │ ├── TrEEConfig │ │ ├── TpmDetection.c │ │ ├── TrEEConfig.vfr │ │ ├── TrEEConfigDriver.c │ │ ├── TrEEConfigDxe.inf │ │ ├── TrEEConfigDxe.uni │ │ ├── TrEEConfigDxeExtra.uni │ │ ├── TrEEConfigImpl.c │ │ ├── TrEEConfigImpl.h │ │ ├── TrEEConfigNvData.h │ │ ├── TrEEConfigPei.inf │ │ ├── TrEEConfigPei.uni │ │ ├── TrEEConfigPeiExtra.uni │ │ ├── TrEEConfigPeim.c │ │ └── TrEEConfigStrings.uni │ ├── TrEEDxe │ │ ├── MeasureBootPeCoff.c │ │ ├── TrEEDxe.c │ │ ├── TrEEDxe.inf │ │ ├── TrEEDxe.uni │ │ └── TrEEDxeExtra.uni │ ├── TrEEPei │ │ ├── TrEEPei.c │ │ ├── TrEEPei.inf │ │ ├── TrEEPei.uni │ │ └── TrEEPeiExtra.uni │ └── TrEESmm │ │ ├── Tpm.asl │ │ ├── TrEESmm.c │ │ ├── TrEESmm.h │ │ ├── TrEESmm.inf │ │ ├── TrEESmm.uni │ │ └── TrEESmmExtra.uni ├── UserIdentification │ ├── PwdCredentialProviderDxe │ │ ├── PwdCredentialProvider.c │ │ ├── PwdCredentialProvider.h │ │ ├── PwdCredentialProvider.uni │ │ ├── PwdCredentialProviderData.h │ │ ├── PwdCredentialProviderDxe.inf │ │ ├── PwdCredentialProviderExtra.uni │ │ ├── PwdCredentialProviderStrings.uni │ │ └── PwdCredentialProviderVfr.Vfr │ ├── UsbCredentialProviderDxe │ │ ├── UsbCredentialProvider.c │ │ ├── UsbCredentialProvider.h │ │ ├── UsbCredentialProvider.uni │ │ ├── UsbCredentialProviderDxe.inf │ │ ├── UsbCredentialProviderExtra.uni │ │ └── UsbCredentialProviderStrings.uni │ ├── UserIdentifyManagerDxe │ │ ├── LoadDeferredImage.c │ │ ├── UserIdentifyManager.c │ │ ├── UserIdentifyManager.h │ │ ├── UserIdentifyManager.uni │ │ ├── UserIdentifyManagerData.h │ │ ├── UserIdentifyManagerDxe.inf │ │ ├── UserIdentifyManagerExtra.uni │ │ ├── UserIdentifyManagerStrings.uni │ │ └── UserIdentifyManagerVfr.Vfr │ └── UserProfileManagerDxe │ │ ├── ModifyAccessPolicy.c │ │ ├── ModifyIdentityPolicy.c │ │ ├── UserProfileAdd.c │ │ ├── UserProfileDelete.c │ │ ├── UserProfileManager.c │ │ ├── UserProfileManager.h │ │ ├── UserProfileManager.uni │ │ ├── UserProfileManagerData.h │ │ ├── UserProfileManagerDxe.inf │ │ ├── UserProfileManagerExtra.uni │ │ ├── UserProfileManagerStrings.uni │ │ ├── UserProfileManagerVfr.Vfr │ │ └── UserProfileModify.c └── VariableAuthenticated │ ├── EsalVariableDxeSal │ ├── AuthService.c │ ├── AuthService.h │ ├── EsalVariableDxeSal.inf │ ├── EsalVariableDxeSal.uni │ ├── EsalVariableDxeSalExtra.uni │ ├── InitVariable.c │ ├── Reclaim.c │ ├── Variable.c │ └── Variable.h │ └── SecureBootConfigDxe │ ├── SecureBootConfig.vfr │ ├── SecureBootConfigDevicePath.c │ ├── SecureBootConfigDriver.c │ ├── SecureBootConfigDxe.inf │ ├── SecureBootConfigDxe.uni │ ├── SecureBootConfigDxeExtra.uni │ ├── SecureBootConfigFileExplorer.c │ ├── SecureBootConfigImpl.c │ ├── SecureBootConfigImpl.h │ ├── SecureBootConfigMisc.c │ ├── SecureBootConfigNvData.h │ └── SecureBootConfigStrings.uni ├── ShellBinPkg ├── Contributions.txt ├── License.txt ├── MinUefiShell │ ├── AArch64 │ │ └── Shell.efi │ ├── Arm │ │ └── Shell.efi │ ├── Ia32 │ │ ├── Shell.efi │ │ └── profiles.txt │ ├── MinUefiShell.inf │ └── X64 │ │ ├── Shell.efi │ │ └── profiles.txt ├── ReadMe.txt ├── ShellBinPkg.dec └── UefiShell │ ├── AArch64 │ └── Shell.efi │ ├── Arm │ └── Shell.efi │ ├── Ia32 │ ├── Shell.efi │ └── profiles.txt │ ├── UefiShell.inf │ └── X64 │ ├── Shell.efi │ └── profiles.txt ├── ShellPkg ├── Application │ ├── Shell │ │ ├── ConsoleLogger.c │ │ ├── ConsoleLogger.h │ │ ├── ConsoleWrappers.c │ │ ├── ConsoleWrappers.h │ │ ├── FileHandleInternal.h │ │ ├── FileHandleWrappers.c │ │ ├── FileHandleWrappers.h │ │ ├── Shell.c │ │ ├── Shell.h │ │ ├── Shell.inf │ │ ├── Shell.uni │ │ ├── ShellEnvVar.c │ │ ├── ShellEnvVar.h │ │ ├── ShellManParser.c │ │ ├── ShellManParser.h │ │ ├── ShellParametersProtocol.c │ │ ├── ShellParametersProtocol.h │ │ ├── ShellProtocol.c │ │ └── ShellProtocol.h │ ├── ShellCTestApp │ │ ├── README.txt │ │ ├── ShellCTestApp.c │ │ ├── ShellCTestApp.inf │ │ ├── TestArgv.log │ │ └── TestArgv.nsh │ ├── ShellExecTestApp │ │ ├── SA.c │ │ └── SA.inf │ └── ShellSortTestApp │ │ ├── ShellSortTestApp.c │ │ └── ShellSortTestApp.inf ├── Contributions.txt ├── Include │ ├── Guid │ │ ├── ShellAliasGuid.h │ │ ├── ShellEnvironment2Ext.h │ │ ├── ShellLibHiiGuid.h │ │ ├── ShellMapGuid.h │ │ ├── ShellPkgTokenSpace.h │ │ └── ShellVariableGuid.h │ ├── Library │ │ ├── BcfgCommandLib.h │ │ ├── HandleParsingLib.h │ │ ├── ShellCEntryLib.h │ │ ├── ShellCommandLib.h │ │ └── ShellLib.h │ ├── Protocol │ │ ├── EfiShell.h │ │ ├── EfiShellDynamicCommand.h │ │ ├── EfiShellEnvironment2.h │ │ ├── EfiShellInterface.h │ │ └── EfiShellParameters.h │ └── ShellBase.h ├── Library │ ├── UefiDpLib │ │ ├── Dp.c │ │ ├── Dp.h │ │ ├── DpInternal.h │ │ ├── DpProfile.c │ │ ├── DpTrace.c │ │ ├── DpUtilities.c │ │ ├── Literals.c │ │ ├── Literals.h │ │ ├── PerformanceTokens.h │ │ ├── Readme.txt │ │ ├── UefiDpLib.c │ │ ├── UefiDpLib.h │ │ ├── UefiDpLib.inf │ │ └── UefiDpLib.uni │ ├── UefiHandleParsingLib │ │ ├── UefiHandleParsingLib.c │ │ ├── UefiHandleParsingLib.h │ │ ├── UefiHandleParsingLib.inf │ │ └── UefiHandleParsingLib.uni │ ├── UefiShellBcfgCommandLib │ │ ├── UefiShellBcfgCommandLib.c │ │ ├── UefiShellBcfgCommandLib.inf │ │ └── UefiShellBcfgCommandLib.uni │ ├── UefiShellCEntryLib │ │ ├── UefiShellCEntryLib.c │ │ └── UefiShellCEntryLib.inf │ ├── UefiShellCommandLib │ │ ├── ConsistMapping.c │ │ ├── UefiShellCommandLib.c │ │ ├── UefiShellCommandLib.h │ │ └── UefiShellCommandLib.inf │ ├── UefiShellDebug1CommandsLib │ │ ├── Comp.c │ │ ├── Compress.c │ │ ├── Compress.h │ │ ├── Dblk.c │ │ ├── Dmem.c │ │ ├── DmpStore.c │ │ ├── Edit │ │ │ ├── Edit.c │ │ │ ├── FileBuffer.c │ │ │ ├── FileBuffer.h │ │ │ ├── MainTextEditor.c │ │ │ ├── MainTextEditor.h │ │ │ ├── Misc.c │ │ │ ├── Misc.h │ │ │ ├── TextEditStrings.uni │ │ │ ├── TextEditor.h │ │ │ └── TextEditorTypes.h │ │ ├── EditInputBar.c │ │ ├── EditInputBar.h │ │ ├── EditMenuBar.c │ │ ├── EditMenuBar.h │ │ ├── EditStatusBar.c │ │ ├── EditStatusBar.h │ │ ├── EditTitleBar.c │ │ ├── EditTitleBar.h │ │ ├── EfiCompress.c │ │ ├── EfiDecompress.c │ │ ├── HexEdit │ │ │ ├── BufferImage.c │ │ │ ├── BufferImage.h │ │ │ ├── Clipboard.c │ │ │ ├── Clipboard.h │ │ │ ├── DiskImage.c │ │ │ ├── DiskImage.h │ │ │ ├── FileImage.c │ │ │ ├── FileImage.h │ │ │ ├── HexEdit.c │ │ │ ├── HexEditor.h │ │ │ ├── HexEditorTypes.h │ │ │ ├── HexeditStrings.uni │ │ │ ├── MainHexEditor.c │ │ │ ├── MainHexEditor.h │ │ │ ├── MemImage.c │ │ │ ├── MemImage.h │ │ │ ├── Misc.c │ │ │ └── Misc.h │ │ ├── LoadPciRom.c │ │ ├── MemMap.c │ │ ├── Mm.c │ │ ├── Mode.c │ │ ├── Pci.c │ │ ├── Pci.h │ │ ├── SerMode.c │ │ ├── SetSize.c │ │ ├── SetVar.c │ │ ├── SmbiosView │ │ │ ├── EventLogInfo.c │ │ │ ├── EventLogInfo.h │ │ │ ├── LibSmbiosView.c │ │ │ ├── LibSmbiosView.h │ │ │ ├── PrintInfo.c │ │ │ ├── PrintInfo.h │ │ │ ├── QueryTable.c │ │ │ ├── QueryTable.h │ │ │ ├── SmbiosView.c │ │ │ ├── SmbiosView.h │ │ │ └── SmbiosViewStrings.uni │ │ ├── UefiShellDebug1CommandsLib.c │ │ ├── UefiShellDebug1CommandsLib.h │ │ ├── UefiShellDebug1CommandsLib.inf │ │ └── UefiShellDebug1CommandsLib.uni │ ├── UefiShellDriver1CommandsLib │ │ ├── Connect.c │ │ ├── DevTree.c │ │ ├── Devices.c │ │ ├── Dh.c │ │ ├── Disconnect.c │ │ ├── Drivers.c │ │ ├── DrvCfg.c │ │ ├── DrvDiag.c │ │ ├── OpenInfo.c │ │ ├── Reconnect.c │ │ ├── UefiShellDriver1CommandsLib.c │ │ ├── UefiShellDriver1CommandsLib.h │ │ ├── UefiShellDriver1CommandsLib.inf │ │ ├── UefiShellDriver1CommandsLib.uni │ │ └── Unload.c │ ├── UefiShellInstall1CommandsLib │ │ ├── UefiShellInstall1CommandsLib.c │ │ └── UefiShellInstall1CommandsLib.inf │ ├── UefiShellLevel1CommandsLib │ │ ├── Exit.c │ │ ├── For.c │ │ ├── Goto.c │ │ ├── If.c │ │ ├── Shift.c │ │ ├── Stall.c │ │ ├── UefiShellLevel1CommandsLib.c │ │ ├── UefiShellLevel1CommandsLib.h │ │ ├── UefiShellLevel1CommandsLib.inf │ │ └── UefiShellLevel1CommandsLib.uni │ ├── UefiShellLevel2CommandsLib │ │ ├── Attrib.c │ │ ├── Cd.c │ │ ├── Cp.c │ │ ├── Load.c │ │ ├── Ls.c │ │ ├── Map.c │ │ ├── MkDir.c │ │ ├── Mv.c │ │ ├── Parse.c │ │ ├── Reset.c │ │ ├── Rm.c │ │ ├── Set.c │ │ ├── TimeDate.c │ │ ├── UefiShellLevel2CommandsLib.c │ │ ├── UefiShellLevel2CommandsLib.h │ │ ├── UefiShellLevel2CommandsLib.inf │ │ ├── UefiShellLevel2CommandsLib.uni │ │ └── Vol.c │ ├── UefiShellLevel3CommandsLib │ │ ├── Alias.c │ │ ├── Cls.c │ │ ├── Echo.c │ │ ├── GetMtc.c │ │ ├── Help.c │ │ ├── Pause.c │ │ ├── Touch.c │ │ ├── Type.c │ │ ├── UefiShellLevel3CommandsLib.c │ │ ├── UefiShellLevel3CommandsLib.h │ │ ├── UefiShellLevel3CommandsLib.inf │ │ ├── UefiShellLevel3CommandsLib.uni │ │ └── Ver.c │ ├── UefiShellLib │ │ ├── UefiShellLib.c │ │ ├── UefiShellLib.h │ │ └── UefiShellLib.inf │ ├── UefiShellNetwork1CommandsLib │ │ ├── Ifconfig.c │ │ ├── Ping.c │ │ ├── UefiShellNetwork1CommandsLib.c │ │ ├── UefiShellNetwork1CommandsLib.h │ │ ├── UefiShellNetwork1CommandsLib.inf │ │ └── UefiShellNetwork1CommandsLib.uni │ └── UefiShellTftpCommandLib │ │ ├── Tftp.c │ │ ├── UefiShellTftpCommandLib.c │ │ ├── UefiShellTftpCommandLib.h │ │ ├── UefiShellTftpCommandLib.inf │ │ └── UefiShellTftpCommandLib.uni ├── License.txt ├── Readme.txt ├── ShellPkg.dec └── ShellPkg.dsc ├── SourceLevelDebugPkg ├── Contributions.txt ├── DebugAgentDxe │ ├── DebugAgentDxe.c │ ├── DebugAgentDxe.inf │ ├── DebugAgentDxe.uni │ └── DebugAgentDxeExtra.uni ├── DebugAgentPei │ ├── DebugAgentPei.c │ ├── DebugAgentPei.inf │ ├── DebugAgentPei.uni │ └── DebugAgentPeiExtra.uni ├── Include │ ├── Guid │ │ └── DebugAgentGuid.h │ ├── Ia32 │ │ └── ProcessorContext.h │ ├── ImageDebugSupport.h │ ├── Library │ │ └── DebugCommunicationLib.h │ └── TransferProtocol.h ├── Library │ ├── DebugAgent │ │ ├── DebugAgentCommon │ │ │ ├── DebugAgent.c │ │ │ ├── DebugAgent.h │ │ │ ├── DebugMp.c │ │ │ ├── DebugMp.h │ │ │ ├── DebugTimer.c │ │ │ ├── DebugTimer.h │ │ │ ├── Ia32 │ │ │ │ ├── ArchDebugSupport.c │ │ │ │ ├── ArchDebugSupport.h │ │ │ │ ├── AsmFuncs.S │ │ │ │ ├── AsmFuncs.asm │ │ │ │ └── DebugException.h │ │ │ └── X64 │ │ │ │ ├── ArchDebugSupport.c │ │ │ │ ├── ArchDebugSupport.h │ │ │ │ ├── AsmFuncs.S │ │ │ │ ├── AsmFuncs.asm │ │ │ │ └── DebugException.h │ │ ├── DxeDebugAgent │ │ │ ├── DxeDebugAgentLib.c │ │ │ ├── DxeDebugAgentLib.h │ │ │ └── SerialIo.c │ │ ├── DxeDebugAgentLib.inf │ │ ├── DxeDebugAgentLib.uni │ │ ├── SecPeiDebugAgent │ │ │ ├── SecPeiDebugAgentLib.c │ │ │ └── SecPeiDebugAgentLib.h │ │ ├── SecPeiDebugAgentLib.inf │ │ ├── SecPeiDebugAgentLib.uni │ │ ├── SmmDebugAgent │ │ │ ├── SmmDebugAgentLib.c │ │ │ └── SmmDebugAgentLib.h │ │ ├── SmmDebugAgentLib.inf │ │ └── SmmDebugAgentLib.uni │ ├── DebugCommunicationLibSerialPort │ │ ├── DebugCommunicationLibSerialPort.c │ │ ├── DebugCommunicationLibSerialPort.inf │ │ └── DebugCommunicationLibSerialPort.uni │ ├── DebugCommunicationLibUsb │ │ ├── DebugCommunicationLibUsb.c │ │ ├── DebugCommunicationLibUsb.inf │ │ └── DebugCommunicationLibUsb.uni │ ├── DebugCommunicationLibUsb3 │ │ ├── DebugCommunicationLibUsb3Common.c │ │ ├── DebugCommunicationLibUsb3Dxe.c │ │ ├── DebugCommunicationLibUsb3Dxe.inf │ │ ├── DebugCommunicationLibUsb3Dxe.uni │ │ ├── DebugCommunicationLibUsb3Internal.h │ │ ├── DebugCommunicationLibUsb3Pei.c │ │ ├── DebugCommunicationLibUsb3Pei.inf │ │ ├── DebugCommunicationLibUsb3Pei.uni │ │ └── DebugCommunicationLibUsb3Transfer.c │ └── PeCoffExtraActionLibDebug │ │ ├── Ia32 │ │ ├── IntHandler.S │ │ ├── IntHandler.asm │ │ └── IntHandlerFuncs.c │ │ ├── PeCoffExtraActionLib.c │ │ ├── PeCoffExtraActionLib.h │ │ ├── PeCoffExtraActionLib.uni │ │ ├── PeCoffExtraActionLibDebug.inf │ │ └── X64 │ │ ├── IntHandler.S │ │ ├── IntHandler.asm │ │ └── IntHandlerFuncs.c ├── License.txt ├── Readme.txt ├── SourceLevelDebugPkg.dec ├── SourceLevelDebugPkg.dsc ├── SourceLevelDebugPkg.uni └── SourceLevelDebugPkgExtra.uni ├── StdLib ├── BsdSocketLib │ ├── BsdSocketLib.inf │ ├── Ip6Addr_Any.c │ ├── Ip6Addr_LinkLocal_AllNodes.c │ ├── Ip6Addr_LinkLocal_AllRouters.c │ ├── Ip6Addr_Loopback.c │ ├── Ip6Addr_NodeLocal_AllNodes.c │ ├── SocketInternals.h │ ├── Socklib_internals.h │ ├── accept.c │ ├── base64.c │ ├── bind.c │ ├── close.c │ ├── connect.c │ ├── errno.c │ ├── getaddrinfo.c │ ├── gethostbydns.c │ ├── gethostbyht.c │ ├── gethostbynis.c │ ├── gethostnamadr.c │ ├── gethostname.c │ ├── getnameinfo.c │ ├── getnetbydns.c │ ├── getnetbyht.c │ ├── getnetbynis.c │ ├── getnetnamadr.c │ ├── getpeername.c │ ├── getproto.c │ ├── getprotoent.c │ ├── getprotoname.c │ ├── getservbyname.c │ ├── getservbyport.c │ ├── getservent.c │ ├── getsockname.c │ ├── getsockopt.c │ ├── herror.c │ ├── inet_net_ntop.c │ ├── inet_net_pton.c │ ├── inet_neta.c │ ├── inet_pton.c │ ├── listen.c │ ├── map_v4v6.c │ ├── ns_addr.c │ ├── ns_name.c │ ├── ns_netint.c │ ├── ns_ntoa.c │ ├── ns_parse.c │ ├── ns_print.c │ ├── ns_ttl.c │ ├── nsap_addr.c │ ├── poll.c │ ├── read.c │ ├── recv.c │ ├── recvfrom.c │ ├── res_comp.c │ ├── res_config.h │ ├── res_data.c │ ├── res_debug.c │ ├── res_init.c │ ├── res_mkquery.c │ ├── res_mkupdate.c │ ├── res_query.c │ ├── res_send.c │ ├── res_update.c │ ├── send.c │ ├── sendto.c │ ├── sethostname.c │ ├── setsockopt.c │ ├── shutdown.c │ ├── socket.c │ └── write.c ├── Contributions.txt ├── Efi │ └── StdLib │ │ └── etc │ │ ├── host.conf │ │ ├── hosts │ │ ├── networks │ │ ├── protocols │ │ ├── resolv.conf │ │ └── services ├── EfiSocketLib │ ├── DxeSupport.c │ ├── EfiSocketLib.inf │ ├── Init.c │ ├── Ip4.c │ ├── ReleaseNotes.txt │ ├── Service.c │ ├── Socket.c │ ├── Socket.h │ ├── Tcp4.c │ ├── Tcp6.c │ ├── Udp4.c │ ├── Udp6.c │ └── UseEfiSocketLib.c ├── Fixes.txt ├── ISSUES.txt ├── Include │ ├── Aarch64 │ │ ├── arm-gcc.h │ │ ├── machine │ │ │ ├── ansi.h │ │ │ ├── bswap.h │ │ │ ├── byte_swap.h │ │ │ ├── endian.h │ │ │ ├── endian_machdep.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── ieee.h │ │ │ ├── ieeefp.h │ │ │ ├── int_const.h │ │ │ ├── int_limits.h │ │ │ ├── int_mwgwtypes.h │ │ │ ├── int_types.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── milieu.h │ │ └── softfloat.h │ ├── Arm │ │ ├── arm-gcc.h │ │ ├── machine │ │ │ ├── _math.h │ │ │ ├── ansi.h │ │ │ ├── asm.h │ │ │ ├── atomic.h │ │ │ ├── bswap.h │ │ │ ├── byte_swap.h │ │ │ ├── cpufunc.h │ │ │ ├── endian.h │ │ │ ├── endian_machdep.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── frame.h │ │ │ ├── ieee.h │ │ │ ├── ieeefp.h │ │ │ ├── int_const.h │ │ │ ├── int_limits.h │ │ │ ├── int_mwgwtypes.h │ │ │ ├── int_types.h │ │ │ ├── limits.h │ │ │ ├── lock.h │ │ │ ├── math.h │ │ │ ├── mcontext.h │ │ │ ├── param.h │ │ │ ├── proc.h │ │ │ ├── signal.h │ │ │ └── types.h │ │ ├── milieu.h │ │ └── softfloat.h │ ├── Containers │ │ ├── Fifo.h │ │ └── ModuloUtil.h │ ├── Efi │ │ └── EfiSocketLib.h │ ├── Ia32 │ │ └── machine │ │ │ ├── _math.h │ │ │ ├── ansi.h │ │ │ ├── asm.h │ │ │ ├── bswap.h │ │ │ ├── byte_swap.h │ │ │ ├── endian.h │ │ │ ├── endian_machdep.h │ │ │ ├── float.h │ │ │ ├── ieee.h │ │ │ ├── int_const.h │ │ │ ├── int_limits.h │ │ │ ├── int_mwgwtypes.h │ │ │ ├── int_types.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ ├── Ipf │ │ └── machine │ │ │ ├── _regset.h │ │ │ ├── acpi_func.h │ │ │ ├── acpi_machdep.h │ │ │ ├── acpica_machdep.h │ │ │ ├── ansi.h │ │ │ ├── aout_machdep.h │ │ │ ├── asm.h │ │ │ ├── bootinfo.h │ │ │ ├── bswap.h │ │ │ ├── cdefs.h │ │ │ ├── cpu.h │ │ │ ├── cpu_counter.h │ │ │ ├── db_machdep.h │ │ │ ├── dig64.h │ │ │ ├── disklabel.h │ │ │ ├── efi.h │ │ │ ├── elf_machdep.h │ │ │ ├── endian.h │ │ │ ├── endian_machdep.h │ │ │ ├── float.h │ │ │ ├── ia64_cpu.h │ │ │ ├── ieee.h │ │ │ ├── ieeefp.h │ │ │ ├── int_const.h │ │ │ ├── int_fmtio.h │ │ │ ├── int_limits.h │ │ │ ├── int_mwgwtypes.h │ │ │ ├── int_types.h │ │ │ ├── intr.h │ │ │ ├── intrcnt.h │ │ │ ├── limits.h │ │ │ ├── loadfile_machdep.h │ │ │ ├── math.h │ │ │ ├── mca_machdep.h │ │ │ ├── md_var.h │ │ │ ├── pal.h │ │ │ ├── param.h │ │ │ ├── pcb.h │ │ │ ├── pmap.h │ │ │ ├── pte.h │ │ │ ├── ptrace.h │ │ │ ├── reg.h │ │ │ ├── sal.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── smp.h │ │ │ ├── ssc.h │ │ │ ├── stdarg.h │ │ │ ├── types.h │ │ │ ├── varargs.h │ │ │ ├── vmparam.h │ │ │ └── wchar_limits.h │ ├── Lua │ │ ├── lauxlib.h │ │ ├── lua.h │ │ ├── luaconf.h │ │ └── lualib.h │ ├── Protocol │ │ └── EfiSocket.h │ ├── X64 │ │ └── machine │ │ │ ├── ansi.h │ │ │ ├── asm.h │ │ │ ├── atomic.h │ │ │ ├── bswap.h │ │ │ ├── byte_swap.h │ │ │ ├── endian.h │ │ │ ├── endian_machdep.h │ │ │ ├── float.h │ │ │ ├── fpu.h │ │ │ ├── ieee.h │ │ │ ├── int_const.h │ │ │ ├── int_fmtio.h │ │ │ ├── int_limits.h │ │ │ ├── int_mwgwtypes.h │ │ │ ├── int_types.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ └── types.h │ ├── arpa │ │ ├── ftp.h │ │ ├── inet.h │ │ ├── nameser.h │ │ ├── nameser_compat.h │ │ └── telnet.h │ ├── assert.h │ ├── ctype.h │ ├── dirent.h │ ├── err.h │ ├── errno.h │ ├── fcntl.h │ ├── float.h │ ├── glob.h │ ├── ieeefp.h │ ├── inttypes.h │ ├── iso646.h │ ├── langinfo.h │ ├── libgen.h │ ├── limits.h │ ├── locale.h │ ├── math.h │ ├── net │ │ ├── if.h │ │ ├── if_dl.h │ │ ├── radix.h │ │ ├── route.h │ │ └── servent.h │ ├── netatalk │ │ └── at.h │ ├── netdb.h │ ├── netinet │ │ ├── in.h │ │ ├── in_systm.h │ │ ├── ip.h │ │ └── tcp.h │ ├── netinet6 │ │ └── in6.h │ ├── netns │ │ └── ns.h │ ├── nl_types.h │ ├── nsswitch.h │ ├── paths.h │ ├── pwd.h │ ├── resolv.h │ ├── setjmp.h │ ├── signal.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── stringlist.h │ ├── strings.h │ ├── sys │ │ ├── EfiCdefs.h │ │ ├── EfiSysCall.h │ │ ├── _ctype.h │ │ ├── _posix.h │ │ ├── ansi.h │ │ ├── bswap.h │ │ ├── callout.h │ │ ├── cdefs.h │ │ ├── cdefs_aout.h │ │ ├── dirent.h │ │ ├── endian.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── fd_set.h │ │ ├── featuretest.h │ │ ├── file.h │ │ ├── filio.h │ │ ├── float_ieee754.h │ │ ├── ieee754.h │ │ ├── inttypes.h │ │ ├── ioccom.h │ │ ├── ioctl.h │ │ ├── localedef.h │ │ ├── param.h │ │ ├── poll.h │ │ ├── pool.h │ │ ├── resource.h │ │ ├── select.h │ │ ├── signal.h │ │ ├── sigtypes.h │ │ ├── socket.h │ │ ├── sockio.h │ │ ├── stat.h │ │ ├── stdint.h │ │ ├── sysctl.h │ │ ├── syslimits.h │ │ ├── termios.h │ │ ├── time.h │ │ ├── types.h │ │ ├── uio.h │ │ ├── unistd.h │ │ └── wait.h │ ├── sysexits.h │ ├── time.h │ ├── unistd.h │ ├── utime.h │ ├── wchar.h │ ├── wctype.h │ └── x86 │ │ ├── float.h │ │ ├── ieee.h │ │ ├── limits.h │ │ └── math.h ├── LibC │ ├── CRT │ │ ├── Gcc.c │ │ └── Ia32 │ │ │ ├── ashrdi3.S │ │ │ ├── lldiv.c │ │ │ ├── lldvrm.c │ │ │ ├── llmul.c │ │ │ ├── llrem.c │ │ │ ├── llshl.c │ │ │ ├── llshr.c │ │ │ ├── mulll.S │ │ │ ├── shldi3.S │ │ │ ├── udivdi3.S │ │ │ ├── ulldiv.c │ │ │ ├── ulldvrm.c │ │ │ ├── ullrem.c │ │ │ ├── ullshr.c │ │ │ └── umoddi3.S │ ├── Containers │ │ ├── Common │ │ │ └── ModuloUtil.c │ │ ├── ContainerLib.inf │ │ └── Queues │ │ │ └── Fifo.c │ ├── Ctype │ │ ├── CClass.c │ │ ├── CConv.c │ │ ├── Ctype.inf │ │ └── iCtype.c │ ├── LibC.inf │ ├── Locale │ │ ├── Locale.inf │ │ ├── __mb_cur_max.c │ │ ├── __wctoint.h │ │ ├── _def_messages.c │ │ ├── _def_monetary.c │ │ ├── _def_numeric.c │ │ ├── _def_time.c │ │ ├── _wcstod.h │ │ ├── _wcstol.h │ │ ├── _wcstoul.h │ │ ├── aliasname.c │ │ ├── aliasname_local.h │ │ ├── ctypeio.c │ │ ├── ctypeio.h │ │ ├── iswctype_sb.c │ │ ├── localeconv.c │ │ ├── multibyte_Utf8.c │ │ ├── multibyte_sb.c │ │ ├── nl_langinfo.c │ │ ├── rune.h │ │ ├── runetype.h │ │ ├── setlocale.c │ │ ├── setlocale1.c │ │ ├── setlocale32.c │ │ ├── wcscoll.c │ │ ├── wcsftime.c │ │ ├── wcstod.c │ │ ├── wcstof.c │ │ ├── wcstoimax.c │ │ ├── wcstol.c │ │ ├── wcstold.c │ │ ├── wcstoll.c │ │ ├── wcstoul.c │ │ ├── wcstoull.c │ │ ├── wcstoumax.c │ │ └── wcsxfrm.c │ ├── Main │ │ ├── Arm │ │ │ ├── fixunsdfsi.c │ │ │ ├── floatunsidf.c │ │ │ ├── flt_rounds.c │ │ │ ├── fp_lib.h │ │ │ ├── int_endianness.h │ │ │ ├── int_lib.h │ │ │ ├── int_types.h │ │ │ └── int_util.h │ │ ├── ByteSwap.c │ │ ├── HtoNtoH.c │ │ ├── Ia32 │ │ │ ├── fpu_rmode.S │ │ │ ├── fpu_rmode.asm │ │ │ ├── ftol2.obj │ │ │ ├── isinfl.c │ │ │ └── isnanl.c │ │ ├── Ipf │ │ │ ├── FpuRmode.s │ │ │ └── flt_rounds.c │ │ ├── Main.c │ │ ├── X64 │ │ │ ├── fpu_rmode.S │ │ │ ├── fpu_rmode.asm │ │ │ ├── isinfl.c │ │ │ └── isnanl.c │ │ ├── assert.c │ │ ├── bswap16.c │ │ ├── bswap32.c │ │ ├── bswap64.c │ │ ├── errno.c │ │ ├── infinityf_ieee754.c │ │ ├── isinfd_ieee754.c │ │ ├── isinff_ieee754.c │ │ ├── isnand_ieee754.c │ │ ├── isnanf_ieee754.c │ │ ├── longjmp.c │ │ └── x86flt_rounds.c │ ├── Math │ │ ├── Math.inf │ │ ├── e_acos.c │ │ ├── e_asin.c │ │ ├── e_atan2.c │ │ ├── e_cosh.c │ │ ├── e_exp.c │ │ ├── e_fmod.c │ │ ├── e_log.c │ │ ├── e_log10.c │ │ ├── e_log2.c │ │ ├── e_pow.c │ │ ├── e_rem_pio2.c │ │ ├── e_sinh.c │ │ ├── e_sqrt.c │ │ ├── k_cos.c │ │ ├── k_rem_pio2.c │ │ ├── k_sin.c │ │ ├── k_tan.c │ │ ├── math_private.h │ │ ├── s_atan.c │ │ ├── s_ceil.c │ │ ├── s_copysign.c │ │ ├── s_cos.c │ │ ├── s_expm1.c │ │ ├── s_fabs.c │ │ ├── s_finite.c │ │ ├── s_floor.c │ │ ├── s_frexp.c │ │ ├── s_infinity.c │ │ ├── s_ldexp.c │ │ ├── s_modf.c │ │ ├── s_scalbn.c │ │ ├── s_sin.c │ │ ├── s_tan.c │ │ ├── s_tanh.c │ │ ├── w_acos.c │ │ ├── w_asin.c │ │ ├── w_atan2.c │ │ ├── w_cosh.c │ │ ├── w_exp.c │ │ ├── w_fmod.c │ │ ├── w_log.c │ │ ├── w_log10.c │ │ ├── w_log2.c │ │ ├── w_pow.c │ │ ├── w_sinh.c │ │ └── w_sqrt.c │ ├── NetUtil │ │ ├── NetUtil.inf │ │ ├── inet_addr.c │ │ ├── inet_lnaof.c │ │ ├── inet_makeaddr.c │ │ ├── inet_netof.c │ │ ├── inet_network.c │ │ ├── inet_ntoa.c │ │ └── inet_ntop.c │ ├── Signal │ │ ├── Signal.c │ │ └── Signal.inf │ ├── Softfloat │ │ ├── Arm │ │ │ ├── __aeabi_dcmpeq.c │ │ │ ├── __aeabi_dcmpge.c │ │ │ ├── __aeabi_dcmpgt.c │ │ │ ├── __aeabi_dcmple.c │ │ │ ├── __aeabi_dcmplt.c │ │ │ ├── __aeabi_dcmpun.c │ │ │ ├── __aeabi_fcmpeq.c │ │ │ ├── __aeabi_fcmpge.c │ │ │ ├── __aeabi_fcmpgt.c │ │ │ ├── __aeabi_fcmple.c │ │ │ ├── __aeabi_fcmplt.c │ │ │ └── __aeabi_fcmpun.c │ │ ├── Makefile.inc │ │ ├── README.NetBSD │ │ ├── README.txt │ │ ├── Softfloat.inf │ │ ├── bits32 │ │ │ ├── softfloat-macros │ │ │ └── softfloat.c │ │ ├── bits64 │ │ │ ├── softfloat-macros │ │ │ └── softfloat.c │ │ ├── eqdf2.c │ │ ├── eqsf2.c │ │ ├── eqtf2.c │ │ ├── fpgetmask.c │ │ ├── fpgetround.c │ │ ├── fpgetsticky.c │ │ ├── fpsetmask.c │ │ ├── fpsetround.c │ │ ├── fpsetsticky.c │ │ ├── gedf2.c │ │ ├── gesf2.c │ │ ├── getf2.c │ │ ├── gexf2.c │ │ ├── gtdf2.c │ │ ├── gtsf2.c │ │ ├── gttf2.c │ │ ├── gtxf2.c │ │ ├── ledf2.c │ │ ├── lesf2.c │ │ ├── letf2.c │ │ ├── ltdf2.c │ │ ├── ltsf2.c │ │ ├── lttf2.c │ │ ├── nedf2.c │ │ ├── negdf2.c │ │ ├── negsf2.c │ │ ├── negtf2.c │ │ ├── negxf2.c │ │ ├── nesf2.c │ │ ├── netf2.c │ │ ├── nexf2.c │ │ ├── softfloat-for-gcc.h │ │ ├── softfloat-history.txt │ │ ├── softfloat-source.txt │ │ ├── softfloat-specialize │ │ ├── softfloat.txt │ │ ├── templates │ │ │ ├── milieu.h │ │ │ ├── softfloat-specialize │ │ │ └── softfloat.h │ │ ├── timesoftfloat.c │ │ ├── timesoftfloat.txt │ │ ├── unorddf2.c │ │ ├── unordsf2.c │ │ └── unordtf2.c │ ├── StdLib │ │ ├── Bsearch.c │ │ ├── Environs.c │ │ ├── Malloc.c │ │ ├── NumericInt.c │ │ ├── Qsort.c │ │ ├── Rand.c │ │ ├── StdLib.inf │ │ ├── Xabs.c │ │ ├── Xdiv.c │ │ ├── realpath.c │ │ ├── setprogname.c │ │ ├── strtoimax.c │ │ └── strtoumax.c │ ├── Stdio │ │ ├── Stdio.inf │ │ ├── clrerr.c │ │ ├── fclose.c │ │ ├── fdopen.c │ │ ├── feof.c │ │ ├── ferror.c │ │ ├── fflush.c │ │ ├── fgetc.c │ │ ├── fgetln.c │ │ ├── fgetpos.c │ │ ├── fgets.c │ │ ├── fgetstr.c │ │ ├── fgetwc.c │ │ ├── fgetws.c │ │ ├── fileext.h │ │ ├── fileno.c │ │ ├── findfp.c │ │ ├── flags.c │ │ ├── floatio.h │ │ ├── flockfile.c │ │ ├── fopen.c │ │ ├── fparseln.c │ │ ├── fprintf.c │ │ ├── fpurge.c │ │ ├── fputc.c │ │ ├── fputs.c │ │ ├── fputwc.c │ │ ├── fputws.c │ │ ├── fread.c │ │ ├── freopen.c │ │ ├── fscanf.c │ │ ├── fseek.c │ │ ├── fseeko.c │ │ ├── fsetpos.c │ │ ├── ftell.c │ │ ├── ftello.c │ │ ├── funopen.c │ │ ├── fvwrite.c │ │ ├── fvwrite.h │ │ ├── fwalk.c │ │ ├── fwide.c │ │ ├── fwprintf.c │ │ ├── fwrite.c │ │ ├── fwscanf.c │ │ ├── getc.c │ │ ├── getchar.c │ │ ├── gets.c │ │ ├── gettemp.c │ │ ├── getwc.c │ │ ├── getwchar.c │ │ ├── glue.h │ │ ├── local.h │ │ ├── makebuf.c │ │ ├── mkdtemp.c │ │ ├── mkstemp.c │ │ ├── mktemp.c │ │ ├── perror.c │ │ ├── printf.c │ │ ├── putc.c │ │ ├── putchar.c │ │ ├── puts.c │ │ ├── putwc.c │ │ ├── putwchar.c │ │ ├── refill.c │ │ ├── remove.c │ │ ├── rewind.c │ │ ├── rget.c │ │ ├── scanf.c │ │ ├── setbuf.c │ │ ├── setbuffer.c │ │ ├── setvbuf.c │ │ ├── snprintf.c │ │ ├── snprintf_ss.c │ │ ├── sprintf.c │ │ ├── sscanf.c │ │ ├── stdio.c │ │ ├── swprintf.c │ │ ├── swscanf.c │ │ ├── tempnam.c │ │ ├── tmpfile.c │ │ ├── tmpnam.c │ │ ├── ungetc.c │ │ ├── ungetwc.c │ │ ├── vasprintf.c │ │ ├── vfprintf.c │ │ ├── vfscanf.c │ │ ├── vfwprintf.c │ │ ├── vfwscanf.c │ │ ├── vprintf.c │ │ ├── vscanf.c │ │ ├── vsnprintf.c │ │ ├── vsnprintf_ss.c │ │ ├── vsprintf.c │ │ ├── vsscanf.c │ │ ├── vswprintf.c │ │ ├── vswscanf.c │ │ ├── vwprintf.c │ │ ├── vwscanf.c │ │ ├── wbuf.c │ │ ├── wcio.h │ │ ├── wprintf.c │ │ ├── wscanf.c │ │ └── wsetup.c │ ├── String │ │ ├── Comparison.c │ │ ├── Concatenation.c │ │ ├── Copying.c │ │ ├── ErrorList.c │ │ ├── Misc.c │ │ ├── Searching.c │ │ ├── String.inf │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── strncasecmp.c │ │ └── strsep.c │ ├── Time │ │ ├── Theory.txt │ │ ├── Time.c │ │ ├── Time.inf │ │ ├── TimeEfi.c │ │ ├── TimeVals.h │ │ ├── ZoneProc.c │ │ ├── gettimeofday.c │ │ ├── itimer.c │ │ ├── strftime.c │ │ ├── strptime.c │ │ ├── timegm.c │ │ └── tzfile.h │ ├── Uefi │ │ ├── Devices │ │ │ ├── Console │ │ │ │ └── daConsole.c │ │ │ ├── UefiShell │ │ │ │ └── daShell.c │ │ │ ├── Utility │ │ │ │ ├── DevGenisis.c │ │ │ │ ├── DevSearch.c │ │ │ │ └── Path.c │ │ │ ├── daConsole.inf │ │ │ ├── daShell.inf │ │ │ └── daUtility.inf │ │ ├── InteractiveIO │ │ │ ├── CanonRead.c │ │ │ ├── IIO.c │ │ │ ├── IIO.inf │ │ │ ├── IIOecho.c │ │ │ ├── IIOechoCtrl.h │ │ │ ├── IIOutilities.c │ │ │ ├── IIOutilities.h │ │ │ ├── IIOwrite.c │ │ │ ├── NonCanonRead.c │ │ │ └── TerminalFunctions.c │ │ ├── StubFunctions.c │ │ ├── SysCalls.c │ │ ├── Uefi.inf │ │ ├── Xform.c │ │ ├── compat.c │ │ ├── select.c │ │ └── writev.c │ ├── Wchar │ │ ├── Comparison.c │ │ ├── Concatenation.c │ │ ├── ConsDecons.c │ │ ├── Copying.c │ │ ├── Searching.c │ │ ├── String.c │ │ └── Wchar.inf │ └── gdtoa │ │ ├── Ipf │ │ └── strtold.c │ │ ├── _strtof.c │ │ ├── _strtold.c │ │ ├── atof.c │ │ ├── dmisc.c │ │ ├── dtoa.c │ │ ├── gdtoa.c │ │ ├── gdtoa.h │ │ ├── gdtoa.inf │ │ ├── gdtoaimp.h │ │ ├── gethex.c │ │ ├── gmisc.c │ │ ├── hd_init.c │ │ ├── hexnan.c │ │ ├── ldtoa.c │ │ ├── misc.c │ │ ├── smisc.c │ │ ├── strtod.c │ │ ├── strtodg.c │ │ ├── strtof.c │ │ ├── strtold_px.c │ │ ├── strtold_subr.c │ │ ├── strtopx.c │ │ ├── sum.c │ │ └── ulp.c ├── License.txt ├── PosixLib │ ├── Err │ │ ├── LibErr.inf │ │ └── warn_err.c │ ├── Gen │ │ ├── LibGen.inf │ │ ├── access.c │ │ ├── closedir.c │ │ ├── dirname.c │ │ ├── opendir.c │ │ ├── readdir.c │ │ └── utime.c │ ├── GetPass │ │ └── GetPass.c │ ├── Glob │ │ ├── LibGlob.inf │ │ └── glob.c │ ├── PosixLib.inf │ └── Stringlist │ │ ├── LibStringlist.inf │ │ └── stringlist.c ├── ReadMe.txt ├── SocketDxe │ ├── ComponentName.c │ ├── DriverBinding.c │ ├── EntryUnload.c │ ├── Socket.h │ └── SocketDxe.inf ├── StdLib.dec ├── StdLib.dsc ├── StdLib.inc └── UseSocketDxe │ ├── UseSocketDxe.c │ └── UseSocketDxe.inf ├── StdLibPrivateInternalFiles ├── Contributions.txt ├── DoNotUse.dec ├── Include │ ├── Arm │ │ ├── arith.h │ │ └── gd_qnan.h │ ├── Device │ │ ├── Console.h │ │ ├── Device.h │ │ └── IIO.h │ ├── Efi │ │ └── SysEfi.h │ ├── Ia32 │ │ ├── arith.h │ │ └── gd_qnan.h │ ├── Ipf │ │ ├── arith.h │ │ └── gd_qnan.h │ ├── LibConfig.h │ ├── MainData.h │ ├── X64 │ │ ├── arith.h │ │ └── gd_qnan.h │ ├── extern.h │ ├── kfile.h │ ├── namespace.h │ └── reentrant.h ├── License.txt └── ReadMe.txt ├── UefiCpuPkg ├── Contributions.txt ├── CpuDxe │ ├── ApStartup.c │ ├── CpuDxe.c │ ├── CpuDxe.h │ ├── CpuDxe.inf │ ├── CpuDxe.uni │ ├── CpuDxeExtra.uni │ ├── CpuGdt.c │ ├── CpuGdt.h │ ├── CpuMp.c │ ├── CpuMp.h │ ├── Ia32 │ │ ├── CpuAsm.S │ │ ├── CpuAsm.asm │ │ ├── MpAsm.asm │ │ └── MpAsm.nasm │ └── X64 │ │ ├── CpuAsm.S │ │ ├── CpuAsm.asm │ │ ├── MpAsm.asm │ │ └── MpAsm.nasm ├── CpuIo2Dxe │ ├── CpuIo2Dxe.c │ ├── CpuIo2Dxe.h │ ├── CpuIo2Dxe.inf │ ├── CpuIo2Dxe.uni │ └── CpuIo2DxeExtra.uni ├── CpuIo2Smm │ ├── CpuIo2Smm.c │ ├── CpuIo2Smm.h │ ├── CpuIo2Smm.inf │ ├── CpuIo2Smm.uni │ └── CpuIo2SmmExtra.uni ├── CpuIoPei │ ├── CpuIoPei.c │ ├── CpuIoPei.h │ ├── CpuIoPei.inf │ ├── CpuIoPei.uni │ └── CpuIoPeiExtra.uni ├── CpuMpPei │ ├── CpuBist.c │ ├── CpuMpPei.c │ ├── CpuMpPei.h │ ├── CpuMpPei.inf │ ├── CpuMpPei.uni │ ├── CpuMpPeiExtra.uni │ ├── Ia32 │ │ ├── MpEqu.inc │ │ ├── MpFuncs.asm │ │ └── MpFuncs.nasm │ ├── Microcode.c │ ├── Microcode.h │ ├── PeiMpServices.c │ ├── PeiMpServices.h │ └── X64 │ │ ├── MpEqu.inc │ │ ├── MpFuncs.asm │ │ └── MpFuncs.nasm ├── Include │ ├── Library │ │ ├── LocalApicLib.h │ │ ├── MtrrLib.h │ │ └── UefiCpuLib.h │ └── Register │ │ └── LocalApic.h ├── Library │ ├── BaseUefiCpuLib │ │ ├── BaseUefiCpuLib.inf │ │ ├── BaseUefiCpuLib.uni │ │ ├── Ia32 │ │ │ ├── InitializeFpu.S │ │ │ └── InitializeFpu.asm │ │ └── X64 │ │ │ ├── InitializeFpu.S │ │ │ └── InitializeFpu.asm │ ├── BaseXApicLib │ │ ├── BaseXApicLib.c │ │ ├── BaseXApicLib.inf │ │ └── BaseXApicLib.uni │ ├── BaseXApicX2ApicLib │ │ ├── BaseXApicX2ApicLib.c │ │ ├── BaseXApicX2ApicLib.inf │ │ └── BaseXApicX2ApicLib.uni │ ├── CpuExceptionHandlerLib │ │ ├── CpuExceptionCommon.c │ │ ├── CpuExceptionCommon.h │ │ ├── DxeCpuExceptionHandlerLib.inf │ │ ├── DxeCpuExceptionHandlerLib.uni │ │ ├── DxeException.c │ │ ├── DxeSmmCpuException.c │ │ ├── Ia32 │ │ │ ├── ArchExceptionHandler.c │ │ │ ├── ArchInterruptDefs.h │ │ │ ├── ExceptionHandlerAsm.S │ │ │ └── ExceptionHandlerAsm.asm │ │ ├── SecPeiCpuException.c │ │ ├── SecPeiCpuExceptionHandlerLib.inf │ │ ├── SecPeiCpuExceptionHandlerLib.uni │ │ ├── SmmCpuExceptionHandlerLib.inf │ │ ├── SmmCpuExceptionHandlerLib.uni │ │ ├── SmmException.c │ │ └── X64 │ │ │ ├── ArchExceptionHandler.c │ │ │ ├── ArchInterruptDefs.h │ │ │ ├── ExceptionHandlerAsm.S │ │ │ └── ExceptionHandlerAsm.asm │ ├── MtrrLib │ │ ├── MtrrLib.c │ │ ├── MtrrLib.inf │ │ └── MtrrLib.uni │ └── SecPeiDxeTimerLibUefiCpu │ │ ├── IpfTimerLib.c │ │ ├── SecPeiDxeTimerLibUefiCpu.inf │ │ ├── SecPeiDxeTimerLibUefiCpu.uni │ │ └── X86TimerLib.c ├── License.txt ├── ResetVector │ ├── FixupVtf │ │ ├── ResetVector.uni │ │ ├── ResetVectorExtra.uni │ │ ├── Vtf.inf │ │ └── Vtf.nasmb │ └── Vtf0 │ │ ├── Bin │ │ ├── ResetVector.ia32.port80.raw │ │ ├── ResetVector.ia32.raw │ │ ├── ResetVector.ia32.serial.raw │ │ ├── ResetVector.inf │ │ ├── ResetVector.uni │ │ ├── ResetVector.x64.port80.raw │ │ ├── ResetVector.x64.raw │ │ ├── ResetVector.x64.serial.raw │ │ └── ResetVectorExtra.uni │ │ ├── Build.py │ │ ├── CommonMacros.inc │ │ ├── DebugDisabled.asm │ │ ├── Ia16 │ │ ├── Init16.asm │ │ ├── Real16ToFlat32.asm │ │ └── ResetVectorVtf0.asm │ │ ├── Ia32 │ │ ├── Flat32ToFlat64.asm │ │ ├── PageTables64.asm │ │ ├── SearchForBfvBase.asm │ │ └── SearchForSecEntry.asm │ │ ├── Main.asm │ │ ├── Port80Debug.asm │ │ ├── PostCodes.inc │ │ ├── ReadMe.txt │ │ ├── ResetVector.uni │ │ ├── ResetVectorExtra.uni │ │ ├── SerialDebug.asm │ │ ├── Tools │ │ └── FixupForRawSection.py │ │ ├── Vtf0.inf │ │ ├── Vtf0.nasmb │ │ └── X64 │ │ └── PageTables.asm ├── UefiCpuPkg.dec ├── UefiCpuPkg.dsc ├── UefiCpuPkg.uni ├── UefiCpuPkgExtra.uni └── Universal │ └── Acpi │ └── S3Resume2Pei │ ├── Ia32 │ ├── AsmFuncs.S │ └── AsmFuncs.asm │ ├── S3Resume.c │ ├── S3Resume2Pei.inf │ ├── S3Resume2Pei.uni │ ├── S3Resume2PeiExtra.uni │ └── X64 │ ├── AsmFuncs.S │ └── AsmFuncs.asm ├── UnixPkg └── Deprecated.txt ├── Vlv2DeviceRefCodePkg ├── AcpiTablesPCAT │ ├── 98_LINK.ASL │ ├── AcpiTablePlatform.h │ ├── AcpiTables.inf │ ├── CPU.asl │ ├── DSDT.ASL │ ├── Facp │ │ └── Facp.aslc │ ├── Facs │ │ └── Facs.aslc │ ├── GloblNvs.asl │ ├── Gpe.asl │ ├── HOST_BUS.ASL │ ├── Hpet │ │ └── Hpet.aslc │ ├── INTELGFX.ASL │ ├── INTELISPDev2.ASL │ ├── IgdOGBDA.ASL │ ├── IgdOMOBF.ASL │ ├── IgdOSBCB.ASL │ ├── IgdOpRn.ASL │ ├── IoTVirtualDevice.asl │ ├── LPC_DEV.ASL │ ├── LpcB.asl │ ├── Lpit │ │ └── Lpit.aslc │ ├── Madt │ │ ├── Madt.h │ │ └── Madt30.aslc │ ├── Mcfg │ │ └── Mcfg.aslc │ ├── PCI_DRC.ASL │ ├── Pch.asl │ ├── PchAudio.asl │ ├── PchEhci.asl │ ├── PchLpss.asl │ ├── PchPcie.asl │ ├── PchScc.asl │ ├── PchSmb.asl │ ├── PchXhci.asl │ ├── PciTree.asl │ ├── Platform.asl │ ├── RTD3.asl │ ├── RhProxy.asl │ ├── THERMAL.ASL │ ├── UsbSbd.asl │ ├── Video.asl │ ├── Vlv.asl │ └── token.asl ├── Contributions.txt ├── Include │ ├── Guid │ │ └── Vlv2DeviceRefCodePkgTokenSpace.h │ ├── Ppi │ │ ├── PttPassThruPpi.h │ │ └── fTPMPolicy.h │ └── Protocol │ │ └── PttPassThru.h ├── License.txt ├── ValleyView2Soc │ ├── CPU │ │ ├── Include │ │ │ ├── Guid │ │ │ │ └── PowerManagementAcpiTableStorage.h │ │ │ ├── Ppi │ │ │ │ └── VlvPolicy.h │ │ │ ├── Protocol │ │ │ │ └── PpmPlatformPolicy.h │ │ │ └── Types.h │ │ └── PowerManagement │ │ │ └── AcpiTables │ │ │ ├── PowerManagementAcpiTables.inf │ │ │ └── Ssdt │ │ │ ├── ApCst.asl │ │ │ ├── ApIst.asl │ │ │ ├── ApTst.asl │ │ │ ├── Cpu0Cst.asl │ │ │ ├── Cpu0Ist.asl │ │ │ ├── Cpu0Tst.asl │ │ │ └── CpuPm.asl │ ├── NorthCluster │ │ └── Include │ │ │ ├── PlatformBaseAddresses.h │ │ │ ├── Ppi │ │ │ ├── Capsule.h │ │ │ ├── PlatformMemoryRange.h │ │ │ ├── PlatformMemorySize.h │ │ │ ├── SmmAccess.h │ │ │ ├── VlvMmioPolicy.h │ │ │ ├── VlvPeiInit.h │ │ │ └── VlvPolicy.h │ │ │ ├── Protocol │ │ │ ├── IgdOpRegion.h │ │ │ ├── MemInfo.h │ │ │ ├── PlatformGopPolicy.h │ │ │ └── VlvPlatformPolicy.h │ │ │ ├── Valleyview.h │ │ │ ├── VlvAccess.h │ │ │ └── VlvCommonDefinitions.h │ └── SouthCluster │ │ └── Include │ │ ├── Guid │ │ ├── PchInitVar.h │ │ ├── SataControllerGuid.h │ │ ├── SmbusArpMap.h │ │ └── Vlv2Variable.h │ │ ├── IndustryStandard │ │ ├── CeAta.h │ │ ├── Mmc.h │ │ └── SdCard.h │ │ ├── Library │ │ ├── I2CLib.h │ │ └── PchPlatformLib.h │ │ ├── PchAccess.h │ │ ├── PchCommonDefinitions.h │ │ ├── PchRegs.h │ │ ├── PchRegs │ │ ├── PchRegsHda.h │ │ ├── PchRegsLpss.h │ │ ├── PchRegsPcie.h │ │ ├── PchRegsPcu.h │ │ ├── PchRegsRcrb.h │ │ ├── PchRegsSata.h │ │ ├── PchRegsScc.h │ │ ├── PchRegsSmbus.h │ │ ├── PchRegsSpi.h │ │ └── PchRegsUsb.h │ │ ├── Ppi │ │ ├── PchInit.h │ │ ├── PchPeiInit.h │ │ ├── PchPlatformPolicy.h │ │ ├── PchUsbPolicy.h │ │ ├── PeiBlockIo.h │ │ ├── Sdhc.h │ │ ├── SmbusPolicy.h │ │ └── Spi.h │ │ ├── Protocol │ │ ├── ActiveBios.h │ │ ├── ActiveBiosProtocol.h │ │ ├── DxePchPolicyUpdateProtocol.h │ │ ├── EmmcCardInfoProtocol.h │ │ ├── Gpio.h │ │ ├── HwWatchdogTimer.h │ │ ├── I2cBus.h │ │ ├── PchExtendedReset.h │ │ ├── PchInfo.h │ │ ├── PchPlatformPolicy.h │ │ ├── PchReset.h │ │ ├── PchS3Support.h │ │ ├── SdHostIo.h │ │ ├── SmbiosSlotPopulation.h │ │ ├── SmmIchnDispatchEx.h │ │ ├── SmmSmbus.h │ │ ├── Spi.h │ │ └── TcoReset.h │ │ ├── Rsci.h │ │ └── TianoApi.h └── Vlv2DeviceRefCodePkg.dec ├── Vlv2TbltDevicePkg ├── AcpiPlatform │ ├── AcpiPlatform.c │ ├── AcpiPlatform.h │ ├── AcpiPlatform.inf │ ├── AcpiPlatformHooks.c │ ├── AcpiPlatformHooks.h │ ├── AcpiPlatformHooksLib.h │ └── Osfr.h ├── Application │ └── FirmwareUpdate │ │ ├── FirmwareUpdate.c │ │ ├── FirmwareUpdate.h │ │ ├── FirmwareUpdate.inf │ │ └── FirmwareUpdateStrings.uni ├── BfmLib.exe ├── BiosIdD.env ├── BiosIdR.env ├── BiosIdx64D.env ├── BiosIdx64R.env ├── BootScriptSaveDxe │ ├── BootScriptSaveDxe.inf │ ├── InternalBootScriptSave.h │ └── ScriptSave.c ├── Build_IFWI.bat ├── Build_IFWI.sh ├── Contributions.txt ├── FCE.exe ├── FspAzaliaConfigData │ └── AzaliaConfig.bin ├── FspSupport │ ├── BootModePei │ │ ├── BootModePei.c │ │ └── BootModePei.inf │ └── Library │ │ ├── PeiFspHobProcessLibVlv2 │ │ ├── FspHobProcessLibVlv2.c │ │ └── FspHobProcessLibVlv2.inf │ │ └── SecFspPlatformSecLibVlv2 │ │ ├── FspPlatformSecLibVlv2.c │ │ ├── FspPlatformSecLibVlv2.inf │ │ ├── Ia32 │ │ ├── AsmSaveSecContext.asm │ │ ├── Fsp.inc │ │ ├── PeiCoreEntry.asm │ │ ├── SecEntry.asm │ │ ├── Stack.S │ │ └── Stack.asm │ │ ├── PlatformInit.c │ │ ├── SaveSecContext.c │ │ ├── SecGetPerformance.c │ │ ├── SecPlatformInformation.c │ │ ├── SecRamInitData.c │ │ ├── SecTempRamSupport.c │ │ └── UartInit.c ├── FvInfoPei │ ├── FvInfoPei.c │ └── FvInfoPei.inf ├── FvbRuntimeDxe │ ├── FvbInfo.c │ ├── FvbRuntimeDxe.inf │ ├── FvbService.c │ ├── FvbService.h │ ├── FvbServiceDxe.c │ ├── FvbServiceSmm.c │ ├── FvbSmm.inf │ ├── FvbSmmCommon.h │ ├── FvbSmmDxe.c │ ├── FvbSmmDxe.h │ └── FvbSmmDxe.inf ├── GenBiosId ├── GenBiosId.exe ├── Include │ ├── AlertStandardFormatTable.h │ ├── ChipsetAccess.h │ ├── CommonIncludes.h │ ├── CpuType.h │ ├── FileHandleLib.h │ ├── Guid │ │ ├── AcpiTableStorage.h │ │ ├── AlertStandardFormat.h │ │ ├── BiosId.h │ │ ├── BoardFeatures.h │ │ ├── EfiVpdData.h │ │ ├── FirmwareId.h │ │ ├── HwWatchdogTimerHob.h │ │ ├── IdccData.h │ │ ├── ItkData.h │ │ ├── MemoryConfigData.h │ │ ├── OsSelection.h │ │ ├── PciLanInfo.h │ │ ├── PlatformCpuInfo.h │ │ ├── PlatformInfo.h │ │ ├── SensorInfoVariable.h │ │ └── SetupVariable.h │ ├── Hpet.h │ ├── Library │ │ ├── BiosIdLib.h │ │ ├── CpuIA32.h │ │ ├── EfiRegTableLib.h │ │ ├── Esrt.h │ │ ├── Fd.h │ │ ├── FlashDeviceLib.h │ │ ├── I2CLib.h │ │ ├── I2cMmioConfigLib.h │ │ ├── I2cPort_platform.h │ │ ├── PlatformFsaLib.h │ │ ├── PlatformFspLib.h │ │ ├── SpiFlash.H │ │ ├── StallSmmLib.h │ │ └── UsbDeviceModeLib.h │ ├── Mcfg.h │ ├── McfgTable.h │ ├── Platform.h │ ├── PlatformBootMode.h │ ├── PlatformDefinitions.h │ ├── Ppi │ │ ├── MfgMemoryTest.h │ │ ├── Sha256Hash.h │ │ ├── Speaker.h │ │ └── UsbController.h │ ├── Protocol │ │ ├── CK505ClockPlatformInfo.h │ │ ├── EnhancedSpeedstep.h │ │ ├── GlobalNvsArea.h │ │ ├── HwWatchdogTimer.h │ │ ├── I2cAcpi.h │ │ ├── I2cBus.h │ │ ├── I2cBusMcg.h │ │ ├── I2cHostMcg.h │ │ ├── I2cMasterMcg.h │ │ ├── I2cSlave.h │ │ ├── LpcWpc83627Policy.h │ │ ├── LpcWpce791Policy.h │ │ ├── MmioDevice.h │ │ ├── Observable.h │ │ ├── PlatformGopPolicy.h │ │ ├── PlatformIdeInit.h │ │ ├── SetupMode.h │ │ ├── SmbiosSlotPopulation.h │ │ ├── Speaker.h │ │ ├── TcoReset.h │ │ ├── TpmMp.h │ │ ├── UsbPolicy.h │ │ └── VlvPlatformPolicy.h │ └── SetupMode.h ├── IntelGopDepex │ └── IntelGopDriver.depex ├── Library │ ├── BiosIdLib │ │ ├── BiosIdLib.c │ │ └── BiosIdLib.inf │ ├── CpuIA32Lib │ │ ├── CpuIA32Lib.inf │ │ ├── EfiCpuVersion.c │ │ ├── IA32 │ │ │ ├── CpuIA32.S │ │ │ ├── CpuIA32.asm │ │ │ └── CpuIA32.c │ │ └── X64 │ │ │ ├── Cpu.S │ │ │ └── Cpu.asm │ ├── DxeTrEEPhysicalPresenceLibNull │ │ ├── DxeTrEEPhysicalPresenceLibNull.c │ │ └── DxeTrEEPhysicalPresenceLibNull.inf │ ├── EfiRegTableLib │ │ ├── EfiRegTableLib.c │ │ └── EfiRegTableLib.inf │ ├── FlashDeviceLib │ │ ├── FlashDeviceLib.c │ │ ├── FlashDeviceLib.inf │ │ └── SpiChipDefinitions.h │ ├── I2CLib │ │ ├── I2CLib.c │ │ └── I2CLibNull.inf │ ├── I2CLibDxe │ │ ├── I2CLib.c │ │ ├── I2CLibDxe.inf │ │ └── I2CRegs.h │ ├── I2CLibPei │ │ ├── I2CAccess.h │ │ ├── I2CDelayPei.c │ │ ├── I2CDelayPei.h │ │ ├── I2CIoLibPei.c │ │ ├── I2CIoLibPei.h │ │ ├── I2CLibPei.c │ │ ├── I2CLibPei.h │ │ └── I2CLibPei.inf │ ├── IntelPchAcpiTimerLib │ │ ├── CommonHeader.h │ │ ├── IntelPchAcpiTimerLib.c │ │ └── IntelPchAcpiTimerLib.inf │ ├── MultiPlatformLib │ │ ├── BoardClkGens │ │ │ ├── BoardClkGens.c │ │ │ └── BoardClkGens.h │ │ ├── BoardGpios │ │ │ ├── BoardGpios.c │ │ │ └── BoardGpios.h │ │ ├── BoardJumpers │ │ │ ├── BoardJumpers.c │ │ │ └── BoardJumpers.h │ │ ├── BoardOemIds │ │ │ ├── BoardOemIds.c │ │ │ └── BoardOemIds.h │ │ ├── BoardSsidSvid │ │ │ ├── BoardSsidSvid.c │ │ │ └── BoardSsidSvid.h │ │ ├── MultiPlatformLib.c │ │ ├── MultiPlatformLib.h │ │ ├── MultiPlatformLib.inf │ │ └── PlatformInfoHob.c │ ├── PchPlatformLib │ │ ├── PchPlatformLib.inf │ │ ├── PchPlatformLibrary.c │ │ └── PchPlatformLibrary.h │ ├── PchSmmLib │ │ ├── CommonHeader.h │ │ ├── PchSmmLib.c │ │ └── PchSmmLib.inf │ ├── PlatformBdsLib │ │ ├── BdsPlatform.c │ │ ├── BdsPlatform.h │ │ ├── PlatformBdsLib.inf │ │ ├── PlatformBdsStrings.uni │ │ └── PlatformData.c │ ├── PlatformCmosLib │ │ ├── PlatformCmosLib.c │ │ └── PlatformCmosLib.inf │ ├── PlatformFspLib │ │ ├── PlatformFspLib.c │ │ └── PlatformFspLib.inf │ ├── ResetSystemLib │ │ ├── ResetSystemLib.c │ │ └── ResetSystemLib.inf │ ├── SerialPortLib │ │ ├── PlatformSerialPortLib.h │ │ ├── SerialPortLib.c │ │ ├── SerialPortLib.inf │ │ ├── SioInit.c │ │ └── SioInit.h │ ├── SmbusLib │ │ ├── CommonHeader.h │ │ ├── SmbusLib.c │ │ └── SmbusLib.inf │ ├── StallSmmLib │ │ ├── StallSmm.c │ │ └── StallSmmLib.inf │ ├── Tpm2DeviceLibSeCDxe │ │ ├── Tpm2DeviceLibSeC.c │ │ └── Tpm2DeviceLibSeC.inf │ └── Tpm2DeviceLibSeCPei │ │ ├── Tpm2DeviceLibSeC.c │ │ └── Tpm2DeviceLibSeC.inf ├── License.txt ├── Logo │ └── Logo.bmp ├── Metronome │ ├── LegacyMetronome.c │ ├── LegacyMetronome.h │ └── Metronome.inf ├── MonoStatusCode │ ├── EfiStatusCode.h │ ├── MonoStatusCode.c │ ├── MonoStatusCode.h │ ├── MonoStatusCode.inf │ ├── PeiPostCode.c │ ├── PlatformStatusCode.c │ └── PlatformStatusCode.h ├── Override │ └── IntelFrameworkModulePkg │ │ └── Library │ │ └── GenericBdsLib │ │ ├── BdsBoot.c │ │ ├── BdsConnect.c │ │ ├── BdsConsole.c │ │ ├── BdsMisc.c │ │ ├── DevicePath.c │ │ ├── GenericBdsLib.inf │ │ ├── GenericBdsLib.uni │ │ ├── GenericBdsStrings.uni │ │ ├── InternalBdsLib.h │ │ ├── Performance.c │ │ ├── String.c │ │ └── String.h ├── PciPlatform │ ├── BoardPciPlatform.c │ ├── PciPlatform.c │ ├── PciPlatform.h │ └── PciPlatform.inf ├── PlatformCpuInfoDxe │ ├── PlatformCpuInfoDxe.c │ ├── PlatformCpuInfoDxe.h │ └── PlatformCpuInfoDxe.inf ├── PlatformDxe │ ├── AzaliaVerbTable.h │ ├── BoardId.c │ ├── BoardIdDecode.c │ ├── BoardIdDecode.h │ ├── ClockControl.c │ ├── Configuration.h │ ├── ExI.c │ ├── IchPlatformPolicy.c │ ├── IchRegTable.c │ ├── IchTcoReset.c │ ├── IdccInfo.c │ ├── LegacySpeaker.c │ ├── LegacySpeaker.h │ ├── Observable │ │ ├── Observable.c │ │ └── Observable.h │ ├── PciBus.h │ ├── PciDevice.c │ ├── Platform.c │ ├── PlatformDxe.h │ ├── PlatformDxe.inf │ ├── Rtc.c │ ├── SensorVar.c │ ├── SioPlatformPolicy.c │ ├── SlotConfig.c │ └── SlotConfig.h ├── PlatformGopPolicy │ ├── PlatformGopPolicy.c │ └── PlatformGopPolicy.inf ├── PlatformInfoDxe │ ├── PlatformInfoDxe.c │ ├── PlatformInfoDxe.h │ └── PlatformInfoDxe.inf ├── PlatformInitPei │ ├── BootMode.c │ ├── CpuInitPeim.c │ ├── Dimm.c │ ├── FlashMap.c │ ├── LegacySpeaker.c │ ├── LegacySpeaker.h │ ├── MchInit.c │ ├── MemoryCallback.c │ ├── MemoryPeim.c │ ├── PchInitPeim.c │ ├── PlatformEarlyInit.c │ ├── PlatformEarlyInit.h │ ├── PlatformInfoInit.c │ ├── PlatformInitPei.inf │ ├── PlatformSsaInitPeim.c │ ├── Recovery.c │ └── Stall.c ├── PlatformPei │ ├── BootMode.c │ ├── CommonHeader.h │ ├── MemoryCallback.c │ ├── Platform.c │ ├── Platform.h │ ├── PlatformPei.inf │ └── Stall.c ├── PlatformPkg.dec ├── PlatformPkg.fdf ├── PlatformPkgConfig.dsc ├── PlatformPkgGcc.fdf ├── PlatformPkgGccX64.dsc ├── PlatformPkgIA32.dsc ├── PlatformPkgX64.dsc ├── PlatformSetupDxe │ ├── Boot.vfi │ ├── Configuration.h │ ├── DebugConfig.vfi │ ├── FwVersionStrings.uni │ ├── Main.vfi │ ├── PlatformSetupDxe.c │ ├── PlatformSetupDxe.h │ ├── PlatformSetupDxe.inf │ ├── Security.vfi │ ├── SetupFunctions.c │ ├── SetupInfoRecords.c │ ├── SouthClusterConfig.vfi │ ├── SystemComponent.vfi │ ├── Thermal.vfi │ ├── UnCore.vfi │ ├── UqiList.uni │ ├── Vfr.vfr │ └── VfrStrings.uni ├── PlatformSmm │ ├── Platform.c │ ├── PlatformSmm.inf │ ├── S3Save.c │ ├── SmmPlatform.h │ ├── SmmScriptSave.c │ └── SmmScriptSave.h ├── PpmPolicy │ ├── PpmPolicy.c │ ├── PpmPolicy.h │ └── PpmPolicy.inf ├── SaveMemoryConfig │ ├── SaveMemoryConfig.c │ ├── SaveMemoryConfig.h │ └── SaveMemoryConfig.inf ├── SmBiosMiscDxe │ ├── CommonHeader.h │ ├── MiscBaseBoardManufacturer.uni │ ├── MiscBaseBoardManufacturerData.c │ ├── MiscBaseBoardManufacturerFunction.c │ ├── MiscBiosVendor.uni │ ├── MiscBiosVendorData.c │ ├── MiscBiosVendorFunction.c │ ├── MiscBootInformationData.c │ ├── MiscBootInformationFunction.c │ ├── MiscChassisManufacturer.uni │ ├── MiscChassisManufacturerData.c │ ├── MiscChassisManufacturerFunction.c │ ├── MiscMemoryDevice.uni │ ├── MiscMemoryDeviceData.c │ ├── MiscMemoryDeviceFunction.c │ ├── MiscNumberOfInstallableLanguagesData.c │ ├── MiscNumberOfInstallableLanguagesFunction.c │ ├── MiscOemString.uni │ ├── MiscOemStringData.c │ ├── MiscOemStringFunction.c │ ├── MiscOemType0x90.uni │ ├── MiscOemType0x90Data.c │ ├── MiscOemType0x90Function.c │ ├── MiscOemType0x94.uni │ ├── MiscOemType0x94Data.c │ ├── MiscOemType0x94Function.c │ ├── MiscOnboardDevice.uni │ ├── MiscOnboardDeviceData.c │ ├── MiscOnboardDeviceFunction.c │ ├── MiscPhysicalArray.uni │ ├── MiscPhysicalArrayData.c │ ├── MiscPhysicalArrayFunction.c │ ├── MiscPortInternalConnectorDesignator.uni │ ├── MiscPortInternalConnectorDesignatorData.c │ ├── MiscPortInternalConnectorDesignatorFunction.c │ ├── MiscProcessorCache.uni │ ├── MiscProcessorCacheData.c │ ├── MiscProcessorCacheFunction.c │ ├── MiscProcessorInformation.uni │ ├── MiscProcessorInformationData.c │ ├── MiscProcessorInformationFunction.c │ ├── MiscResetCapabilitiesData.c │ ├── MiscResetCapabilitiesFunction.c │ ├── MiscSubclassDriver.h │ ├── MiscSubclassDriver.uni │ ├── MiscSubclassDriverDataTable.c │ ├── MiscSubclassDriverEntryPoint.c │ ├── MiscSystemLanguageString.uni │ ├── MiscSystemLanguageStringData.c │ ├── MiscSystemLanguageStringFunction.c │ ├── MiscSystemManufacturer.uni │ ├── MiscSystemManufacturerData.c │ ├── MiscSystemManufacturerFunction.c │ ├── MiscSystemOptionString.uni │ ├── MiscSystemOptionStringData.c │ ├── MiscSystemOptionStringFunction.c │ ├── MiscSystemSlotDesignation.uni │ ├── MiscSystemSlotDesignationData.c │ ├── MiscSystemSlotDesignationFunction.c │ └── SmBiosMiscDxe.inf ├── SmmSwDispatch2OnSmmSwDispatchThunk │ ├── SmmSwDispatch2OnSmmSwDispatchThunk.c │ └── SmmSwDispatch2OnSmmSwDispatchThunk.inf ├── SmramSaveInfoHandlerSmm │ ├── SmramSaveInfoHandlerSmm.c │ └── SmramSaveInfoHandlerSmm.inf ├── Stitch │ ├── Gcc │ │ ├── NvStorageFtwSpare.bin │ │ ├── NvStorageFtwWorking.bin │ │ └── NvStorageVariable.bin │ ├── IFWIHeader │ │ ├── IFWI_HEADER.bin │ │ └── Vacant.bin │ ├── IFWIStitch.bat │ └── MNW2_Stitch_Config.txt ├── UiApp │ ├── FrontPage.c │ └── UiApp.inf ├── VlvPlatformInitDxe │ ├── IgdOpRegion.c │ ├── IgdOpRegion.h │ ├── VlvPlatformInit.c │ ├── VlvPlatformInit.h │ └── VlvPlatformInitDxe.inf ├── Wpce791 │ ├── LpcDriver.c │ ├── LpcDriver.h │ ├── LpcIsaAcpi.c │ ├── LpcIsaAcpi.h │ ├── LpcSio.c │ ├── LpcSio.h │ └── Wpce791.inf ├── bldX64.bat ├── bld_vlv.bat ├── bld_vlv.sh └── cln.sh ├── edksetup.bat └── edksetup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/.gitmodules -------------------------------------------------------------------------------- /AppPkg/AppPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/AppPkg/AppPkg.dec -------------------------------------------------------------------------------- /AppPkg/AppPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/AppPkg/AppPkg.dsc -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/Lua.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/AppPkg/Applications/Lua/Lua.inf -------------------------------------------------------------------------------- /AppPkg/Applications/Lua/scripts/Hello.lua: -------------------------------------------------------------------------------- 1 | print("Hello UEFI World") 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Main/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/AppPkg/Applications/Main/Main.c -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Demo/md5test/foo: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Demo/parser/docstring.py: -------------------------------------------------------------------------------- 1 | """Some documentation. 2 | """ 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Demo/parser/simple.py: -------------------------------------------------------------------------------- 1 | def f(): "maybe a docstring" 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/bom.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | print "BOM BOOM!" 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/test/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/test/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print '我' 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/test/badsyntax_nocaret.py: -------------------------------------------------------------------------------- 1 | def f(x): 2 | [x for x in x] = x 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/test/cfgparser.1: -------------------------------------------------------------------------------- 1 | [Foo Bar] 2 | foo=newbar 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/test/cjkencodings/big5hkscs-utf8.txt: -------------------------------------------------------------------------------- 1 | 𠄌Ě鵮罓洆 2 | ÊÊ̄ê êê̄ 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/test/leakers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Lib/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Parser/tokenizer_pgen.c: -------------------------------------------------------------------------------- 1 | #define PGEN 2 | #include "tokenizer.c" 3 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/hello.py: -------------------------------------------------------------------------------- 1 | print 'Hello world...' 2 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/AppPkg/Contributions.txt -------------------------------------------------------------------------------- /AppPkg/ISSUES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/AppPkg/ISSUES.txt -------------------------------------------------------------------------------- /AppPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/AppPkg/License.txt -------------------------------------------------------------------------------- /AppPkg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/AppPkg/ReadMe.txt -------------------------------------------------------------------------------- /ArmPkg/ArmPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPkg/ArmPkg.dec -------------------------------------------------------------------------------- /ArmPkg/ArmPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPkg/ArmPkg.dsc -------------------------------------------------------------------------------- /ArmPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPkg/Contributions.txt -------------------------------------------------------------------------------- /ArmPkg/Drivers/CpuDxe/CpuDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPkg/Drivers/CpuDxe/CpuDxe.c -------------------------------------------------------------------------------- /ArmPkg/Drivers/CpuDxe/CpuDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPkg/Drivers/CpuDxe/CpuDxe.h -------------------------------------------------------------------------------- /ArmPkg/Drivers/CpuPei/CpuPei.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPkg/Drivers/CpuPei/CpuPei.c -------------------------------------------------------------------------------- /ArmPkg/Include/AsmMacroIoLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPkg/Include/AsmMacroIoLib.h -------------------------------------------------------------------------------- /ArmPkg/Include/Chipset/ArmV7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPkg/Include/Chipset/ArmV7.h -------------------------------------------------------------------------------- /ArmPkg/Include/Library/ArmLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPkg/Include/Library/ArmLib.h -------------------------------------------------------------------------------- /ArmPkg/Include/Library/BdsLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPkg/Include/Library/BdsLib.h -------------------------------------------------------------------------------- /ArmPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPkg/License.txt -------------------------------------------------------------------------------- /ArmPlatformPkg/Bds/Bds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/Bds/Bds.c -------------------------------------------------------------------------------- /ArmPlatformPkg/Bds/Bds.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/Bds/Bds.inf -------------------------------------------------------------------------------- /ArmPlatformPkg/Bds/BdsHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/Bds/BdsHelper.c -------------------------------------------------------------------------------- /ArmPlatformPkg/Bds/BootLinux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/Bds/BootLinux.c -------------------------------------------------------------------------------- /ArmPlatformPkg/Bds/BootMenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/Bds/BootMenu.c -------------------------------------------------------------------------------- /ArmPlatformPkg/Bds/BootOption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/Bds/BootOption.c -------------------------------------------------------------------------------- /ArmPlatformPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/License.txt -------------------------------------------------------------------------------- /ArmPlatformPkg/PrePi/PrePi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/PrePi/PrePi.c -------------------------------------------------------------------------------- /ArmPlatformPkg/PrePi/PrePi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/PrePi/PrePi.h -------------------------------------------------------------------------------- /ArmPlatformPkg/Scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/Scripts/Makefile -------------------------------------------------------------------------------- /ArmPlatformPkg/Sec/Arm/Arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/Sec/Arm/Arch.c -------------------------------------------------------------------------------- /ArmPlatformPkg/Sec/Arm/Helper.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/Sec/Arm/Helper.S -------------------------------------------------------------------------------- /ArmPlatformPkg/Sec/Sec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/Sec/Sec.c -------------------------------------------------------------------------------- /ArmPlatformPkg/Sec/Sec.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmPlatformPkg/Sec/Sec.inf -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirt.dsc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmVirtPkg/ArmVirt.dsc.inc -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmVirtPkg/ArmVirtPkg.dec -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtQemu.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmVirtPkg/ArmVirtQemu.dsc -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtQemu.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmVirtPkg/ArmVirtQemu.fdf -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtXen.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmVirtPkg/ArmVirtXen.dsc -------------------------------------------------------------------------------- /ArmVirtPkg/ArmVirtXen.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmVirtPkg/ArmVirtXen.fdf -------------------------------------------------------------------------------- /ArmVirtPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmVirtPkg/Contributions.txt -------------------------------------------------------------------------------- /ArmVirtPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmVirtPkg/License.txt -------------------------------------------------------------------------------- /ArmVirtPkg/PrePi/PrePi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmVirtPkg/PrePi/PrePi.c -------------------------------------------------------------------------------- /ArmVirtPkg/PrePi/PrePi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ArmVirtPkg/PrePi/PrePi.h -------------------------------------------------------------------------------- /BaseTools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/.gitignore -------------------------------------------------------------------------------- /BaseTools/Bin/externals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Bin/externals.txt -------------------------------------------------------------------------------- /BaseTools/BuildEnv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/BuildEnv -------------------------------------------------------------------------------- /BaseTools/BuildNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/BuildNotes.txt -------------------------------------------------------------------------------- /BaseTools/Conf/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Conf/ReadMe.txt -------------------------------------------------------------------------------- /BaseTools/Conf/target.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Conf/target.template -------------------------------------------------------------------------------- /BaseTools/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Contributions.txt -------------------------------------------------------------------------------- /BaseTools/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/License.txt -------------------------------------------------------------------------------- /BaseTools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Makefile -------------------------------------------------------------------------------- /BaseTools/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/ReadMe.txt -------------------------------------------------------------------------------- /BaseTools/Scripts/GccBase.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Scripts/GccBase.lds -------------------------------------------------------------------------------- /BaseTools/Source/C/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Source/C/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Source/C/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Source/C/Makefile -------------------------------------------------------------------------------- /BaseTools/Source/C/VfrCompile/Pccts/h/config.h: -------------------------------------------------------------------------------- 1 | #include "pcctscfg.h" 2 | -------------------------------------------------------------------------------- /BaseTools/Source/Python/Ecc/C.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Source/Python/Ecc/C.g -------------------------------------------------------------------------------- /BaseTools/Tests/CToolsTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Tests/CToolsTests.py -------------------------------------------------------------------------------- /BaseTools/Tests/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Tests/GNUmakefile -------------------------------------------------------------------------------- /BaseTools/Tests/RunTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Tests/RunTests.py -------------------------------------------------------------------------------- /BaseTools/Tests/TestTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/Tests/TestTools.py -------------------------------------------------------------------------------- /BaseTools/building-gcc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/building-gcc.txt -------------------------------------------------------------------------------- /BaseTools/gcc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/gcc/README.txt -------------------------------------------------------------------------------- /BaseTools/get_vsvars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/get_vsvars.bat -------------------------------------------------------------------------------- /BaseTools/toolsetup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BaseTools/toolsetup.bat -------------------------------------------------------------------------------- /BeagleBoardPkg/Bds/Bds.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BeagleBoardPkg/Bds/Bds.inf -------------------------------------------------------------------------------- /BeagleBoardPkg/Bds/BdsEntry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BeagleBoardPkg/Bds/BdsEntry.c -------------------------------------------------------------------------------- /BeagleBoardPkg/Bds/BdsEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BeagleBoardPkg/Bds/BdsEntry.h -------------------------------------------------------------------------------- /BeagleBoardPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BeagleBoardPkg/License.txt -------------------------------------------------------------------------------- /BeagleBoardPkg/Sec/Cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BeagleBoardPkg/Sec/Cache.c -------------------------------------------------------------------------------- /BeagleBoardPkg/Sec/Clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BeagleBoardPkg/Sec/Clock.c -------------------------------------------------------------------------------- /BeagleBoardPkg/Sec/Sec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BeagleBoardPkg/Sec/Sec.c -------------------------------------------------------------------------------- /BeagleBoardPkg/Sec/Sec.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BeagleBoardPkg/Sec/Sec.inf -------------------------------------------------------------------------------- /BeagleBoardPkg/Tools/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BeagleBoardPkg/Tools/makefile -------------------------------------------------------------------------------- /BeagleBoardPkg/Tools/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BeagleBoardPkg/Tools/replace.c -------------------------------------------------------------------------------- /BuildNotes2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/BuildNotes2.txt -------------------------------------------------------------------------------- /Conf/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /Conf/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Conf/ReadMe.txt -------------------------------------------------------------------------------- /CorebootModulePkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CorebootModulePkg/License.txt -------------------------------------------------------------------------------- /CorebootPayloadPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CorebootPayloadPkg/License.txt -------------------------------------------------------------------------------- /CryptoPkg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/.gitignore -------------------------------------------------------------------------------- /CryptoPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Contributions.txt -------------------------------------------------------------------------------- /CryptoPkg/CryptoPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/CryptoPkg.dec -------------------------------------------------------------------------------- /CryptoPkg/CryptoPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/CryptoPkg.dsc -------------------------------------------------------------------------------- /CryptoPkg/CryptoPkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/CryptoPkg.uni -------------------------------------------------------------------------------- /CryptoPkg/CryptoPkgExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/CryptoPkgExtra.uni -------------------------------------------------------------------------------- /CryptoPkg/Include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/arpa/inet.h -------------------------------------------------------------------------------- /CryptoPkg/Include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/assert.h -------------------------------------------------------------------------------- /CryptoPkg/Include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/ctype.h -------------------------------------------------------------------------------- /CryptoPkg/Include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/dirent.h -------------------------------------------------------------------------------- /CryptoPkg/Include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/errno.h -------------------------------------------------------------------------------- /CryptoPkg/Include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/limits.h -------------------------------------------------------------------------------- /CryptoPkg/Include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/malloc.h -------------------------------------------------------------------------------- /CryptoPkg/Include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/math.h -------------------------------------------------------------------------------- /CryptoPkg/Include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/memory.h -------------------------------------------------------------------------------- /CryptoPkg/Include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/netdb.h -------------------------------------------------------------------------------- /CryptoPkg/Include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/netinet/in.h -------------------------------------------------------------------------------- /CryptoPkg/Include/sgtty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/sgtty.h -------------------------------------------------------------------------------- /CryptoPkg/Include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/signal.h -------------------------------------------------------------------------------- /CryptoPkg/Include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/stdarg.h -------------------------------------------------------------------------------- /CryptoPkg/Include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/stddef.h -------------------------------------------------------------------------------- /CryptoPkg/Include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/stdio.h -------------------------------------------------------------------------------- /CryptoPkg/Include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/stdlib.h -------------------------------------------------------------------------------- /CryptoPkg/Include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/string.h -------------------------------------------------------------------------------- /CryptoPkg/Include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/strings.h -------------------------------------------------------------------------------- /CryptoPkg/Include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/sys/ioctl.h -------------------------------------------------------------------------------- /CryptoPkg/Include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/sys/param.h -------------------------------------------------------------------------------- /CryptoPkg/Include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/sys/socket.h -------------------------------------------------------------------------------- /CryptoPkg/Include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/sys/stat.h -------------------------------------------------------------------------------- /CryptoPkg/Include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/sys/time.h -------------------------------------------------------------------------------- /CryptoPkg/Include/sys/times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/sys/times.h -------------------------------------------------------------------------------- /CryptoPkg/Include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/sys/types.h -------------------------------------------------------------------------------- /CryptoPkg/Include/sys/un.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/sys/un.h -------------------------------------------------------------------------------- /CryptoPkg/Include/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/syslog.h -------------------------------------------------------------------------------- /CryptoPkg/Include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/time.h -------------------------------------------------------------------------------- /CryptoPkg/Include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/Include/unistd.h -------------------------------------------------------------------------------- /CryptoPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/CryptoPkg/License.txt -------------------------------------------------------------------------------- /DebugPkg/GdbSyms/GdbSyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DebugPkg/GdbSyms/GdbSyms.c -------------------------------------------------------------------------------- /DebugPkg/GdbSyms/GdbSyms.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DebugPkg/GdbSyms/GdbSyms.inf -------------------------------------------------------------------------------- /DebugPkg/Scripts/gdb_uefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DebugPkg/Scripts/gdb_uefi.py -------------------------------------------------------------------------------- /DuetPkg/AcpiResetDxe/Reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/AcpiResetDxe/Reset.c -------------------------------------------------------------------------------- /DuetPkg/AcpiResetDxe/Reset.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/AcpiResetDxe/Reset.inf -------------------------------------------------------------------------------- /DuetPkg/BootSector/FILE.LST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/FILE.LST -------------------------------------------------------------------------------- /DuetPkg/BootSector/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/GNUmakefile -------------------------------------------------------------------------------- /DuetPkg/BootSector/Gpt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/Gpt.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/Gpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/Gpt.asm -------------------------------------------------------------------------------- /DuetPkg/BootSector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/Makefile -------------------------------------------------------------------------------- /DuetPkg/BootSector/Mbr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/Mbr.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/Mbr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/Mbr.asm -------------------------------------------------------------------------------- /DuetPkg/BootSector/bin/Gpt.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/bin/Gpt.com -------------------------------------------------------------------------------- /DuetPkg/BootSector/bin/Mbr.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/bin/Mbr.com -------------------------------------------------------------------------------- /DuetPkg/BootSector/bin/bs16.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/bin/bs16.com -------------------------------------------------------------------------------- /DuetPkg/BootSector/bin/bs32.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/bin/bs32.com -------------------------------------------------------------------------------- /DuetPkg/BootSector/bootsect.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/bootsect.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/bootsect.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/bootsect.asm -------------------------------------------------------------------------------- /DuetPkg/BootSector/bs16.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/bs16.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/bs16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/bs16.asm -------------------------------------------------------------------------------- /DuetPkg/BootSector/bs32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/bs32.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/bs32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/bs32.asm -------------------------------------------------------------------------------- /DuetPkg/BootSector/efi32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/efi32.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/efi32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/efi32.asm -------------------------------------------------------------------------------- /DuetPkg/BootSector/efi64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/efi64.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/efi64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/efi64.asm -------------------------------------------------------------------------------- /DuetPkg/BootSector/st16_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/st16_64.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/st16_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/st16_64.asm -------------------------------------------------------------------------------- /DuetPkg/BootSector/st32_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/st32_64.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/st32_64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/st32_64.asm -------------------------------------------------------------------------------- /DuetPkg/BootSector/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/start.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/start.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/start.asm -------------------------------------------------------------------------------- /DuetPkg/BootSector/start16.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/start16.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/start16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/start16.asm -------------------------------------------------------------------------------- /DuetPkg/BootSector/start32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/start32.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/start32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/start32.asm -------------------------------------------------------------------------------- /DuetPkg/BootSector/start64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/start64.S -------------------------------------------------------------------------------- /DuetPkg/BootSector/start64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/BootSector/start64.asm -------------------------------------------------------------------------------- /DuetPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/Contributions.txt -------------------------------------------------------------------------------- /DuetPkg/CreateBootDisk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/CreateBootDisk.bat -------------------------------------------------------------------------------- /DuetPkg/CreateBootDisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/CreateBootDisk.sh -------------------------------------------------------------------------------- /DuetPkg/DuetPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DuetPkg.dec -------------------------------------------------------------------------------- /DuetPkg/DuetPkg.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DuetPkg.fdf -------------------------------------------------------------------------------- /DuetPkg/DuetPkgIa32.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DuetPkgIa32.dsc -------------------------------------------------------------------------------- /DuetPkg/DuetPkgX64.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DuetPkgX64.dsc -------------------------------------------------------------------------------- /DuetPkg/DxeIpl/Debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DxeIpl/Debug.c -------------------------------------------------------------------------------- /DuetPkg/DxeIpl/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DxeIpl/Debug.h -------------------------------------------------------------------------------- /DuetPkg/DxeIpl/DxeInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DxeIpl/DxeInit.c -------------------------------------------------------------------------------- /DuetPkg/DxeIpl/DxeIpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DxeIpl/DxeIpl.h -------------------------------------------------------------------------------- /DuetPkg/DxeIpl/DxeIpl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DxeIpl/DxeIpl.inf -------------------------------------------------------------------------------- /DuetPkg/DxeIpl/HobGeneration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DxeIpl/HobGeneration.c -------------------------------------------------------------------------------- /DuetPkg/DxeIpl/HobGeneration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DxeIpl/HobGeneration.h -------------------------------------------------------------------------------- /DuetPkg/DxeIpl/Ia32/Paging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DxeIpl/Ia32/Paging.c -------------------------------------------------------------------------------- /DuetPkg/DxeIpl/LegacyTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DxeIpl/LegacyTable.c -------------------------------------------------------------------------------- /DuetPkg/DxeIpl/LegacyTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DxeIpl/LegacyTable.h -------------------------------------------------------------------------------- /DuetPkg/DxeIpl/X64/Paging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/DxeIpl/X64/Paging.c -------------------------------------------------------------------------------- /DuetPkg/EfiLdr/Debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/EfiLdr/Debug.c -------------------------------------------------------------------------------- /DuetPkg/EfiLdr/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/EfiLdr/Debug.h -------------------------------------------------------------------------------- /DuetPkg/EfiLdr/EfiLdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/EfiLdr/EfiLdr.h -------------------------------------------------------------------------------- /DuetPkg/EfiLdr/EfiLdr.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/EfiLdr/EfiLdr.inf -------------------------------------------------------------------------------- /DuetPkg/EfiLdr/EfiLdrHandoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/EfiLdr/EfiLdrHandoff.h -------------------------------------------------------------------------------- /DuetPkg/EfiLdr/EfiLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/EfiLdr/EfiLoader.c -------------------------------------------------------------------------------- /DuetPkg/EfiLdr/LzmaDecompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/EfiLdr/LzmaDecompress.h -------------------------------------------------------------------------------- /DuetPkg/EfiLdr/PeLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/EfiLdr/PeLoader.c -------------------------------------------------------------------------------- /DuetPkg/EfiLdr/PeLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/EfiLdr/PeLoader.h -------------------------------------------------------------------------------- /DuetPkg/EfiLdr/Support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/EfiLdr/Support.c -------------------------------------------------------------------------------- /DuetPkg/EfiLdr/Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/EfiLdr/Support.h -------------------------------------------------------------------------------- /DuetPkg/EfiLdr/efildr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/EfiLdr/efildr.c -------------------------------------------------------------------------------- /DuetPkg/FSVariable/FSVariable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/FSVariable/FSVariable.c -------------------------------------------------------------------------------- /DuetPkg/FSVariable/FSVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/FSVariable/FSVariable.h -------------------------------------------------------------------------------- /DuetPkg/FSVariable/MemStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/FSVariable/MemStorage.c -------------------------------------------------------------------------------- /DuetPkg/GetVariables.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/GetVariables.bat -------------------------------------------------------------------------------- /DuetPkg/Include/EfiFlashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/Include/EfiFlashMap.h -------------------------------------------------------------------------------- /DuetPkg/Include/EfiLdrHandoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/Include/EfiLdrHandoff.h -------------------------------------------------------------------------------- /DuetPkg/Include/FlashLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/Include/FlashLayout.h -------------------------------------------------------------------------------- /DuetPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/License.txt -------------------------------------------------------------------------------- /DuetPkg/PostBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/PostBuild.bat -------------------------------------------------------------------------------- /DuetPkg/PostBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/PostBuild.sh -------------------------------------------------------------------------------- /DuetPkg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/ReadMe.txt -------------------------------------------------------------------------------- /DuetPkg/build32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/build32.sh -------------------------------------------------------------------------------- /DuetPkg/build64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/DuetPkg/build64.sh -------------------------------------------------------------------------------- /Edk2Setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Edk2Setup.bat -------------------------------------------------------------------------------- /EdkCompatibilityPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkCompatibilityPkg/License.txt -------------------------------------------------------------------------------- /EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/config.h: -------------------------------------------------------------------------------- 1 | #include "pcctscfg.h" 2 | -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Cls.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Cls.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Comp.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Comp.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Cp.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Cp.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Date.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Date.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Dblk.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Dblk.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Dmem.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Dmem.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Edit.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Edit.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Err.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Err.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Guid.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Guid.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Load.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Load.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Ls.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Ls.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Mem.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Mem.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Mm.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Mm.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Mode.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Mode.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Mv.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Mv.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Pci.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Pci.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Ping.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Ping.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Rm.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Rm.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Time.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Time.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Type.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Type.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Ver.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Ver.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/Bin/Arm/Vol.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/Bin/Arm/Vol.efi -------------------------------------------------------------------------------- /EdkShellBinPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/License.txt -------------------------------------------------------------------------------- /EdkShellBinPkg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellBinPkg/ReadMe.txt -------------------------------------------------------------------------------- /EdkShellPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellPkg/Contributions.txt -------------------------------------------------------------------------------- /EdkShellPkg/EdkShellPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellPkg/EdkShellPkg.dsc -------------------------------------------------------------------------------- /EdkShellPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellPkg/License.txt -------------------------------------------------------------------------------- /EdkShellPkg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellPkg/ReadMe.txt -------------------------------------------------------------------------------- /EdkShellPkg/ShellR33.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellPkg/ShellR33.patch -------------------------------------------------------------------------------- /EdkShellPkg/ShellR64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EdkShellPkg/ShellR64.patch -------------------------------------------------------------------------------- /EmbeddedPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Contributions.txt -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/CmdTemplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/CmdTemplate.c -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/Command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/Command.c -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/Dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/Dir.c -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/Ebl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/Ebl.h -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/Ebl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/Ebl.inf -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/EfiDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/EfiDevice.c -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/Hob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/Hob.c -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/HwDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/HwDebug.c -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/HwIoDebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/HwIoDebug.c -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/Main.c -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/Network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/Network.c -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/Script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/Script.c -------------------------------------------------------------------------------- /EmbeddedPkg/Ebl/Variable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Ebl/Variable.c -------------------------------------------------------------------------------- /EmbeddedPkg/EblExternCmd/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/EblExternCmd/Main.c -------------------------------------------------------------------------------- /EmbeddedPkg/EmbeddedPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/EmbeddedPkg.dec -------------------------------------------------------------------------------- /EmbeddedPkg/EmbeddedPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/EmbeddedPkg.dsc -------------------------------------------------------------------------------- /EmbeddedPkg/EmbeddedPkg.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/EmbeddedPkg.fdf -------------------------------------------------------------------------------- /EmbeddedPkg/GdbStub/GdbStub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/GdbStub/GdbStub.c -------------------------------------------------------------------------------- /EmbeddedPkg/GdbStub/GdbStub.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/GdbStub/GdbStub.inf -------------------------------------------------------------------------------- /EmbeddedPkg/GdbStub/SerialIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/GdbStub/SerialIo.c -------------------------------------------------------------------------------- /EmbeddedPkg/Include/Guid/Fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Include/Guid/Fdt.h -------------------------------------------------------------------------------- /EmbeddedPkg/Include/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Include/fdt.h -------------------------------------------------------------------------------- /EmbeddedPkg/Include/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Include/libfdt.h -------------------------------------------------------------------------------- /EmbeddedPkg/Library/FdtLib/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/Library/FdtLib/TODO -------------------------------------------------------------------------------- /EmbeddedPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmbeddedPkg/License.txt -------------------------------------------------------------------------------- /EmulatorPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Contributions.txt -------------------------------------------------------------------------------- /EmulatorPkg/CpuRuntimeDxe/Cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/CpuRuntimeDxe/Cpu.c -------------------------------------------------------------------------------- /EmulatorPkg/EmuGopDxe/Gop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/EmuGopDxe/Gop.h -------------------------------------------------------------------------------- /EmulatorPkg/EmulatorPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/EmulatorPkg.dec -------------------------------------------------------------------------------- /EmulatorPkg/EmulatorPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/EmulatorPkg.dsc -------------------------------------------------------------------------------- /EmulatorPkg/EmulatorPkg.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/EmulatorPkg.fdf -------------------------------------------------------------------------------- /EmulatorPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/License.txt -------------------------------------------------------------------------------- /EmulatorPkg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/README -------------------------------------------------------------------------------- /EmulatorPkg/Sec/Ia32/TempRam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Sec/Ia32/TempRam.c -------------------------------------------------------------------------------- /EmulatorPkg/Sec/Sec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Sec/Sec.c -------------------------------------------------------------------------------- /EmulatorPkg/Sec/Sec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Sec/Sec.h -------------------------------------------------------------------------------- /EmulatorPkg/Sec/Sec.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Sec/Sec.inf -------------------------------------------------------------------------------- /EmulatorPkg/Sec/X64/SwitchRam.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Sec/X64/SwitchRam.S -------------------------------------------------------------------------------- /EmulatorPkg/TimerDxe/Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/TimerDxe/Timer.c -------------------------------------------------------------------------------- /EmulatorPkg/TimerDxe/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/TimerDxe/Timer.h -------------------------------------------------------------------------------- /EmulatorPkg/TimerDxe/Timer.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/TimerDxe/Timer.inf -------------------------------------------------------------------------------- /EmulatorPkg/Unix/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Unix/.gdbinit -------------------------------------------------------------------------------- /EmulatorPkg/Unix/GdbRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Unix/GdbRun -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/BlockIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Unix/Host/BlockIo.c -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/Gasket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Unix/Host/Gasket.h -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/Host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Unix/Host/Host.c -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Unix/Host/Host.h -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/Host.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Unix/Host/Host.inf -------------------------------------------------------------------------------- /EmulatorPkg/Unix/Host/X11IncludeHack: -------------------------------------------------------------------------------- 1 | /opt/X11/include -------------------------------------------------------------------------------- /EmulatorPkg/Unix/lldbefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Unix/lldbefi.py -------------------------------------------------------------------------------- /EmulatorPkg/Unix/lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/Unix/lldbinit -------------------------------------------------------------------------------- /EmulatorPkg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/EmulatorPkg/build.sh -------------------------------------------------------------------------------- /FatBinPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/FatBinPkg/Contributions.txt -------------------------------------------------------------------------------- /FatBinPkg/FatBinPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/FatBinPkg/FatBinPkg.dec -------------------------------------------------------------------------------- /FatBinPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/FatBinPkg/License.txt -------------------------------------------------------------------------------- /FatBinPkg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/FatBinPkg/ReadMe.txt -------------------------------------------------------------------------------- /IntelFrameworkPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/IntelFrameworkPkg/License.txt -------------------------------------------------------------------------------- /IntelFspPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/IntelFspPkg/Contributions.txt -------------------------------------------------------------------------------- /IntelFspPkg/FspDxeIpl/DxeIpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/IntelFspPkg/FspDxeIpl/DxeIpl.c -------------------------------------------------------------------------------- /IntelFspPkg/FspDxeIpl/DxeIpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/IntelFspPkg/FspDxeIpl/DxeIpl.h -------------------------------------------------------------------------------- /IntelFspPkg/FspSecCore/SecFsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/IntelFspPkg/FspSecCore/SecFsp.c -------------------------------------------------------------------------------- /IntelFspPkg/FspSecCore/SecFsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/IntelFspPkg/FspSecCore/SecFsp.h -------------------------------------------------------------------------------- /IntelFspPkg/Include/FspApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/IntelFspPkg/Include/FspApi.h -------------------------------------------------------------------------------- /IntelFspPkg/IntelFspPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/IntelFspPkg/IntelFspPkg.dec -------------------------------------------------------------------------------- /IntelFspPkg/IntelFspPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/IntelFspPkg/IntelFspPkg.dsc -------------------------------------------------------------------------------- /IntelFspPkg/Tools/GenCfgOpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/IntelFspPkg/Tools/GenCfgOpt.py -------------------------------------------------------------------------------- /IntelFspPkg/Tools/PatchFv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/IntelFspPkg/Tools/PatchFv.py -------------------------------------------------------------------------------- /Maintainers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Maintainers.txt -------------------------------------------------------------------------------- /MdeModulePkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdeModulePkg/Contributions.txt -------------------------------------------------------------------------------- /MdeModulePkg/Core/Dxe/DxeMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdeModulePkg/Core/Dxe/DxeMain.h -------------------------------------------------------------------------------- /MdeModulePkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdeModulePkg/License.txt -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdeModulePkg/Logo/Logo.bmp -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdeModulePkg/Logo/Logo.inf -------------------------------------------------------------------------------- /MdeModulePkg/Logo/Logo.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdeModulePkg/Logo/Logo.uni -------------------------------------------------------------------------------- /MdePkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Contributions.txt -------------------------------------------------------------------------------- /MdePkg/Include/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Base.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Guid/Acpi.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Cper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Guid/Cper.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Guid/Gpt.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/Mps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Guid/Mps.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/PcAnsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Guid/PcAnsi.h -------------------------------------------------------------------------------- /MdePkg/Include/Guid/SmBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Guid/SmBios.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiDxeCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Pi/PiDxeCis.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiHob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Pi/PiHob.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiI2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Pi/PiI2c.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiPeiCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Pi/PiPeiCis.h -------------------------------------------------------------------------------- /MdePkg/Include/Pi/PiSmmCis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Pi/PiSmmCis.h -------------------------------------------------------------------------------- /MdePkg/Include/PiDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/PiDxe.h -------------------------------------------------------------------------------- /MdePkg/Include/PiPei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/PiPei.h -------------------------------------------------------------------------------- /MdePkg/Include/PiSmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/PiSmm.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/BlockIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/BlockIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Capsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/Capsule.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/CpuIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/CpuIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/DxeIpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/DxeIpl.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/IsaHc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/IsaHc.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/Pcd.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/PcdInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/PcdInfo.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/PciCfg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/PciCfg2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/PiPcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/PiPcd.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/Reset.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Reset2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/Reset2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Smbus2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/Smbus2.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/Stall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/Stall.h -------------------------------------------------------------------------------- /MdePkg/Include/Ppi/SuperIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Ppi/SuperIo.h -------------------------------------------------------------------------------- /MdePkg/Include/Uefi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Include/Uefi.h -------------------------------------------------------------------------------- /MdePkg/Library/BaseLib/Cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/Library/BaseLib/Cpu.c -------------------------------------------------------------------------------- /MdePkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/License.txt -------------------------------------------------------------------------------- /MdePkg/MdePkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/MdePkg.dec -------------------------------------------------------------------------------- /MdePkg/MdePkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/MdePkg.dsc -------------------------------------------------------------------------------- /MdePkg/MdePkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/MdePkg.uni -------------------------------------------------------------------------------- /MdePkg/MdePkgExtra.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/MdePkg/MdePkgExtra.uni -------------------------------------------------------------------------------- /NetworkPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Contributions.txt -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/DnsDxe/DnsDhcp.c -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/DnsDxe/DnsDhcp.h -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/DnsDxe/DnsDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/DnsDxe/DnsDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/DnsDxe/DnsImpl.c -------------------------------------------------------------------------------- /NetworkPkg/DnsDxe/DnsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/DnsDxe/DnsImpl.h -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/HttpDxe/HttpDns.c -------------------------------------------------------------------------------- /NetworkPkg/HttpDxe/HttpDns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/HttpDxe/HttpDns.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Dxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Dxe.inf -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Dxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Dxe.uni -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Icmp.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Icmp.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6If.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6If.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6If.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6If.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Impl.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Impl.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Input.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Input.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Mld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Mld.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Mld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Mld.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Nd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Nd.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Nd.h -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Route.c -------------------------------------------------------------------------------- /NetworkPkg/Ip6Dxe/Ip6Route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/Ip6Dxe/Ip6Route.h -------------------------------------------------------------------------------- /NetworkPkg/IpSecDxe/Ike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/IpSecDxe/Ike.h -------------------------------------------------------------------------------- /NetworkPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/License.txt -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/NetworkPkg.dec -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/NetworkPkg.dsc -------------------------------------------------------------------------------- /NetworkPkg/NetworkPkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/NetworkPkg.uni -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/SockImpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/SockImpl.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/SockImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/SockImpl.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/Socket.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/TcpDxe.inf -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/TcpDxe.uni -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/TcpFunc.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/TcpInput.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/TcpIo.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/TcpMain.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/TcpMain.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/TcpMisc.c -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpProto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/TcpProto.h -------------------------------------------------------------------------------- /NetworkPkg/TcpDxe/TcpTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/NetworkPkg/TcpDxe/TcpTimer.c -------------------------------------------------------------------------------- /Nt32Pkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Contributions.txt -------------------------------------------------------------------------------- /Nt32Pkg/CpuRuntimeDxe/Cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/CpuRuntimeDxe/Cpu.c -------------------------------------------------------------------------------- /Nt32Pkg/Include/Ppi/NtFwh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Include/Ppi/NtFwh.h -------------------------------------------------------------------------------- /Nt32Pkg/Include/WinNtDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Include/WinNtDxe.h -------------------------------------------------------------------------------- /Nt32Pkg/Include/WinNtPeim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Include/WinNtPeim.h -------------------------------------------------------------------------------- /Nt32Pkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/License.txt -------------------------------------------------------------------------------- /Nt32Pkg/Nt32Pkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Nt32Pkg.dec -------------------------------------------------------------------------------- /Nt32Pkg/Nt32Pkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Nt32Pkg.dsc -------------------------------------------------------------------------------- /Nt32Pkg/Nt32Pkg.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Nt32Pkg.fdf -------------------------------------------------------------------------------- /Nt32Pkg/Sec/FwVol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Sec/FwVol.c -------------------------------------------------------------------------------- /Nt32Pkg/Sec/SecMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Sec/SecMain.c -------------------------------------------------------------------------------- /Nt32Pkg/Sec/SecMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Sec/SecMain.h -------------------------------------------------------------------------------- /Nt32Pkg/Sec/SecMain.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Sec/SecMain.inf -------------------------------------------------------------------------------- /Nt32Pkg/Sec/Stack.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Sec/Stack.asm -------------------------------------------------------------------------------- /Nt32Pkg/Sec/StackX64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Sec/StackX64.asm -------------------------------------------------------------------------------- /Nt32Pkg/Sec/WinNtThunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/Sec/WinNtThunk.c -------------------------------------------------------------------------------- /Nt32Pkg/SnpNt32Dxe/SnpNt32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/SnpNt32Dxe/SnpNt32.c -------------------------------------------------------------------------------- /Nt32Pkg/SnpNt32Dxe/SnpNt32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/SnpNt32Dxe/SnpNt32.h -------------------------------------------------------------------------------- /Nt32Pkg/StallPei/Stall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/StallPei/Stall.c -------------------------------------------------------------------------------- /Nt32Pkg/TimerDxe/Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/TimerDxe/Timer.c -------------------------------------------------------------------------------- /Nt32Pkg/TimerDxe/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Nt32Pkg/TimerDxe/Timer.h -------------------------------------------------------------------------------- /Omap35xxPkg/Flash/Flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Omap35xxPkg/Flash/Flash.c -------------------------------------------------------------------------------- /Omap35xxPkg/Flash/Flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Omap35xxPkg/Flash/Flash.h -------------------------------------------------------------------------------- /Omap35xxPkg/Flash/Flash.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Omap35xxPkg/Flash/Flash.inf -------------------------------------------------------------------------------- /Omap35xxPkg/Gpio/Gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Omap35xxPkg/Gpio/Gpio.c -------------------------------------------------------------------------------- /Omap35xxPkg/Gpio/Gpio.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Omap35xxPkg/Gpio/Gpio.inf -------------------------------------------------------------------------------- /Omap35xxPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Omap35xxPkg/License.txt -------------------------------------------------------------------------------- /Omap35xxPkg/MMCHSDxe/MMCHS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Omap35xxPkg/MMCHSDxe/MMCHS.c -------------------------------------------------------------------------------- /Omap35xxPkg/MMCHSDxe/MMCHS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Omap35xxPkg/MMCHSDxe/MMCHS.h -------------------------------------------------------------------------------- /Omap35xxPkg/Omap35xxPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Omap35xxPkg/Omap35xxPkg.dec -------------------------------------------------------------------------------- /Omap35xxPkg/Omap35xxPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Omap35xxPkg/Omap35xxPkg.dsc -------------------------------------------------------------------------------- /Omap35xxPkg/SmbusDxe/Smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Omap35xxPkg/SmbusDxe/Smbus.c -------------------------------------------------------------------------------- /Omap35xxPkg/TimerDxe/Timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Omap35xxPkg/TimerDxe/Timer.c -------------------------------------------------------------------------------- /OptionRomPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OptionRomPkg/License.txt -------------------------------------------------------------------------------- /OptionRomPkg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OptionRomPkg/ReadMe.txt -------------------------------------------------------------------------------- /OvmfPkg/AcpiTables/Dsdt.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/AcpiTables/Dsdt.asl -------------------------------------------------------------------------------- /OvmfPkg/AcpiTables/Facp.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/AcpiTables/Facp.aslc -------------------------------------------------------------------------------- /OvmfPkg/AcpiTables/Facs.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/AcpiTables/Facs.aslc -------------------------------------------------------------------------------- /OvmfPkg/AcpiTables/Madt.aslc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/AcpiTables/Madt.aslc -------------------------------------------------------------------------------- /OvmfPkg/AcpiTables/Ssdt.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/AcpiTables/Ssdt.asl -------------------------------------------------------------------------------- /OvmfPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/Contributions.txt -------------------------------------------------------------------------------- /OvmfPkg/Csm/Csm16/Csm16.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/Csm/Csm16/Csm16.inf -------------------------------------------------------------------------------- /OvmfPkg/Csm/Csm16/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/Csm/Csm16/ReadMe.txt -------------------------------------------------------------------------------- /OvmfPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/License.txt -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/OvmfPkg.dec -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkg.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/OvmfPkg.fdf.inc -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgIa32.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/OvmfPkgIa32.dsc -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgIa32.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/OvmfPkgIa32.fdf -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgIa32X64.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/OvmfPkgIa32X64.dsc -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgIa32X64.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/OvmfPkgIa32X64.fdf -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgX64.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/OvmfPkgX64.dsc -------------------------------------------------------------------------------- /OvmfPkg/OvmfPkgX64.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/OvmfPkgX64.fdf -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/Cmos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/PlatformPei/Cmos.c -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/Cmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/PlatformPei/Cmos.h -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/Fv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/PlatformPei/Fv.c -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/Xen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/PlatformPei/Xen.c -------------------------------------------------------------------------------- /OvmfPkg/PlatformPei/Xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/PlatformPei/Xen.h -------------------------------------------------------------------------------- /OvmfPkg/QemuVideoDxe/Gop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/QemuVideoDxe/Gop.c -------------------------------------------------------------------------------- /OvmfPkg/QemuVideoDxe/Qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/QemuVideoDxe/Qemu.h -------------------------------------------------------------------------------- /OvmfPkg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/README -------------------------------------------------------------------------------- /OvmfPkg/Sec/SecMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/Sec/SecMain.c -------------------------------------------------------------------------------- /OvmfPkg/Sec/SecMain.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/Sec/SecMain.inf -------------------------------------------------------------------------------- /OvmfPkg/VarStore.fdf.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/VarStore.fdf.inc -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/Helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/XenBusDxe/Helpers.c -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/XenBus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/XenBusDxe/XenBus.c -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/XenBus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/XenBusDxe/XenBus.h -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/XenStore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/XenBusDxe/XenStore.c -------------------------------------------------------------------------------- /OvmfPkg/XenBusDxe/XenStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/XenBusDxe/XenStore.h -------------------------------------------------------------------------------- /OvmfPkg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/build.sh -------------------------------------------------------------------------------- /OvmfPkg/create-release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/OvmfPkg/create-release.py -------------------------------------------------------------------------------- /PPC64Pkg/Include/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PPC64Pkg/Include/Endian.h -------------------------------------------------------------------------------- /PPC64Pkg/Include/Pcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PPC64Pkg/Include/Pcr.h -------------------------------------------------------------------------------- /PPC64Pkg/Ipl/Ipl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PPC64Pkg/Ipl/Ipl.c -------------------------------------------------------------------------------- /PPC64Pkg/Ipl/Ipl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PPC64Pkg/Ipl/Ipl.h -------------------------------------------------------------------------------- /PPC64Pkg/Ipl/Ipl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PPC64Pkg/Ipl/Ipl.inf -------------------------------------------------------------------------------- /PPC64Pkg/PPC64Pkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PPC64Pkg/PPC64Pkg.dec -------------------------------------------------------------------------------- /PPC64Pkg/PPC64Pkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PPC64Pkg/PPC64Pkg.dsc -------------------------------------------------------------------------------- /PPC64Pkg/PPC64Pkg.fdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PPC64Pkg/PPC64Pkg.fdf -------------------------------------------------------------------------------- /PPC64PlatformPkg/Test/Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PPC64PlatformPkg/Test/Test.c -------------------------------------------------------------------------------- /PcAtChipsetPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PcAtChipsetPkg/License.txt -------------------------------------------------------------------------------- /PerformancePkg/Dp_App/Dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PerformancePkg/Dp_App/Dp.c -------------------------------------------------------------------------------- /PerformancePkg/Dp_App/Dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PerformancePkg/Dp_App/Dp.h -------------------------------------------------------------------------------- /PerformancePkg/Dp_App/Dp.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PerformancePkg/Dp_App/Dp.inf -------------------------------------------------------------------------------- /PerformancePkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/PerformancePkg/License.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/README -------------------------------------------------------------------------------- /SecurityPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/SecurityPkg/License.txt -------------------------------------------------------------------------------- /SecurityPkg/SecurityPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/SecurityPkg/SecurityPkg.dec -------------------------------------------------------------------------------- /SecurityPkg/SecurityPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/SecurityPkg/SecurityPkg.dsc -------------------------------------------------------------------------------- /SecurityPkg/SecurityPkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/SecurityPkg/SecurityPkg.uni -------------------------------------------------------------------------------- /ShellBinPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ShellBinPkg/License.txt -------------------------------------------------------------------------------- /ShellBinPkg/MinUefiShell/Ia32/profiles.txt: -------------------------------------------------------------------------------- 1 | this release includes: 2 | -------------------------------------------------------------------------------- /ShellBinPkg/MinUefiShell/X64/profiles.txt: -------------------------------------------------------------------------------- 1 | this release includes: 2 | -------------------------------------------------------------------------------- /ShellBinPkg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ShellBinPkg/ReadMe.txt -------------------------------------------------------------------------------- /ShellBinPkg/ShellBinPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ShellBinPkg/ShellBinPkg.dec -------------------------------------------------------------------------------- /ShellPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ShellPkg/Contributions.txt -------------------------------------------------------------------------------- /ShellPkg/Include/ShellBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ShellPkg/Include/ShellBase.h -------------------------------------------------------------------------------- /ShellPkg/Library/UefiDpLib/Readme.txt: -------------------------------------------------------------------------------- 1 | from PerformancePkg\Dp_App 2 | SVN 13406 3 | -------------------------------------------------------------------------------- /ShellPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ShellPkg/License.txt -------------------------------------------------------------------------------- /ShellPkg/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ShellPkg/Readme.txt -------------------------------------------------------------------------------- /ShellPkg/ShellPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ShellPkg/ShellPkg.dec -------------------------------------------------------------------------------- /ShellPkg/ShellPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/ShellPkg/ShellPkg.dsc -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/accept.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/base64.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/bind.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/close.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/errno.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/herror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/herror.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/listen.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/ns_ttl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/ns_ttl.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/poll.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/read.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/recv.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/send.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/sendto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/sendto.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/socket.c -------------------------------------------------------------------------------- /StdLib/BsdSocketLib/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/BsdSocketLib/write.c -------------------------------------------------------------------------------- /StdLib/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Contributions.txt -------------------------------------------------------------------------------- /StdLib/Efi/StdLib/etc/host.conf: -------------------------------------------------------------------------------- 1 | # Order to perform name searches 2 | dns, nis 3 | hosts 4 | 5 | -------------------------------------------------------------------------------- /StdLib/Efi/StdLib/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Efi/StdLib/etc/hosts -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/EfiSocketLib/Init.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Ip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/EfiSocketLib/Ip4.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/EfiSocketLib/Socket.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/EfiSocketLib/Socket.h -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Tcp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/EfiSocketLib/Tcp4.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Tcp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/EfiSocketLib/Tcp6.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Udp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/EfiSocketLib/Udp4.c -------------------------------------------------------------------------------- /StdLib/EfiSocketLib/Udp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/EfiSocketLib/Udp6.c -------------------------------------------------------------------------------- /StdLib/Fixes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Fixes.txt -------------------------------------------------------------------------------- /StdLib/ISSUES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/ISSUES.txt -------------------------------------------------------------------------------- /StdLib/Include/Arm/arm-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/Arm/arm-gcc.h -------------------------------------------------------------------------------- /StdLib/Include/Arm/milieu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/Arm/milieu.h -------------------------------------------------------------------------------- /StdLib/Include/Ipf/machine/ieee.h: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | -------------------------------------------------------------------------------- /StdLib/Include/Lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/Lua/lauxlib.h -------------------------------------------------------------------------------- /StdLib/Include/Lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/Lua/lua.h -------------------------------------------------------------------------------- /StdLib/Include/Lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/Lua/luaconf.h -------------------------------------------------------------------------------- /StdLib/Include/Lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/Lua/lualib.h -------------------------------------------------------------------------------- /StdLib/Include/arpa/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/arpa/ftp.h -------------------------------------------------------------------------------- /StdLib/Include/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/arpa/inet.h -------------------------------------------------------------------------------- /StdLib/Include/arpa/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/arpa/telnet.h -------------------------------------------------------------------------------- /StdLib/Include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/assert.h -------------------------------------------------------------------------------- /StdLib/Include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/ctype.h -------------------------------------------------------------------------------- /StdLib/Include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/dirent.h -------------------------------------------------------------------------------- /StdLib/Include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/err.h -------------------------------------------------------------------------------- /StdLib/Include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/errno.h -------------------------------------------------------------------------------- /StdLib/Include/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /StdLib/Include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/float.h -------------------------------------------------------------------------------- /StdLib/Include/glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/glob.h -------------------------------------------------------------------------------- /StdLib/Include/ieeefp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/ieeefp.h -------------------------------------------------------------------------------- /StdLib/Include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/inttypes.h -------------------------------------------------------------------------------- /StdLib/Include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/iso646.h -------------------------------------------------------------------------------- /StdLib/Include/langinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/langinfo.h -------------------------------------------------------------------------------- /StdLib/Include/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/libgen.h -------------------------------------------------------------------------------- /StdLib/Include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/limits.h -------------------------------------------------------------------------------- /StdLib/Include/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/locale.h -------------------------------------------------------------------------------- /StdLib/Include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/math.h -------------------------------------------------------------------------------- /StdLib/Include/net/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/net/if.h -------------------------------------------------------------------------------- /StdLib/Include/net/if_dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/net/if_dl.h -------------------------------------------------------------------------------- /StdLib/Include/net/radix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/net/radix.h -------------------------------------------------------------------------------- /StdLib/Include/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/net/route.h -------------------------------------------------------------------------------- /StdLib/Include/net/servent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/net/servent.h -------------------------------------------------------------------------------- /StdLib/Include/netatalk/at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/netatalk/at.h -------------------------------------------------------------------------------- /StdLib/Include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/netdb.h -------------------------------------------------------------------------------- /StdLib/Include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/netinet/in.h -------------------------------------------------------------------------------- /StdLib/Include/netinet/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/netinet/ip.h -------------------------------------------------------------------------------- /StdLib/Include/netinet/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/netinet/tcp.h -------------------------------------------------------------------------------- /StdLib/Include/netns/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/netns/ns.h -------------------------------------------------------------------------------- /StdLib/Include/nl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/nl_types.h -------------------------------------------------------------------------------- /StdLib/Include/nsswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/nsswitch.h -------------------------------------------------------------------------------- /StdLib/Include/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/paths.h -------------------------------------------------------------------------------- /StdLib/Include/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/pwd.h -------------------------------------------------------------------------------- /StdLib/Include/resolv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/resolv.h -------------------------------------------------------------------------------- /StdLib/Include/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/setjmp.h -------------------------------------------------------------------------------- /StdLib/Include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/signal.h -------------------------------------------------------------------------------- /StdLib/Include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/stdarg.h -------------------------------------------------------------------------------- /StdLib/Include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/stdbool.h -------------------------------------------------------------------------------- /StdLib/Include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/stddef.h -------------------------------------------------------------------------------- /StdLib/Include/stdint.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /StdLib/Include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/stdio.h -------------------------------------------------------------------------------- /StdLib/Include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/stdlib.h -------------------------------------------------------------------------------- /StdLib/Include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/string.h -------------------------------------------------------------------------------- /StdLib/Include/stringlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/stringlist.h -------------------------------------------------------------------------------- /StdLib/Include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/strings.h -------------------------------------------------------------------------------- /StdLib/Include/sys/_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/_ctype.h -------------------------------------------------------------------------------- /StdLib/Include/sys/_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/_posix.h -------------------------------------------------------------------------------- /StdLib/Include/sys/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/ansi.h -------------------------------------------------------------------------------- /StdLib/Include/sys/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/bswap.h -------------------------------------------------------------------------------- /StdLib/Include/sys/callout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/callout.h -------------------------------------------------------------------------------- /StdLib/Include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/cdefs.h -------------------------------------------------------------------------------- /StdLib/Include/sys/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/dirent.h -------------------------------------------------------------------------------- /StdLib/Include/sys/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/endian.h -------------------------------------------------------------------------------- /StdLib/Include/sys/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/errno.h -------------------------------------------------------------------------------- /StdLib/Include/sys/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/fcntl.h -------------------------------------------------------------------------------- /StdLib/Include/sys/fd_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/fd_set.h -------------------------------------------------------------------------------- /StdLib/Include/sys/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/file.h -------------------------------------------------------------------------------- /StdLib/Include/sys/filio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/filio.h -------------------------------------------------------------------------------- /StdLib/Include/sys/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/ieee754.h -------------------------------------------------------------------------------- /StdLib/Include/sys/ioccom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/ioccom.h -------------------------------------------------------------------------------- /StdLib/Include/sys/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/ioctl.h -------------------------------------------------------------------------------- /StdLib/Include/sys/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/param.h -------------------------------------------------------------------------------- /StdLib/Include/sys/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/poll.h -------------------------------------------------------------------------------- /StdLib/Include/sys/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/pool.h -------------------------------------------------------------------------------- /StdLib/Include/sys/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/select.h -------------------------------------------------------------------------------- /StdLib/Include/sys/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/signal.h -------------------------------------------------------------------------------- /StdLib/Include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/socket.h -------------------------------------------------------------------------------- /StdLib/Include/sys/sockio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/sockio.h -------------------------------------------------------------------------------- /StdLib/Include/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/stat.h -------------------------------------------------------------------------------- /StdLib/Include/sys/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/stdint.h -------------------------------------------------------------------------------- /StdLib/Include/sys/sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/sysctl.h -------------------------------------------------------------------------------- /StdLib/Include/sys/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/termios.h -------------------------------------------------------------------------------- /StdLib/Include/sys/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/time.h -------------------------------------------------------------------------------- /StdLib/Include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/types.h -------------------------------------------------------------------------------- /StdLib/Include/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/uio.h -------------------------------------------------------------------------------- /StdLib/Include/sys/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/unistd.h -------------------------------------------------------------------------------- /StdLib/Include/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sys/wait.h -------------------------------------------------------------------------------- /StdLib/Include/sysexits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/sysexits.h -------------------------------------------------------------------------------- /StdLib/Include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/time.h -------------------------------------------------------------------------------- /StdLib/Include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/unistd.h -------------------------------------------------------------------------------- /StdLib/Include/utime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/utime.h -------------------------------------------------------------------------------- /StdLib/Include/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/wchar.h -------------------------------------------------------------------------------- /StdLib/Include/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/wctype.h -------------------------------------------------------------------------------- /StdLib/Include/x86/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/x86/float.h -------------------------------------------------------------------------------- /StdLib/Include/x86/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/x86/ieee.h -------------------------------------------------------------------------------- /StdLib/Include/x86/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/x86/limits.h -------------------------------------------------------------------------------- /StdLib/Include/x86/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/Include/x86/math.h -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/CRT/Gcc.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/lldiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/CRT/Ia32/lldiv.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/llmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/CRT/Ia32/llmul.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/llrem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/CRT/Ia32/llrem.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/llshl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/CRT/Ia32/llshl.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/llshr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/CRT/Ia32/llshr.c -------------------------------------------------------------------------------- /StdLib/LibC/CRT/Ia32/mulll.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/CRT/Ia32/mulll.S -------------------------------------------------------------------------------- /StdLib/LibC/Ctype/CClass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Ctype/CClass.c -------------------------------------------------------------------------------- /StdLib/LibC/Ctype/CConv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Ctype/CConv.c -------------------------------------------------------------------------------- /StdLib/LibC/Ctype/Ctype.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Ctype/Ctype.inf -------------------------------------------------------------------------------- /StdLib/LibC/Ctype/iCtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Ctype/iCtype.c -------------------------------------------------------------------------------- /StdLib/LibC/LibC.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/LibC.inf -------------------------------------------------------------------------------- /StdLib/LibC/Locale/_wcstod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/_wcstod.h -------------------------------------------------------------------------------- /StdLib/LibC/Locale/_wcstol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/_wcstol.h -------------------------------------------------------------------------------- /StdLib/LibC/Locale/ctypeio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/ctypeio.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/ctypeio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/ctypeio.h -------------------------------------------------------------------------------- /StdLib/LibC/Locale/rune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/rune.h -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcscoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/wcscoll.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/wcstod.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/wcstof.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/wcstol.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/wcstold.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/wcstoll.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcstoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/wcstoul.c -------------------------------------------------------------------------------- /StdLib/LibC/Locale/wcsxfrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Locale/wcsxfrm.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/ByteSwap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Main/ByteSwap.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/HtoNtoH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Main/HtoNtoH.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Main/Main.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Main/assert.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/bswap16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Main/bswap16.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/bswap32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Main/bswap32.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/bswap64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Main/bswap64.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Main/errno.c -------------------------------------------------------------------------------- /StdLib/LibC/Main/longjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Main/longjmp.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/Math.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/Math.inf -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/e_acos.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/e_asin.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/e_atan2.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/e_cosh.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/e_exp.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/e_fmod.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/e_log.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/e_log10.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/e_log2.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/e_pow.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/e_sinh.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/e_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/e_sqrt.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/k_cos.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/k_sin.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/k_tan.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_atan.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_ceil.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_cos.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_expm1.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_fabs.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_finite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_finite.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_floor.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_frexp.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_ldexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_ldexp.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_modf.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_scalbn.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_sin.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_tan.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/s_tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/s_tanh.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/w_acos.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/w_asin.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/w_atan2.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/w_cosh.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/w_exp.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/w_fmod.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/w_log.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/w_log10.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/w_log2.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/w_pow.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/w_sinh.c -------------------------------------------------------------------------------- /StdLib/LibC/Math/w_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Math/w_sqrt.c -------------------------------------------------------------------------------- /StdLib/LibC/Signal/Signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Signal/Signal.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/StdLib/Bsearch.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/StdLib/Malloc.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/StdLib/Qsort.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/StdLib/Rand.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Xabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/StdLib/Xabs.c -------------------------------------------------------------------------------- /StdLib/LibC/StdLib/Xdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/StdLib/Xdiv.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/Stdio.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/Stdio.inf -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/clrerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/clrerr.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fclose.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fdopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fdopen.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/feof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/feof.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/ferror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/ferror.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fflush.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fgetc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgetln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fgetln.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fgetpos.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fgets.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgetstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fgetstr.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgetwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fgetwc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fgetws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fgetws.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fileext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fileext.h -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fileno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fileno.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/findfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/findfp.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/flags.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/floatio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/floatio.h -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fopen.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fparseln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fparseln.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fpurge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fpurge.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fputc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fputc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fputs.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fputwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fputwc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fputws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fputws.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fread.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/freopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/freopen.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fseek.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fseeko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fseeko.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fsetpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fsetpos.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/ftell.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/ftello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/ftello.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/funopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/funopen.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fvwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fvwrite.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fvwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fvwrite.h -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fwalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fwalk.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fwide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fwide.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fwprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fwprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fwrite.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/fwscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/fwscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/getc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/getc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/getchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/getchar.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/gets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/gets.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/gettemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/gettemp.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/getwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/getwc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/getwchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/getwchar.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/glue.h -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/local.h -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/makebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/makebuf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/mkdtemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/mkdtemp.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/mkstemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/mkstemp.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/mktemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/mktemp.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/perror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/perror.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/printf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/putc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/putc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/putchar.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/puts.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/putwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/putwc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/putwchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/putwchar.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/refill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/refill.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/remove.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/rewind.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/rget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/rget.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/scanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/setbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/setbuf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/setvbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/setvbuf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/snprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/sprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/sscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/stdio.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/swprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/swprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/swscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/swscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/tempnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/tempnam.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/tmpfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/tmpfile.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/tmpnam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/tmpnam.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/ungetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/ungetc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/ungetwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/ungetwc.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vfprintf.c: -------------------------------------------------------------------------------- 1 | #define NARROW 2 | #include "vfwprintf.c" 3 | -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vfscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/vfscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vfwscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/vfwscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/vprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/vscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/vsprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vsscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/vsscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vswscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/vswscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vwprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/vwprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/vwscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/vwscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/wbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/wbuf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/wcio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/wcio.h -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/wprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/wprintf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/wscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/wscanf.c -------------------------------------------------------------------------------- /StdLib/LibC/Stdio/wsetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Stdio/wsetup.c -------------------------------------------------------------------------------- /StdLib/LibC/String/Copying.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/String/Copying.c -------------------------------------------------------------------------------- /StdLib/LibC/String/Misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/String/Misc.c -------------------------------------------------------------------------------- /StdLib/LibC/String/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/String/strlcat.c -------------------------------------------------------------------------------- /StdLib/LibC/String/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/String/strlcpy.c -------------------------------------------------------------------------------- /StdLib/LibC/String/strsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/String/strsep.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/Theory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Time/Theory.txt -------------------------------------------------------------------------------- /StdLib/LibC/Time/Time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Time/Time.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/Time.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Time/Time.inf -------------------------------------------------------------------------------- /StdLib/LibC/Time/TimeEfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Time/TimeEfi.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/TimeVals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Time/TimeVals.h -------------------------------------------------------------------------------- /StdLib/LibC/Time/ZoneProc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Time/ZoneProc.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/itimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Time/itimer.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Time/strftime.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/strptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Time/strptime.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/timegm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Time/timegm.c -------------------------------------------------------------------------------- /StdLib/LibC/Time/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Time/tzfile.h -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/SysCalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Uefi/SysCalls.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/Uefi.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Uefi/Uefi.inf -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/Xform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Uefi/Xform.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Uefi/compat.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Uefi/select.c -------------------------------------------------------------------------------- /StdLib/LibC/Uefi/writev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Uefi/writev.c -------------------------------------------------------------------------------- /StdLib/LibC/Wchar/Copying.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Wchar/Copying.c -------------------------------------------------------------------------------- /StdLib/LibC/Wchar/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Wchar/String.c -------------------------------------------------------------------------------- /StdLib/LibC/Wchar/Wchar.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/Wchar/Wchar.inf -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/_strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/_strtof.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/_strtold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/_strtold.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/atof.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/dmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/dmisc.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/dtoa.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/gdtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/gdtoa.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/gdtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/gdtoa.h -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/gdtoa.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/gdtoa.inf -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/gdtoaimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/gdtoaimp.h -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/gethex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/gethex.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/gmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/gmisc.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/hd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/hd_init.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/hexnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/hexnan.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/ldtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/ldtoa.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/misc.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/smisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/smisc.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/strtod.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/strtodg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/strtodg.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/strtof.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/strtopx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/strtopx.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/sum.c -------------------------------------------------------------------------------- /StdLib/LibC/gdtoa/ulp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/LibC/gdtoa/ulp.c -------------------------------------------------------------------------------- /StdLib/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/License.txt -------------------------------------------------------------------------------- /StdLib/PosixLib/Gen/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/PosixLib/Gen/access.c -------------------------------------------------------------------------------- /StdLib/PosixLib/Gen/utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/PosixLib/Gen/utime.c -------------------------------------------------------------------------------- /StdLib/PosixLib/Glob/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/PosixLib/Glob/glob.c -------------------------------------------------------------------------------- /StdLib/PosixLib/PosixLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/PosixLib/PosixLib.inf -------------------------------------------------------------------------------- /StdLib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/ReadMe.txt -------------------------------------------------------------------------------- /StdLib/SocketDxe/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/SocketDxe/Socket.h -------------------------------------------------------------------------------- /StdLib/StdLib.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/StdLib.dec -------------------------------------------------------------------------------- /StdLib/StdLib.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/StdLib.dsc -------------------------------------------------------------------------------- /StdLib/StdLib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/StdLib/StdLib.inc -------------------------------------------------------------------------------- /UefiCpuPkg/Contributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/Contributions.txt -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/CpuDxe/CpuDxe.c -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/CpuDxe/CpuDxe.h -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/CpuDxe/CpuDxe.inf -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuDxe.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/CpuDxe/CpuDxe.uni -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuGdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/CpuDxe/CpuGdt.c -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuGdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/CpuDxe/CpuGdt.h -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuMp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/CpuDxe/CpuMp.c -------------------------------------------------------------------------------- /UefiCpuPkg/CpuDxe/CpuMp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/CpuDxe/CpuMp.h -------------------------------------------------------------------------------- /UefiCpuPkg/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/License.txt -------------------------------------------------------------------------------- /UefiCpuPkg/UefiCpuPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/UefiCpuPkg.dec -------------------------------------------------------------------------------- /UefiCpuPkg/UefiCpuPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/UefiCpuPkg.dsc -------------------------------------------------------------------------------- /UefiCpuPkg/UefiCpuPkg.uni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UefiCpuPkg/UefiCpuPkg.uni -------------------------------------------------------------------------------- /UnixPkg/Deprecated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/UnixPkg/Deprecated.txt -------------------------------------------------------------------------------- /Vlv2TbltDevicePkg/BfmLib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Vlv2TbltDevicePkg/BfmLib.exe -------------------------------------------------------------------------------- /Vlv2TbltDevicePkg/FCE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Vlv2TbltDevicePkg/FCE.exe -------------------------------------------------------------------------------- /Vlv2TbltDevicePkg/GenBiosId: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Vlv2TbltDevicePkg/GenBiosId -------------------------------------------------------------------------------- /Vlv2TbltDevicePkg/bldX64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Vlv2TbltDevicePkg/bldX64.bat -------------------------------------------------------------------------------- /Vlv2TbltDevicePkg/bld_vlv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Vlv2TbltDevicePkg/bld_vlv.sh -------------------------------------------------------------------------------- /Vlv2TbltDevicePkg/cln.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/Vlv2TbltDevicePkg/cln.sh -------------------------------------------------------------------------------- /edksetup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/edksetup.bat -------------------------------------------------------------------------------- /edksetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/ppc64le-edk2/HEAD/edksetup.sh --------------------------------------------------------------------------------