├── .gitignore ├── 3rdparty ├── Makefile ├── gnuefi │ ├── Makefile │ └── sub.sed ├── openssl │ ├── Makefile │ ├── efi │ │ ├── Makefile │ │ ├── include │ │ │ ├── assert.h │ │ │ ├── ctype.h │ │ │ ├── dlfcn.h │ │ │ ├── errno.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── memory.h │ │ │ ├── stdarg.h │ │ │ ├── stddef.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── strings.h │ │ │ ├── sys │ │ │ │ └── types.h │ │ │ ├── time.h │ │ │ └── unistd.h │ │ └── wrap │ └── linux │ │ └── Makefile ├── xz │ ├── Makefile │ ├── config.h │ ├── efi.mak │ ├── linux.mak │ ├── lzmaextras.c │ ├── lzmaextras.h │ └── testxz.c └── zlib │ ├── Makefile │ ├── efi.mak │ ├── linux.mak │ ├── testzlib.c │ ├── zlibextras.c │ └── zlibextras.h ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── VERSION ├── binaries ├── README.md └── lsvmtools-1.0.0-x86_64.tar.gz ├── configure ├── dbxupdate.bin ├── deb ├── Makefile ├── README └── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── install │ ├── rules │ └── source │ └── format ├── defs.mak ├── doc ├── LSVM_How_To.docx ├── LSVM_How_To.pdf ├── LSVM_Overview.docx ├── LSVM_Overview.pdf ├── howto │ ├── bootcrypt.txt │ ├── clonevm.txt │ ├── cpio.txt │ ├── cryptsetup.txt │ ├── efibootmgr.txt │ ├── extendpcr4.txt │ ├── extendpcr7.txt │ ├── git.txt │ ├── installing-ubuntu-16.04.txt │ ├── preconfigure.txt │ ├── reinstall-shim-and-grub.txt │ ├── startup-script.txt │ └── vfatfs.txt └── lsvm │ ├── GNUmakefile │ └── lsvm.texi ├── lsvmload ├── LOGO ├── Makefile ├── bootbio.c ├── bootbio.h ├── bootfs.c ├── bootfs.h ├── cert.c ├── config.h ├── console.c ├── console.h ├── dbxupdate.c ├── dbxupdate.h ├── devpath.c ├── devpath.h ├── diskbio.c ├── diskbio.h ├── efivfat.c ├── efivfat.h ├── efivfatfs.c ├── espwrap.c ├── espwrap.h ├── globals.c ├── globals.h ├── image.c ├── image.h ├── initrd.c ├── initrd.h ├── kernel.h ├── keys.c ├── keys.h ├── linkcheck ├── loadconf.c ├── loadconf.h ├── log.c ├── log.h ├── logging.c ├── logging.h ├── logo.c ├── luksbio.c ├── luksbio.h ├── main.c ├── measure.c ├── measure.h ├── paths.c ├── paths.h ├── progress.c ├── progress.h ├── rootfs.c ├── rootfs.h ├── shim.c ├── shim.h ├── simpletext.c ├── simpletext.h ├── specialize.c ├── specialize.h ├── stubs.c ├── trace.h └── version.c ├── lsvmprep ├── lsvmtool ├── Makefile ├── config.h ├── cpio.c ├── cpio.h ├── cpiomain.c ├── cpiosplit │ ├── Makefile │ ├── a.cpio │ ├── b.cpio │ └── c.cpio.gz ├── dbxupdate.c ├── dbxupdate.h ├── ext2main.c ├── ext2tests.bat ├── logo.c ├── lsvmtoolmain.c ├── main.c ├── sample │ ├── dir0 │ │ └── dir0.txt │ ├── dir1 │ │ └── readme.txt │ ├── dir2 │ │ └── readme.txt │ └── readme.txt ├── somedir │ ├── file1 │ └── file2 └── vfatmain.c ├── lsvmutils ├── Makefile ├── alloc.c ├── alloc.h ├── bcryptdefines.h ├── blkdev.c ├── blkdev.h ├── buf.c ├── buf.h ├── byteorder.h ├── cacheblkdev.c ├── cacheblkdev.h ├── chksum.h ├── conf.c ├── conf.h ├── config.h ├── cpio.c ├── cpio.h ├── dump.c ├── dump.h ├── efi.mak ├── efibio.c ├── efibio.h ├── efiblkdev.c ├── efiblkdev.h ├── eficommon.h ├── eficompat.h ├── efifile.c ├── efifile.h ├── efivarauth.h ├── error.c ├── error.h ├── exec.c ├── exec.h ├── ext2.c ├── ext2.h ├── file.c ├── file.h ├── getopt.c ├── getopt.h ├── gpt.c ├── gpt.h ├── grubcfg.c ├── grubcfg.h ├── guid.c ├── guid.h ├── heap.c ├── heap.h ├── initrd.c ├── initrd.h ├── inline.h ├── keys.c ├── keys.h ├── linux.h ├── linux.mak ├── linuxblkdev.c ├── lsvmloadpolicy.c ├── lsvmloadpolicy.h ├── lsvmloadtrace.h ├── luks.c ├── luks.h ├── luksblkdev.c ├── luksblkdev.h ├── lukscrypto.c ├── luksopenssl.c ├── measure.c ├── measure.h ├── memblkdev.c ├── memblkdev.h ├── pass.c ├── pass.h ├── peimage.c ├── peimage.h ├── policy.c ├── policy.h ├── print.c ├── print.h ├── sha.c ├── sha.h ├── specialize.c ├── specialize.h ├── strarr.c ├── strarr.h ├── strings.c ├── strings.h ├── strlcat.h ├── strlcpy.h ├── tcg2.c ├── tcg2.h ├── tpm2.c ├── tpm2.h ├── tpm2crypt.c ├── tpmbuf.c ├── tpmbuf.h ├── uefidb.c ├── uefidb.h ├── uefidbx.c ├── uefidbx.h ├── utils.c ├── utils.h ├── vars.c ├── vars.h ├── vfat.c └── vfat.h ├── policy ├── Makefile ├── bootkey.policy ├── bootkeysb.policy ├── final.policy ├── lsvmload.policy ├── lsvmloadsb.policy ├── rootkey.policy └── rootkeysb.policy ├── posix ├── Makefile ├── assert.c ├── ctype.c ├── dlfcn.c ├── efi.mak ├── errno.c ├── include │ ├── assert.h │ ├── ctype.h │ ├── dlfcn.h │ ├── errno.h │ ├── fcntl.h │ ├── inttypes.h │ ├── limits.h │ ├── math.h │ ├── memory.h │ ├── posix.h │ ├── signal.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── strings.h │ ├── sys │ │ └── types.h │ ├── time.h │ └── unistd.h ├── limits.c ├── linux.mak ├── readme.txt ├── stdio.c ├── stdlib.c ├── string.c ├── time.c └── unistd.c ├── rpm ├── Makefile ├── README └── SPECS │ └── lsvmtools.spec ├── rules.mak ├── sanity ├── scripts ├── blkdev_utils ├── bootdev ├── centos │ ├── patch_initrd │ ├── unpatch_initrd │ └── update_grub_config ├── dev │ ├── bashrc │ ├── chktabs │ ├── codereview │ ├── distroname │ ├── gcc │ ├── getdeps │ ├── initenv │ ├── kernelversion │ ├── sub │ ├── test_lsvmload │ └── vimrc ├── encryptboot ├── install ├── module-setup.sh ├── prependlic ├── redhat │ ├── patch_initrd │ ├── unpatch_initrd │ └── update_grub_config ├── rootdev ├── setuproot ├── sles │ ├── patch_initrd │ └── unpatch_initrd └── ubuntu │ ├── chown.hook │ ├── insmod.hook │ ├── lsvmaskpass │ ├── lsvmaskpass.hook │ ├── patch_cryptroot.hook │ ├── patch_initrd │ └── testlsvmaskpass └── striplic ├── Makefile ├── depend.mak └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/Makefile -------------------------------------------------------------------------------- /3rdparty/gnuefi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/gnuefi/Makefile -------------------------------------------------------------------------------- /3rdparty/gnuefi/sub.sed: -------------------------------------------------------------------------------- 1 | s/\*(.reloc)/KEEP(&)/g 2 | -------------------------------------------------------------------------------- /3rdparty/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/Makefile -------------------------------------------------------------------------------- /3rdparty/openssl/efi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/Makefile -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/assert.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/ctype.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/dlfcn.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/errno.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/limits.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/math.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/memory.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/stdarg.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/stddef.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/stdio.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/stdlib.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/string.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/strings.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/sys/types.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/time.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/include/unistd.h -------------------------------------------------------------------------------- /3rdparty/openssl/efi/wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/efi/wrap -------------------------------------------------------------------------------- /3rdparty/openssl/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/openssl/linux/Makefile -------------------------------------------------------------------------------- /3rdparty/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/xz/Makefile -------------------------------------------------------------------------------- /3rdparty/xz/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/xz/config.h -------------------------------------------------------------------------------- /3rdparty/xz/efi.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/xz/efi.mak -------------------------------------------------------------------------------- /3rdparty/xz/linux.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/xz/linux.mak -------------------------------------------------------------------------------- /3rdparty/xz/lzmaextras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/xz/lzmaextras.c -------------------------------------------------------------------------------- /3rdparty/xz/lzmaextras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/xz/lzmaextras.h -------------------------------------------------------------------------------- /3rdparty/xz/testxz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/xz/testxz.c -------------------------------------------------------------------------------- /3rdparty/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/zlib/Makefile -------------------------------------------------------------------------------- /3rdparty/zlib/efi.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/zlib/efi.mak -------------------------------------------------------------------------------- /3rdparty/zlib/linux.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/zlib/linux.mak -------------------------------------------------------------------------------- /3rdparty/zlib/testzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/zlib/testzlib.c -------------------------------------------------------------------------------- /3rdparty/zlib/zlibextras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/zlib/zlibextras.c -------------------------------------------------------------------------------- /3rdparty/zlib/zlibextras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/3rdparty/zlib/zlibextras.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /binaries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/binaries/README.md -------------------------------------------------------------------------------- /binaries/lsvmtools-1.0.0-x86_64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/binaries/lsvmtools-1.0.0-x86_64.tar.gz -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/configure -------------------------------------------------------------------------------- /dbxupdate.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/dbxupdate.bin -------------------------------------------------------------------------------- /deb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/deb/Makefile -------------------------------------------------------------------------------- /deb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/deb/README -------------------------------------------------------------------------------- /deb/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/deb/debian/changelog -------------------------------------------------------------------------------- /deb/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deb/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/deb/debian/control -------------------------------------------------------------------------------- /deb/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/deb/debian/copyright -------------------------------------------------------------------------------- /deb/debian/install: -------------------------------------------------------------------------------- 1 | lsvmtools-1.0.0-x86_64 opt 2 | -------------------------------------------------------------------------------- /deb/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/deb/debian/rules -------------------------------------------------------------------------------- /deb/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /defs.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/defs.mak -------------------------------------------------------------------------------- /doc/LSVM_How_To.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/LSVM_How_To.docx -------------------------------------------------------------------------------- /doc/LSVM_How_To.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/LSVM_How_To.pdf -------------------------------------------------------------------------------- /doc/LSVM_Overview.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/LSVM_Overview.docx -------------------------------------------------------------------------------- /doc/LSVM_Overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/LSVM_Overview.pdf -------------------------------------------------------------------------------- /doc/howto/bootcrypt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/bootcrypt.txt -------------------------------------------------------------------------------- /doc/howto/clonevm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/clonevm.txt -------------------------------------------------------------------------------- /doc/howto/cpio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/cpio.txt -------------------------------------------------------------------------------- /doc/howto/cryptsetup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/cryptsetup.txt -------------------------------------------------------------------------------- /doc/howto/efibootmgr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/efibootmgr.txt -------------------------------------------------------------------------------- /doc/howto/extendpcr4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/extendpcr4.txt -------------------------------------------------------------------------------- /doc/howto/extendpcr7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/extendpcr7.txt -------------------------------------------------------------------------------- /doc/howto/git.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/git.txt -------------------------------------------------------------------------------- /doc/howto/installing-ubuntu-16.04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/installing-ubuntu-16.04.txt -------------------------------------------------------------------------------- /doc/howto/preconfigure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/preconfigure.txt -------------------------------------------------------------------------------- /doc/howto/reinstall-shim-and-grub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/reinstall-shim-and-grub.txt -------------------------------------------------------------------------------- /doc/howto/startup-script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/startup-script.txt -------------------------------------------------------------------------------- /doc/howto/vfatfs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/howto/vfatfs.txt -------------------------------------------------------------------------------- /doc/lsvm/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/lsvm/GNUmakefile -------------------------------------------------------------------------------- /doc/lsvm/lsvm.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/doc/lsvm/lsvm.texi -------------------------------------------------------------------------------- /lsvmload/LOGO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/LOGO -------------------------------------------------------------------------------- /lsvmload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/Makefile -------------------------------------------------------------------------------- /lsvmload/bootbio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/bootbio.c -------------------------------------------------------------------------------- /lsvmload/bootbio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/bootbio.h -------------------------------------------------------------------------------- /lsvmload/bootfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/bootfs.c -------------------------------------------------------------------------------- /lsvmload/bootfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/bootfs.h -------------------------------------------------------------------------------- /lsvmload/cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/cert.c -------------------------------------------------------------------------------- /lsvmload/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/config.h -------------------------------------------------------------------------------- /lsvmload/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/console.c -------------------------------------------------------------------------------- /lsvmload/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/console.h -------------------------------------------------------------------------------- /lsvmload/dbxupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/dbxupdate.c -------------------------------------------------------------------------------- /lsvmload/dbxupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/dbxupdate.h -------------------------------------------------------------------------------- /lsvmload/devpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/devpath.c -------------------------------------------------------------------------------- /lsvmload/devpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/devpath.h -------------------------------------------------------------------------------- /lsvmload/diskbio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/diskbio.c -------------------------------------------------------------------------------- /lsvmload/diskbio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/diskbio.h -------------------------------------------------------------------------------- /lsvmload/efivfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/efivfat.c -------------------------------------------------------------------------------- /lsvmload/efivfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/efivfat.h -------------------------------------------------------------------------------- /lsvmload/efivfatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/efivfatfs.c -------------------------------------------------------------------------------- /lsvmload/espwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/espwrap.c -------------------------------------------------------------------------------- /lsvmload/espwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/espwrap.h -------------------------------------------------------------------------------- /lsvmload/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/globals.c -------------------------------------------------------------------------------- /lsvmload/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/globals.h -------------------------------------------------------------------------------- /lsvmload/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/image.c -------------------------------------------------------------------------------- /lsvmload/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/image.h -------------------------------------------------------------------------------- /lsvmload/initrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/initrd.c -------------------------------------------------------------------------------- /lsvmload/initrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/initrd.h -------------------------------------------------------------------------------- /lsvmload/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/kernel.h -------------------------------------------------------------------------------- /lsvmload/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/keys.c -------------------------------------------------------------------------------- /lsvmload/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/keys.h -------------------------------------------------------------------------------- /lsvmload/linkcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/linkcheck -------------------------------------------------------------------------------- /lsvmload/loadconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/loadconf.c -------------------------------------------------------------------------------- /lsvmload/loadconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/loadconf.h -------------------------------------------------------------------------------- /lsvmload/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/log.c -------------------------------------------------------------------------------- /lsvmload/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/log.h -------------------------------------------------------------------------------- /lsvmload/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/logging.c -------------------------------------------------------------------------------- /lsvmload/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/logging.h -------------------------------------------------------------------------------- /lsvmload/logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/logo.c -------------------------------------------------------------------------------- /lsvmload/luksbio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/luksbio.c -------------------------------------------------------------------------------- /lsvmload/luksbio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/luksbio.h -------------------------------------------------------------------------------- /lsvmload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/main.c -------------------------------------------------------------------------------- /lsvmload/measure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/measure.c -------------------------------------------------------------------------------- /lsvmload/measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/measure.h -------------------------------------------------------------------------------- /lsvmload/paths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/paths.c -------------------------------------------------------------------------------- /lsvmload/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/paths.h -------------------------------------------------------------------------------- /lsvmload/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/progress.c -------------------------------------------------------------------------------- /lsvmload/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/progress.h -------------------------------------------------------------------------------- /lsvmload/rootfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/rootfs.c -------------------------------------------------------------------------------- /lsvmload/rootfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/rootfs.h -------------------------------------------------------------------------------- /lsvmload/shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/shim.c -------------------------------------------------------------------------------- /lsvmload/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/shim.h -------------------------------------------------------------------------------- /lsvmload/simpletext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/simpletext.c -------------------------------------------------------------------------------- /lsvmload/simpletext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/simpletext.h -------------------------------------------------------------------------------- /lsvmload/specialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/specialize.c -------------------------------------------------------------------------------- /lsvmload/specialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/specialize.h -------------------------------------------------------------------------------- /lsvmload/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/stubs.c -------------------------------------------------------------------------------- /lsvmload/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/trace.h -------------------------------------------------------------------------------- /lsvmload/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmload/version.c -------------------------------------------------------------------------------- /lsvmprep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmprep -------------------------------------------------------------------------------- /lsvmtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/Makefile -------------------------------------------------------------------------------- /lsvmtool/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/config.h -------------------------------------------------------------------------------- /lsvmtool/cpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/cpio.c -------------------------------------------------------------------------------- /lsvmtool/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/cpio.h -------------------------------------------------------------------------------- /lsvmtool/cpiomain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/cpiomain.c -------------------------------------------------------------------------------- /lsvmtool/cpiosplit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/cpiosplit/Makefile -------------------------------------------------------------------------------- /lsvmtool/cpiosplit/a.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/cpiosplit/a.cpio -------------------------------------------------------------------------------- /lsvmtool/cpiosplit/b.cpio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/cpiosplit/b.cpio -------------------------------------------------------------------------------- /lsvmtool/cpiosplit/c.cpio.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/cpiosplit/c.cpio.gz -------------------------------------------------------------------------------- /lsvmtool/dbxupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/dbxupdate.c -------------------------------------------------------------------------------- /lsvmtool/dbxupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/dbxupdate.h -------------------------------------------------------------------------------- /lsvmtool/ext2main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/ext2main.c -------------------------------------------------------------------------------- /lsvmtool/ext2tests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/ext2tests.bat -------------------------------------------------------------------------------- /lsvmtool/logo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/logo.c -------------------------------------------------------------------------------- /lsvmtool/lsvmtoolmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/lsvmtoolmain.c -------------------------------------------------------------------------------- /lsvmtool/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/main.c -------------------------------------------------------------------------------- /lsvmtool/sample/dir0/dir0.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lsvmtool/sample/dir1/readme.txt: -------------------------------------------------------------------------------- 1 | This is dir1 2 | -------------------------------------------------------------------------------- /lsvmtool/sample/dir2/readme.txt: -------------------------------------------------------------------------------- 1 | This is dir2 2 | -------------------------------------------------------------------------------- /lsvmtool/sample/readme.txt: -------------------------------------------------------------------------------- 1 | This is my cpio archive. 2 | -------------------------------------------------------------------------------- /lsvmtool/somedir/file1: -------------------------------------------------------------------------------- 1 | 34 -------------------------------------------------------------------------------- /lsvmtool/somedir/file2: -------------------------------------------------------------------------------- 1 | 32 -------------------------------------------------------------------------------- /lsvmtool/vfatmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmtool/vfatmain.c -------------------------------------------------------------------------------- /lsvmutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/Makefile -------------------------------------------------------------------------------- /lsvmutils/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/alloc.c -------------------------------------------------------------------------------- /lsvmutils/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/alloc.h -------------------------------------------------------------------------------- /lsvmutils/bcryptdefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/bcryptdefines.h -------------------------------------------------------------------------------- /lsvmutils/blkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/blkdev.c -------------------------------------------------------------------------------- /lsvmutils/blkdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/blkdev.h -------------------------------------------------------------------------------- /lsvmutils/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/buf.c -------------------------------------------------------------------------------- /lsvmutils/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/buf.h -------------------------------------------------------------------------------- /lsvmutils/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/byteorder.h -------------------------------------------------------------------------------- /lsvmutils/cacheblkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/cacheblkdev.c -------------------------------------------------------------------------------- /lsvmutils/cacheblkdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/cacheblkdev.h -------------------------------------------------------------------------------- /lsvmutils/chksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/chksum.h -------------------------------------------------------------------------------- /lsvmutils/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/conf.c -------------------------------------------------------------------------------- /lsvmutils/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/conf.h -------------------------------------------------------------------------------- /lsvmutils/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/config.h -------------------------------------------------------------------------------- /lsvmutils/cpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/cpio.c -------------------------------------------------------------------------------- /lsvmutils/cpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/cpio.h -------------------------------------------------------------------------------- /lsvmutils/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/dump.c -------------------------------------------------------------------------------- /lsvmutils/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/dump.h -------------------------------------------------------------------------------- /lsvmutils/efi.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/efi.mak -------------------------------------------------------------------------------- /lsvmutils/efibio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/efibio.c -------------------------------------------------------------------------------- /lsvmutils/efibio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/efibio.h -------------------------------------------------------------------------------- /lsvmutils/efiblkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/efiblkdev.c -------------------------------------------------------------------------------- /lsvmutils/efiblkdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/efiblkdev.h -------------------------------------------------------------------------------- /lsvmutils/eficommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/eficommon.h -------------------------------------------------------------------------------- /lsvmutils/eficompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/eficompat.h -------------------------------------------------------------------------------- /lsvmutils/efifile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/efifile.c -------------------------------------------------------------------------------- /lsvmutils/efifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/efifile.h -------------------------------------------------------------------------------- /lsvmutils/efivarauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/efivarauth.h -------------------------------------------------------------------------------- /lsvmutils/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/error.c -------------------------------------------------------------------------------- /lsvmutils/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/error.h -------------------------------------------------------------------------------- /lsvmutils/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/exec.c -------------------------------------------------------------------------------- /lsvmutils/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/exec.h -------------------------------------------------------------------------------- /lsvmutils/ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/ext2.c -------------------------------------------------------------------------------- /lsvmutils/ext2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/ext2.h -------------------------------------------------------------------------------- /lsvmutils/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/file.c -------------------------------------------------------------------------------- /lsvmutils/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/file.h -------------------------------------------------------------------------------- /lsvmutils/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/getopt.c -------------------------------------------------------------------------------- /lsvmutils/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/getopt.h -------------------------------------------------------------------------------- /lsvmutils/gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/gpt.c -------------------------------------------------------------------------------- /lsvmutils/gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/gpt.h -------------------------------------------------------------------------------- /lsvmutils/grubcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/grubcfg.c -------------------------------------------------------------------------------- /lsvmutils/grubcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/grubcfg.h -------------------------------------------------------------------------------- /lsvmutils/guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/guid.c -------------------------------------------------------------------------------- /lsvmutils/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/guid.h -------------------------------------------------------------------------------- /lsvmutils/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/heap.c -------------------------------------------------------------------------------- /lsvmutils/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/heap.h -------------------------------------------------------------------------------- /lsvmutils/initrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/initrd.c -------------------------------------------------------------------------------- /lsvmutils/initrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/initrd.h -------------------------------------------------------------------------------- /lsvmutils/inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/inline.h -------------------------------------------------------------------------------- /lsvmutils/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/keys.c -------------------------------------------------------------------------------- /lsvmutils/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/keys.h -------------------------------------------------------------------------------- /lsvmutils/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/linux.h -------------------------------------------------------------------------------- /lsvmutils/linux.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/linux.mak -------------------------------------------------------------------------------- /lsvmutils/linuxblkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/linuxblkdev.c -------------------------------------------------------------------------------- /lsvmutils/lsvmloadpolicy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/lsvmloadpolicy.c -------------------------------------------------------------------------------- /lsvmutils/lsvmloadpolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/lsvmloadpolicy.h -------------------------------------------------------------------------------- /lsvmutils/lsvmloadtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/lsvmloadtrace.h -------------------------------------------------------------------------------- /lsvmutils/luks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/luks.c -------------------------------------------------------------------------------- /lsvmutils/luks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/luks.h -------------------------------------------------------------------------------- /lsvmutils/luksblkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/luksblkdev.c -------------------------------------------------------------------------------- /lsvmutils/luksblkdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/luksblkdev.h -------------------------------------------------------------------------------- /lsvmutils/lukscrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/lukscrypto.c -------------------------------------------------------------------------------- /lsvmutils/luksopenssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/luksopenssl.c -------------------------------------------------------------------------------- /lsvmutils/measure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/measure.c -------------------------------------------------------------------------------- /lsvmutils/measure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/measure.h -------------------------------------------------------------------------------- /lsvmutils/memblkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/memblkdev.c -------------------------------------------------------------------------------- /lsvmutils/memblkdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/memblkdev.h -------------------------------------------------------------------------------- /lsvmutils/pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/pass.c -------------------------------------------------------------------------------- /lsvmutils/pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/pass.h -------------------------------------------------------------------------------- /lsvmutils/peimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/peimage.c -------------------------------------------------------------------------------- /lsvmutils/peimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/peimage.h -------------------------------------------------------------------------------- /lsvmutils/policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/policy.c -------------------------------------------------------------------------------- /lsvmutils/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/policy.h -------------------------------------------------------------------------------- /lsvmutils/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/print.c -------------------------------------------------------------------------------- /lsvmutils/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/print.h -------------------------------------------------------------------------------- /lsvmutils/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/sha.c -------------------------------------------------------------------------------- /lsvmutils/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/sha.h -------------------------------------------------------------------------------- /lsvmutils/specialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/specialize.c -------------------------------------------------------------------------------- /lsvmutils/specialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/specialize.h -------------------------------------------------------------------------------- /lsvmutils/strarr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/strarr.c -------------------------------------------------------------------------------- /lsvmutils/strarr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/strarr.h -------------------------------------------------------------------------------- /lsvmutils/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/strings.c -------------------------------------------------------------------------------- /lsvmutils/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/strings.h -------------------------------------------------------------------------------- /lsvmutils/strlcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/strlcat.h -------------------------------------------------------------------------------- /lsvmutils/strlcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/strlcpy.h -------------------------------------------------------------------------------- /lsvmutils/tcg2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/tcg2.c -------------------------------------------------------------------------------- /lsvmutils/tcg2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/tcg2.h -------------------------------------------------------------------------------- /lsvmutils/tpm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/tpm2.c -------------------------------------------------------------------------------- /lsvmutils/tpm2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/tpm2.h -------------------------------------------------------------------------------- /lsvmutils/tpm2crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/tpm2crypt.c -------------------------------------------------------------------------------- /lsvmutils/tpmbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/tpmbuf.c -------------------------------------------------------------------------------- /lsvmutils/tpmbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/tpmbuf.h -------------------------------------------------------------------------------- /lsvmutils/uefidb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/uefidb.c -------------------------------------------------------------------------------- /lsvmutils/uefidb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/uefidb.h -------------------------------------------------------------------------------- /lsvmutils/uefidbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/uefidbx.c -------------------------------------------------------------------------------- /lsvmutils/uefidbx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/uefidbx.h -------------------------------------------------------------------------------- /lsvmutils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/utils.c -------------------------------------------------------------------------------- /lsvmutils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/utils.h -------------------------------------------------------------------------------- /lsvmutils/vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/vars.c -------------------------------------------------------------------------------- /lsvmutils/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/vars.h -------------------------------------------------------------------------------- /lsvmutils/vfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/vfat.c -------------------------------------------------------------------------------- /lsvmutils/vfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/lsvmutils/vfat.h -------------------------------------------------------------------------------- /policy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/policy/Makefile -------------------------------------------------------------------------------- /policy/bootkey.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/policy/bootkey.policy -------------------------------------------------------------------------------- /policy/bootkeysb.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/policy/bootkeysb.policy -------------------------------------------------------------------------------- /policy/final.policy: -------------------------------------------------------------------------------- 1 | #include "rootkey.policy" 2 | :CAP:11 3 | -------------------------------------------------------------------------------- /policy/lsvmload.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/policy/lsvmload.policy -------------------------------------------------------------------------------- /policy/lsvmloadsb.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/policy/lsvmloadsb.policy -------------------------------------------------------------------------------- /policy/rootkey.policy: -------------------------------------------------------------------------------- 1 | #include "bootkey.policy" 2 | :CAP:11 3 | -------------------------------------------------------------------------------- /policy/rootkeysb.policy: -------------------------------------------------------------------------------- 1 | #include "bootkeysb.policy" 2 | :CAP:11 3 | -------------------------------------------------------------------------------- /posix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/Makefile -------------------------------------------------------------------------------- /posix/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/assert.c -------------------------------------------------------------------------------- /posix/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/ctype.c -------------------------------------------------------------------------------- /posix/dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/dlfcn.c -------------------------------------------------------------------------------- /posix/efi.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/efi.mak -------------------------------------------------------------------------------- /posix/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/errno.c -------------------------------------------------------------------------------- /posix/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/assert.h -------------------------------------------------------------------------------- /posix/include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/ctype.h -------------------------------------------------------------------------------- /posix/include/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/dlfcn.h -------------------------------------------------------------------------------- /posix/include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/errno.h -------------------------------------------------------------------------------- /posix/include/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/fcntl.h -------------------------------------------------------------------------------- /posix/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/inttypes.h -------------------------------------------------------------------------------- /posix/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/limits.h -------------------------------------------------------------------------------- /posix/include/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/math.h -------------------------------------------------------------------------------- /posix/include/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/memory.h -------------------------------------------------------------------------------- /posix/include/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/posix.h -------------------------------------------------------------------------------- /posix/include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/signal.h -------------------------------------------------------------------------------- /posix/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/stdarg.h -------------------------------------------------------------------------------- /posix/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/stdbool.h -------------------------------------------------------------------------------- /posix/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/stddef.h -------------------------------------------------------------------------------- /posix/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/stdint.h -------------------------------------------------------------------------------- /posix/include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/stdio.h -------------------------------------------------------------------------------- /posix/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/stdlib.h -------------------------------------------------------------------------------- /posix/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/string.h -------------------------------------------------------------------------------- /posix/include/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/strings.h -------------------------------------------------------------------------------- /posix/include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/sys/types.h -------------------------------------------------------------------------------- /posix/include/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/time.h -------------------------------------------------------------------------------- /posix/include/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/include/unistd.h -------------------------------------------------------------------------------- /posix/limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/limits.c -------------------------------------------------------------------------------- /posix/linux.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/linux.mak -------------------------------------------------------------------------------- /posix/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/readme.txt -------------------------------------------------------------------------------- /posix/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/stdio.c -------------------------------------------------------------------------------- /posix/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/stdlib.c -------------------------------------------------------------------------------- /posix/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/string.c -------------------------------------------------------------------------------- /posix/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/time.c -------------------------------------------------------------------------------- /posix/unistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/posix/unistd.c -------------------------------------------------------------------------------- /rpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/rpm/Makefile -------------------------------------------------------------------------------- /rpm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/rpm/README -------------------------------------------------------------------------------- /rpm/SPECS/lsvmtools.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/rpm/SPECS/lsvmtools.spec -------------------------------------------------------------------------------- /rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/rules.mak -------------------------------------------------------------------------------- /sanity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/sanity -------------------------------------------------------------------------------- /scripts/blkdev_utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/blkdev_utils -------------------------------------------------------------------------------- /scripts/bootdev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/bootdev -------------------------------------------------------------------------------- /scripts/centos/patch_initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/centos/patch_initrd -------------------------------------------------------------------------------- /scripts/centos/unpatch_initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/centos/unpatch_initrd -------------------------------------------------------------------------------- /scripts/centos/update_grub_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/centos/update_grub_config -------------------------------------------------------------------------------- /scripts/dev/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/dev/bashrc -------------------------------------------------------------------------------- /scripts/dev/chktabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/dev/chktabs -------------------------------------------------------------------------------- /scripts/dev/codereview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/dev/codereview -------------------------------------------------------------------------------- /scripts/dev/distroname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/dev/distroname -------------------------------------------------------------------------------- /scripts/dev/gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/dev/gcc -------------------------------------------------------------------------------- /scripts/dev/getdeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/dev/getdeps -------------------------------------------------------------------------------- /scripts/dev/initenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/dev/initenv -------------------------------------------------------------------------------- /scripts/dev/kernelversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/dev/kernelversion -------------------------------------------------------------------------------- /scripts/dev/sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/dev/sub -------------------------------------------------------------------------------- /scripts/dev/test_lsvmload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/dev/test_lsvmload -------------------------------------------------------------------------------- /scripts/dev/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/dev/vimrc -------------------------------------------------------------------------------- /scripts/encryptboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/encryptboot -------------------------------------------------------------------------------- /scripts/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/install -------------------------------------------------------------------------------- /scripts/module-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/module-setup.sh -------------------------------------------------------------------------------- /scripts/prependlic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/prependlic -------------------------------------------------------------------------------- /scripts/redhat/patch_initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/redhat/patch_initrd -------------------------------------------------------------------------------- /scripts/redhat/unpatch_initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/redhat/unpatch_initrd -------------------------------------------------------------------------------- /scripts/redhat/update_grub_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/redhat/update_grub_config -------------------------------------------------------------------------------- /scripts/rootdev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/rootdev -------------------------------------------------------------------------------- /scripts/setuproot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/setuproot -------------------------------------------------------------------------------- /scripts/sles/patch_initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/sles/patch_initrd -------------------------------------------------------------------------------- /scripts/sles/unpatch_initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/sles/unpatch_initrd -------------------------------------------------------------------------------- /scripts/ubuntu/chown.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/ubuntu/chown.hook -------------------------------------------------------------------------------- /scripts/ubuntu/insmod.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/ubuntu/insmod.hook -------------------------------------------------------------------------------- /scripts/ubuntu/lsvmaskpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/ubuntu/lsvmaskpass -------------------------------------------------------------------------------- /scripts/ubuntu/lsvmaskpass.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/ubuntu/lsvmaskpass.hook -------------------------------------------------------------------------------- /scripts/ubuntu/patch_cryptroot.hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/ubuntu/patch_cryptroot.hook -------------------------------------------------------------------------------- /scripts/ubuntu/patch_initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/ubuntu/patch_initrd -------------------------------------------------------------------------------- /scripts/ubuntu/testlsvmaskpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/scripts/ubuntu/testlsvmaskpass -------------------------------------------------------------------------------- /striplic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/striplic/Makefile -------------------------------------------------------------------------------- /striplic/depend.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/striplic/depend.mak -------------------------------------------------------------------------------- /striplic/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lsvmtools/HEAD/striplic/main.c --------------------------------------------------------------------------------