├── .gitignore ├── .travis.yml ├── ABOUT-NLS ├── AUTHORS ├── BUGS ├── COPYING ├── ChangeLog-2015 ├── Changelog.md ├── INSTALL ├── Makefile.am ├── Makefile.util.def ├── NEWS ├── README ├── README.md ├── THANKS ├── TODO ├── acinclude.m4 ├── asm-tests ├── arm.S ├── i386-pc.S ├── i386.S ├── mips.S ├── powerpc.S └── sparc64.S ├── autogen.sh ├── conf ├── Makefile.common ├── Makefile.extra-dist └── i386-cygwin-img-ld.sc ├── config.h.in ├── configure.ac ├── coreboot.cfg ├── docs ├── Makefile.am ├── autoiso.cfg ├── fdl.texi ├── font_char_metrics.png ├── font_char_metrics.txt ├── grub-dev.texi ├── grub.cfg ├── grub.texi ├── man │ ├── grub-bios-setup.h2m │ ├── grub-editenv.h2m │ ├── grub-emu.h2m │ ├── grub-file.h2m │ ├── grub-fstest.h2m │ ├── grub-glue-efi.h2m │ ├── grub-install.h2m │ ├── grub-kbdcomp.h2m │ ├── grub-macbless.h2m │ ├── grub-macho2img.h2m │ ├── grub-menulst2cfg.h2m │ ├── grub-mkconfig.h2m │ ├── grub-mkfont.h2m │ ├── grub-mkimage.h2m │ ├── grub-mklayout.h2m │ ├── grub-mknetdir.h2m │ ├── grub-mkpasswd-pbkdf2.h2m │ ├── grub-mkrelpath.h2m │ ├── grub-mkrescue.h2m │ ├── grub-mkstandalone.h2m │ ├── grub-mount.h2m │ ├── grub-ofpathname.h2m │ ├── grub-pe2elf.h2m │ ├── grub-probe.h2m │ ├── grub-reboot.h2m │ ├── grub-render-label.h2m │ ├── grub-script-check.h2m │ ├── grub-set-default.h2m │ ├── grub-sparc64-setup.h2m │ └── grub-syslinux2cfg.h2m ├── mdate-sh ├── osdetect.cfg └── texinfo.tex ├── geninit.sh ├── gentpl.py ├── grub-core ├── Makefile.am ├── Makefile.core.def ├── boot │ ├── decompressor │ │ ├── minilib.c │ │ ├── none.c │ │ └── xz.c │ ├── i386 │ │ ├── pc │ │ │ ├── boot.S │ │ │ ├── cdboot.S │ │ │ ├── diskboot.S │ │ │ ├── lnxboot.S │ │ │ ├── lzma_decode.S │ │ │ ├── pxeboot.S │ │ │ └── startup_raw.S │ │ └── qemu │ │ │ └── boot.S │ ├── mips │ │ ├── loongson │ │ │ ├── fuloong2f.S │ │ │ └── fwstart.S │ │ └── startup_raw.S │ ├── powerpc │ │ ├── bootinfo.txt.in │ │ └── grub.chrp.in │ └── sparc64 │ │ └── ieee1275 │ │ ├── boot.S │ │ └── diskboot.S ├── bus │ ├── bonito.c │ ├── cs5536.c │ ├── emu │ │ └── pci.c │ ├── i386 │ │ └── ieee1275 │ │ │ └── pci.c │ ├── pci.c │ └── usb │ │ ├── ehci.c │ │ ├── ohci.c │ │ ├── serial │ │ ├── common.c │ │ ├── ftdi.c │ │ ├── pl2303.c │ │ └── usbdebug_late.c │ │ ├── uhci.c │ │ ├── usb.c │ │ ├── usbhub.c │ │ └── usbtrans.c ├── commands │ ├── acpi.c │ ├── acpihalt.c │ ├── arc │ │ └── lsdev.c │ ├── blocklist.c │ ├── boot.c │ ├── boottime.c │ ├── cacheinfo.c │ ├── cat.c │ ├── cmp.c │ ├── configfile.c │ ├── date.c │ ├── echo.c │ ├── efi │ │ ├── efifwsetup.c │ │ ├── fixvideo.c │ │ ├── loadbios.c │ │ ├── lsefi.c │ │ ├── lsefimmap.c │ │ ├── lsefisystab.c │ │ └── lssal.c │ ├── eval.c │ ├── extcmd.c │ ├── file.c │ ├── file32.c │ ├── file64.c │ ├── fileXX.c │ ├── gptsync.c │ ├── halt.c │ ├── hashsum.c │ ├── hdparm.c │ ├── help.c │ ├── hexdump.c │ ├── i386 │ │ ├── cmosdump.c │ │ ├── cmostest.c │ │ ├── coreboot │ │ │ ├── cb_timestamps.c │ │ │ └── cbls.c │ │ ├── cpuid.c │ │ └── pc │ │ │ ├── drivemap.c │ │ │ ├── drivemap_int13h.S │ │ │ ├── halt.c │ │ │ ├── lsapm.c │ │ │ ├── play.c │ │ │ └── sendkey.c │ ├── ieee1275 │ │ └── suspend.c │ ├── iorw.c │ ├── keylayouts.c │ ├── keystatus.c │ ├── legacycfg.c │ ├── loadenv.c │ ├── ls.c │ ├── lsacpi.c │ ├── lsmmap.c │ ├── lspci.c │ ├── macbless.c │ ├── memrw.c │ ├── menuentry.c │ ├── minicmd.c │ ├── mips │ │ └── loongson │ │ │ └── lsspd.c │ ├── nativedisk.c │ ├── parttool.c │ ├── password.c │ ├── password_pbkdf2.c │ ├── pcidump.c │ ├── probe.c │ ├── read.c │ ├── reboot.c │ ├── regexp.c │ ├── search.c │ ├── search_file.c │ ├── search_label.c │ ├── search_uuid.c │ ├── search_wrap.c │ ├── setpci.c │ ├── sleep.c │ ├── syslinuxcfg.c │ ├── terminal.c │ ├── test.c │ ├── testload.c │ ├── testspeed.c │ ├── time.c │ ├── tr.c │ ├── true.c │ ├── usbtest.c │ ├── verify.c │ ├── videoinfo.c │ ├── videotest.c │ ├── wildcard.c │ ├── xen │ │ └── lsxen.c │ └── xnu_uuid.c ├── disk │ ├── AFSplitter.c │ ├── ahci.c │ ├── arc │ │ └── arcdisk.c │ ├── ata.c │ ├── cryptodisk.c │ ├── diskfilter.c │ ├── dmraid_nvidia.c │ ├── efi │ │ └── efidisk.c │ ├── geli.c │ ├── host.c │ ├── i386 │ │ └── pc │ │ │ └── biosdisk.c │ ├── ieee1275 │ │ ├── nand.c │ │ └── ofdisk.c │ ├── ldm.c │ ├── loopback.c │ ├── luks.c │ ├── lvm.c │ ├── mdraid1x_linux.c │ ├── mdraid_linux.c │ ├── mdraid_linux_be.c │ ├── memdisk.c │ ├── pata.c │ ├── raid5_recover.c │ ├── raid6_recover.c │ ├── scsi.c │ ├── uboot │ │ └── ubootdisk.c │ ├── usbms.c │ └── xen │ │ └── xendisk.c ├── efiemu │ ├── i386 │ │ ├── coredetect.c │ │ ├── loadcore32.c │ │ ├── loadcore64.c │ │ ├── nocfgtables.c │ │ └── pc │ │ │ └── cfgtables.c │ ├── loadcore.c │ ├── loadcore32.c │ ├── loadcore64.c │ ├── loadcore_common.c │ ├── main.c │ ├── mm.c │ ├── pnvram.c │ ├── prepare.c │ ├── prepare32.c │ ├── prepare64.c │ ├── runtime │ │ ├── config.h │ │ ├── efiemu.S │ │ └── efiemu.c │ └── symbols.c ├── font │ ├── font.c │ └── font_cmd.c ├── fs │ ├── affs.c │ ├── afs.c │ ├── archelp.c │ ├── bfs.c │ ├── btrfs.c │ ├── cbfs.c │ ├── cpio.c │ ├── cpio_be.c │ ├── cpio_common.c │ ├── exfat.c │ ├── ext2.c │ ├── fat.c │ ├── fshelp.c │ ├── hfs.c │ ├── hfsplus.c │ ├── hfspluscomp.c │ ├── iso9660.c │ ├── jfs.c │ ├── minix.c │ ├── minix2.c │ ├── minix2_be.c │ ├── minix3.c │ ├── minix3_be.c │ ├── minix_be.c │ ├── newc.c │ ├── nilfs2.c │ ├── ntfs.c │ ├── ntfscomp.c │ ├── odc.c │ ├── proc.c │ ├── reiserfs.c │ ├── romfs.c │ ├── sfs.c │ ├── squash4.c │ ├── tar.c │ ├── udf.c │ ├── ufs.c │ ├── ufs2.c │ ├── ufs_be.c │ ├── xfs.c │ └── zfs │ │ ├── zfs.c │ │ ├── zfs_fletcher.c │ │ ├── zfs_lz4.c │ │ ├── zfs_lzjb.c │ │ ├── zfs_sha256.c │ │ ├── zfscrypt.c │ │ └── zfsinfo.c ├── gdb │ ├── cstub.c │ ├── gdb.c │ └── i386 │ │ ├── idt.c │ │ ├── machdep.S │ │ └── signal.c ├── gdb_grub.in ├── genemuinit.sh ├── genemuinitheader.sh ├── genmod.sh.in ├── genmoddep.awk ├── gensyminfo.sh.in ├── gensymlist.sh ├── gentrigtables.c ├── gettext │ └── gettext.c ├── gfxmenu │ ├── font.c │ ├── gfxmenu.c │ ├── gui_box.c │ ├── gui_canvas.c │ ├── gui_circular_progress.c │ ├── gui_image.c │ ├── gui_label.c │ ├── gui_list.c │ ├── gui_progress_bar.c │ ├── gui_string_util.c │ ├── gui_util.c │ ├── icon_manager.c │ ├── theme_loader.c │ ├── view.c │ └── widget-box.c ├── gmodule.pl.in ├── gnulib-fix-gcc7-fallthrough.diff ├── gnulib-fix-null-deref.diff ├── gnulib-fix-width.diff ├── gnulib-no-abort.diff ├── gnulib-no-gets.diff ├── gnulib │ ├── Makefile.am │ ├── alloca.c │ ├── alloca.in.h │ ├── argp-ba.c │ ├── argp-eexst.c │ ├── argp-fmtstream.c │ ├── argp-fmtstream.h │ ├── argp-fs-xinl.c │ ├── argp-help.c │ ├── argp-namefrob.h │ ├── argp-parse.c │ ├── argp-pin.c │ ├── argp-pv.c │ ├── argp-pvh.c │ ├── argp-xinl.c │ ├── argp.h │ ├── asnprintf.c │ ├── basename-lgpl.c │ ├── btowc.c │ ├── config.charset │ ├── dirname-lgpl.c │ ├── dirname.h │ ├── dosname.h │ ├── errno.in.h │ ├── error.c │ ├── error.h │ ├── float+.h │ ├── float.c │ ├── float.in.h │ ├── fnmatch.c │ ├── fnmatch.in.h │ ├── fnmatch_loop.c │ ├── getdelim.c │ ├── getline.c │ ├── getopt.c │ ├── getopt.in.h │ ├── getopt1.c │ ├── getopt_int.h │ ├── gettext.h │ ├── intprops.h │ ├── itold.c │ ├── langinfo.in.h │ ├── localcharset.c │ ├── localcharset.h │ ├── locale.in.h │ ├── localeconv.c │ ├── malloc.c │ ├── mbrtowc.c │ ├── mbsinit.c │ ├── mbsrtowcs-impl.h │ ├── mbsrtowcs-state.c │ ├── mbsrtowcs.c │ ├── mbswidth.c │ ├── mbswidth.h │ ├── mbtowc-impl.h │ ├── mbtowc.c │ ├── memchr.c │ ├── memchr.valgrind │ ├── mempcpy.c │ ├── msvc-inval.c │ ├── msvc-inval.h │ ├── msvc-nothrow.c │ ├── msvc-nothrow.h │ ├── nl_langinfo.c │ ├── printf-args.c │ ├── printf-args.h │ ├── printf-parse.c │ ├── printf-parse.h │ ├── progname.c │ ├── progname.h │ ├── rawmemchr.c │ ├── rawmemchr.valgrind │ ├── realloc.c │ ├── ref-add.sin │ ├── ref-del.sin │ ├── regcomp.c │ ├── regex.c │ ├── regex.h │ ├── regex_internal.c │ ├── regex_internal.h │ ├── regexec.c │ ├── size_max.h │ ├── sleep.c │ ├── stdalign.in.h │ ├── stdbool.in.h │ ├── stddef.in.h │ ├── stdint.in.h │ ├── stdio.in.h │ ├── stdlib.in.h │ ├── strcasecmp.c │ ├── strchrnul.c │ ├── strchrnul.valgrind │ ├── streq.h │ ├── strerror-override.c │ ├── strerror-override.h │ ├── strerror.c │ ├── string.in.h │ ├── strings.in.h │ ├── stripslash.c │ ├── strncasecmp.c │ ├── strndup.c │ ├── strnlen.c │ ├── strnlen1.c │ ├── strnlen1.h │ ├── sys_types.in.h │ ├── sysexits.in.h │ ├── unistd.c │ ├── unistd.in.h │ ├── unitypes.in.h │ ├── uniwidth.in.h │ ├── uniwidth │ │ ├── cjk.h │ │ └── width.c │ ├── vasnprintf.c │ ├── vasnprintf.h │ ├── verify.h │ ├── vsnprintf.c │ ├── wchar.in.h │ ├── wcrtomb.c │ ├── wctype-h.c │ ├── wctype.in.h │ ├── wcwidth.c │ ├── xsize.c │ └── xsize.h ├── hello │ └── hello.c ├── hook │ └── datehook.c ├── io │ ├── bufio.c │ ├── gzio.c │ ├── lzopio.c │ ├── offset.c │ └── xzio.c ├── kern │ ├── acpi.c │ ├── arm │ │ ├── cache.S │ │ ├── cache.c │ │ ├── cache_armv6.S │ │ ├── cache_armv7.S │ │ ├── compiler-rt.S │ │ ├── dl.c │ │ ├── dl_helper.c │ │ ├── efi │ │ │ ├── init.c │ │ │ ├── misc.c │ │ │ └── startup.S │ │ └── uboot │ │ │ └── startup.S │ ├── arm64 │ │ ├── cache.c │ │ ├── cache_flush.S │ │ ├── dl.c │ │ ├── dl_helper.c │ │ └── efi │ │ │ ├── init.c │ │ │ └── startup.S │ ├── command.c │ ├── compiler-rt.c │ ├── corecmd.c │ ├── device.c │ ├── disk.c │ ├── disk_common.c │ ├── dl.c │ ├── efi │ │ ├── acpi.c │ │ ├── efi.c │ │ ├── fdt.c │ │ ├── init.c │ │ └── mm.c │ ├── elf.c │ ├── elfXX.c │ ├── emu │ │ ├── argp_common.c │ │ ├── cache.c │ │ ├── cache_s.S │ │ ├── full.c │ │ ├── hostdisk.c │ │ ├── hostfs.c │ │ ├── lite.c │ │ ├── main.c │ │ ├── misc.c │ │ ├── mm.c │ │ └── time.c │ ├── env.c │ ├── err.c │ ├── file.c │ ├── fs.c │ ├── generic │ │ ├── millisleep.c │ │ └── rtc_get_time_ms.c │ ├── i386 │ │ ├── coreboot │ │ │ ├── cbtable.c │ │ │ ├── init.c │ │ │ ├── mmap.c │ │ │ └── startup.S │ │ ├── dl.c │ │ ├── efi │ │ │ ├── init.c │ │ │ ├── startup.S │ │ │ └── tsc.c │ │ ├── ieee1275 │ │ │ └── startup.S │ │ ├── int.S │ │ ├── multiboot_mmap.c │ │ ├── pc │ │ │ ├── acpi.c │ │ │ ├── init.c │ │ │ ├── mmap.c │ │ │ ├── startup.S │ │ │ └── tpm │ │ │ │ └── tpm_kern.c │ │ ├── qemu │ │ │ ├── init.c │ │ │ ├── mmap.c │ │ │ └── startup.S │ │ ├── realmode.S │ │ ├── tsc.c │ │ ├── tsc_pit.c │ │ ├── tsc_pmtimer.c │ │ └── xen │ │ │ ├── hypercall.S │ │ │ ├── startup.S │ │ │ └── tsc.c │ ├── ia64 │ │ ├── cache.c │ │ ├── dl.c │ │ ├── dl_helper.c │ │ └── efi │ │ │ ├── init.c │ │ │ └── startup.S │ ├── ieee1275 │ │ ├── cmain.c │ │ ├── ieee1275.c │ │ ├── init.c │ │ ├── mmap.c │ │ └── openfw.c │ ├── list.c │ ├── main.c │ ├── mips │ │ ├── arc │ │ │ └── init.c │ │ ├── cache.S │ │ ├── cache_flush.S │ │ ├── dl.c │ │ ├── init.c │ │ ├── loongson │ │ │ └── init.c │ │ ├── qemu_mips │ │ │ └── init.c │ │ └── startup.S │ ├── misc.c │ ├── mm.c │ ├── parser.c │ ├── partition.c │ ├── powerpc │ │ ├── cache.S │ │ ├── cache_flush.S │ │ ├── compiler-rt.S │ │ ├── dl.c │ │ └── ieee1275 │ │ │ └── startup.S │ ├── rescue_parser.c │ ├── rescue_reader.c │ ├── sha1.c │ ├── sparc64 │ │ ├── cache.S │ │ ├── dl.c │ │ └── ieee1275 │ │ │ ├── crt0.S │ │ │ └── ieee1275.c │ ├── term.c │ ├── time.c │ ├── tpm.c │ ├── uboot │ │ ├── hw.c │ │ ├── init.c │ │ └── uboot.c │ ├── vga_init.c │ ├── x86_64 │ │ ├── dl.c │ │ ├── efi │ │ │ ├── callwrap.S │ │ │ └── startup.S │ │ └── xen │ │ │ ├── hypercall.S │ │ │ └── startup.S │ └── xen │ │ └── init.c ├── lib │ ├── LzFind.c │ ├── LzmaDec.c │ ├── LzmaEnc.c │ ├── adler32.c │ ├── arc │ │ └── datetime.c │ ├── arg.c │ ├── arm │ │ └── setjmp.S │ ├── arm64 │ │ └── setjmp.S │ ├── backtrace.c │ ├── cmdline.c │ ├── cmos_datetime.c │ ├── crc.c │ ├── crc64.c │ ├── crypto.c │ ├── disk.c │ ├── division.c │ ├── efi │ │ ├── datetime.c │ │ ├── halt.c │ │ ├── reboot.c │ │ └── relocator.c │ ├── emu │ │ └── halt.c │ ├── envblk.c │ ├── fake_module.c │ ├── fdt.c │ ├── getline.c │ ├── hexdump.c │ ├── i386 │ │ ├── backtrace.c │ │ ├── halt.c │ │ ├── pc │ │ │ ├── biosnum.c │ │ │ └── vesa_modes_table.c │ │ ├── random.c │ │ ├── reboot.c │ │ ├── reboot_trampoline.S │ │ ├── relocator.c │ │ ├── relocator16.S │ │ ├── relocator32.S │ │ ├── relocator64.S │ │ ├── relocator_asm.S │ │ ├── relocator_common.S │ │ ├── relocator_common_c.c │ │ ├── setjmp.S │ │ └── xen │ │ │ └── relocator.S │ ├── ia64 │ │ ├── longjmp.S │ │ └── setjmp.S │ ├── ieee1275 │ │ ├── cmos.c │ │ ├── datetime.c │ │ ├── halt.c │ │ ├── reboot.c │ │ └── relocator.c │ ├── legacy_parse.c │ ├── libgcrypt │ │ ├── cipher │ │ │ ├── ChangeLog │ │ │ ├── ChangeLog-2011 │ │ │ ├── Makefile.am │ │ │ ├── Manifest │ │ │ ├── ac.c │ │ │ ├── arcfour.c │ │ │ ├── bithelp.h │ │ │ ├── blowfish.c │ │ │ ├── camellia-glue.c │ │ │ ├── camellia.c │ │ │ ├── camellia.h │ │ │ ├── cast5.c │ │ │ ├── cipher.c │ │ │ ├── crc.c │ │ │ ├── des.c │ │ │ ├── dsa.c │ │ │ ├── ecc.c │ │ │ ├── elgamal.c │ │ │ ├── hash-common.c │ │ │ ├── hash-common.h │ │ │ ├── hmac-tests.c │ │ │ ├── idea.c │ │ │ ├── kdf.c │ │ │ ├── md.c │ │ │ ├── md4.c │ │ │ ├── md5.c │ │ │ ├── primegen.c │ │ │ ├── pubkey.c │ │ │ ├── rfc2268.c │ │ │ ├── rijndael-tables.h │ │ │ ├── rijndael.c │ │ │ ├── rmd.h │ │ │ ├── rmd160.c │ │ │ ├── rsa.c │ │ │ ├── seed.c │ │ │ ├── serpent.c │ │ │ ├── sha1.c │ │ │ ├── sha256.c │ │ │ ├── sha512.c │ │ │ ├── test-getrusage.c │ │ │ ├── tiger.c │ │ │ ├── twofish.c │ │ │ └── whirlpool.c │ │ ├── mpi │ │ │ ├── ChangeLog-2011 │ │ │ ├── Makefile.am │ │ │ ├── Manifest │ │ │ ├── alpha │ │ │ │ ├── README │ │ │ │ ├── distfiles │ │ │ │ ├── mpih-add1.S │ │ │ │ ├── mpih-lshift.S │ │ │ │ ├── mpih-mul1.S │ │ │ │ ├── mpih-mul2.S │ │ │ │ ├── mpih-mul3.S │ │ │ │ ├── mpih-rshift.S │ │ │ │ ├── mpih-sub1.S │ │ │ │ └── udiv-qrnnd.S │ │ │ ├── amd64 │ │ │ │ ├── distfiles │ │ │ │ ├── mpi-asm-defs.h │ │ │ │ ├── mpih-add1.S │ │ │ │ ├── mpih-lshift.S │ │ │ │ ├── mpih-mul1.S │ │ │ │ ├── mpih-mul2.S │ │ │ │ ├── mpih-mul3.S │ │ │ │ ├── mpih-rshift.S │ │ │ │ └── mpih-sub1.S │ │ │ ├── config.links │ │ │ ├── ec.c │ │ │ ├── generic │ │ │ │ ├── Manifest │ │ │ │ ├── distfiles │ │ │ │ ├── mpi-asm-defs.h │ │ │ │ ├── mpih-add1.c │ │ │ │ ├── mpih-lshift.c │ │ │ │ ├── mpih-mul1.c │ │ │ │ ├── mpih-mul2.c │ │ │ │ ├── mpih-mul3.c │ │ │ │ ├── mpih-rshift.c │ │ │ │ ├── mpih-sub1.c │ │ │ │ └── udiv-w-sdiv.c │ │ │ ├── hppa │ │ │ │ ├── README │ │ │ │ ├── distfiles │ │ │ │ ├── mpih-add1.S │ │ │ │ ├── mpih-lshift.S │ │ │ │ ├── mpih-rshift.S │ │ │ │ ├── mpih-sub1.S │ │ │ │ └── udiv-qrnnd.S │ │ │ ├── i386 │ │ │ │ ├── Manifest │ │ │ │ ├── distfiles │ │ │ │ ├── mpih-add1.S │ │ │ │ ├── mpih-lshift.S │ │ │ │ ├── mpih-mul1.S │ │ │ │ ├── mpih-mul2.S │ │ │ │ ├── mpih-mul3.S │ │ │ │ ├── mpih-rshift.S │ │ │ │ ├── mpih-sub1.S │ │ │ │ └── syntax.h │ │ │ ├── i586 │ │ │ │ ├── Manifest │ │ │ │ ├── README │ │ │ │ ├── distfiles │ │ │ │ ├── mpih-add1.S │ │ │ │ ├── mpih-lshift.S │ │ │ │ ├── mpih-mul1.S │ │ │ │ ├── mpih-mul2.S │ │ │ │ ├── mpih-mul3.S │ │ │ │ ├── mpih-rshift.S │ │ │ │ └── mpih-sub1.S │ │ │ ├── longlong.h │ │ │ ├── m68k │ │ │ │ ├── Manifest │ │ │ │ ├── distfiles │ │ │ │ ├── mc68020 │ │ │ │ │ ├── Manifest │ │ │ │ │ ├── distfiles │ │ │ │ │ ├── mpih-mul1.S │ │ │ │ │ ├── mpih-mul2.S │ │ │ │ │ └── mpih-mul3.S │ │ │ │ ├── mpih-add1.S │ │ │ │ ├── mpih-lshift.S │ │ │ │ ├── mpih-rshift.S │ │ │ │ ├── mpih-sub1.S │ │ │ │ └── syntax.h │ │ │ ├── mips3 │ │ │ │ ├── Manifest │ │ │ │ ├── README │ │ │ │ ├── distfiles │ │ │ │ ├── mpi-asm-defs.h │ │ │ │ ├── mpih-add1.S │ │ │ │ ├── mpih-lshift.S │ │ │ │ ├── mpih-mul1.S │ │ │ │ ├── mpih-mul2.S │ │ │ │ ├── mpih-mul3.S │ │ │ │ ├── mpih-rshift.S │ │ │ │ └── mpih-sub1.S │ │ │ ├── mpi-add.c │ │ │ ├── mpi-bit.c │ │ │ ├── mpi-cmp.c │ │ │ ├── mpi-div.c │ │ │ ├── mpi-gcd.c │ │ │ ├── mpi-inline.c │ │ │ ├── mpi-inline.h │ │ │ ├── mpi-internal.h │ │ │ ├── mpi-inv.c │ │ │ ├── mpi-mod.c │ │ │ ├── mpi-mpow.c │ │ │ ├── mpi-mul.c │ │ │ ├── mpi-pow.c │ │ │ ├── mpi-scan.c │ │ │ ├── mpicoder.c │ │ │ ├── mpih-div.c │ │ │ ├── mpih-mul.c │ │ │ ├── mpiutil.c │ │ │ ├── pa7100 │ │ │ │ ├── Manifest │ │ │ │ ├── distfiles │ │ │ │ ├── mpih-lshift.S │ │ │ │ └── mpih-rshift.S │ │ │ ├── pentium4 │ │ │ │ ├── README │ │ │ │ ├── distfiles │ │ │ │ ├── mmx │ │ │ │ │ ├── distfiles │ │ │ │ │ ├── mpih-lshift.S │ │ │ │ │ └── mpih-rshift.S │ │ │ │ └── sse2 │ │ │ │ │ ├── distfiles │ │ │ │ │ ├── mpih-add1.S │ │ │ │ │ ├── mpih-mul1.S │ │ │ │ │ ├── mpih-mul2.S │ │ │ │ │ ├── mpih-mul3.S │ │ │ │ │ └── mpih-sub1.S │ │ │ ├── power │ │ │ │ ├── Manifest │ │ │ │ ├── distfiles │ │ │ │ ├── mpih-add1.S │ │ │ │ ├── mpih-lshift.S │ │ │ │ ├── mpih-mul1.S │ │ │ │ ├── mpih-mul2.S │ │ │ │ ├── mpih-mul3.S │ │ │ │ ├── mpih-rshift.S │ │ │ │ └── mpih-sub1.S │ │ │ ├── powerpc32 │ │ │ │ ├── Manifest │ │ │ │ ├── distfiles │ │ │ │ ├── mpih-add1.S │ │ │ │ ├── mpih-lshift.S │ │ │ │ ├── mpih-mul1.S │ │ │ │ ├── mpih-mul2.S │ │ │ │ ├── mpih-mul3.S │ │ │ │ ├── mpih-rshift.S │ │ │ │ ├── mpih-sub1.S │ │ │ │ └── syntax.h │ │ │ ├── powerpc64 │ │ │ │ └── distfiles │ │ │ ├── sparc32 │ │ │ │ ├── Manifest │ │ │ │ ├── distfiles │ │ │ │ ├── mpih-add1.S │ │ │ │ ├── mpih-lshift.S │ │ │ │ ├── mpih-rshift.S │ │ │ │ └── udiv.S │ │ │ ├── sparc32v8 │ │ │ │ ├── Manifest │ │ │ │ ├── distfiles │ │ │ │ ├── mpih-mul1.S │ │ │ │ ├── mpih-mul2.S │ │ │ │ └── mpih-mul3.S │ │ │ └── supersparc │ │ │ │ ├── Manifest │ │ │ │ ├── distfiles │ │ │ │ └── udiv.S │ │ └── src │ │ │ ├── ChangeLog-2011 │ │ │ ├── Makefile.am │ │ │ ├── Manifest │ │ │ ├── ath.c │ │ │ ├── ath.h │ │ │ ├── cipher-proto.h │ │ │ ├── cipher.h │ │ │ ├── dumpsexp.c │ │ │ ├── fips.c │ │ │ ├── g10lib.h │ │ │ ├── gcrypt-module.h │ │ │ ├── gcrypt.h.in │ │ │ ├── gcryptrnd.c │ │ │ ├── getrandom.c │ │ │ ├── global.c │ │ │ ├── hmac256.c │ │ │ ├── hmac256.h │ │ │ ├── hwfeatures.c │ │ │ ├── libgcrypt-config.in │ │ │ ├── libgcrypt.def │ │ │ ├── libgcrypt.m4 │ │ │ ├── libgcrypt.vers │ │ │ ├── misc.c │ │ │ ├── missing-string.c │ │ │ ├── module.c │ │ │ ├── mpi.h │ │ │ ├── secmem.c │ │ │ ├── secmem.h │ │ │ ├── sexp.c │ │ │ ├── stdmem.c │ │ │ ├── stdmem.h │ │ │ ├── types.h │ │ │ ├── versioninfo.rc.in │ │ │ ├── visibility.c │ │ │ └── visibility.h │ ├── libgcrypt_wrap │ │ ├── cipher_wrap.h │ │ └── mem.c │ ├── minilzo │ │ ├── lzoconf.h │ │ ├── lzodefs.h │ │ ├── minilzo.c │ │ └── minilzo.h │ ├── mips │ │ ├── arc │ │ │ └── reboot.c │ │ ├── loongson │ │ │ └── reboot.c │ │ ├── qemu_mips │ │ │ └── reboot.c │ │ ├── relocator.c │ │ ├── relocator_asm.S │ │ └── setjmp.S │ ├── pbkdf2.c │ ├── posix_wrap │ │ ├── assert.h │ │ ├── ctype.h │ │ ├── errno.h │ │ ├── inttypes.h │ │ ├── langinfo.h │ │ ├── limits.h │ │ ├── localcharset.h │ │ ├── locale.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── sys │ │ │ └── types.h │ │ ├── unistd.h │ │ ├── wchar.h │ │ └── wctype.h │ ├── powerpc │ │ ├── relocator.c │ │ ├── relocator_asm.S │ │ └── setjmp.S │ ├── priority_queue.c │ ├── progress.c │ ├── random.c │ ├── reed_solomon.c │ ├── relocator.c │ ├── setjmp.S │ ├── sparc64 │ │ └── setjmp.S │ ├── syslinux_parse.c │ ├── uboot │ │ ├── datetime.c │ │ ├── halt.c │ │ └── reboot.c │ ├── x86_64 │ │ ├── efi │ │ │ └── relocator.c │ │ ├── relocator_asm.S │ │ ├── setjmp.S │ │ └── xen │ │ │ └── relocator.S │ ├── xen │ │ ├── datetime.c │ │ ├── halt.c │ │ ├── reboot.c │ │ └── relocator.c │ └── xzembed │ │ ├── xz.h │ │ ├── xz_config.h │ │ ├── xz_dec_bcj.c │ │ ├── xz_dec_lzma2.c │ │ ├── xz_dec_stream.c │ │ ├── xz_lzma2.h │ │ ├── xz_private.h │ │ └── xz_stream.h ├── loader │ ├── aout.c │ ├── arm │ │ └── linux.c │ ├── arm64 │ │ ├── fdt.c │ │ ├── linux.c │ │ └── xen_boot.c │ ├── efi │ │ ├── appleloader.c │ │ └── chainloader.c │ ├── i386 │ │ ├── bsd.c │ │ ├── bsd32.c │ │ ├── bsd64.c │ │ ├── bsdXX.c │ │ ├── bsd_pagetable.c │ │ ├── coreboot │ │ │ └── chainloader.c │ │ ├── linux.c │ │ ├── multiboot_mbi.c │ │ ├── pc │ │ │ ├── chainloader.c │ │ │ ├── freedos.c │ │ │ ├── linux.c │ │ │ ├── ntldr.c │ │ │ ├── plan9.c │ │ │ ├── pxechainloader.c │ │ │ └── truecrypt.c │ │ ├── xen.c │ │ ├── xen_file.c │ │ ├── xen_file32.c │ │ ├── xen_file64.c │ │ ├── xen_fileXX.c │ │ └── xnu.c │ ├── ia64 │ │ └── efi │ │ │ └── linux.c │ ├── linux.c │ ├── lzss.c │ ├── macho.c │ ├── macho32.c │ ├── macho64.c │ ├── machoXX.c │ ├── mips │ │ └── linux.c │ ├── multiboot.c │ ├── multiboot_elfxx.c │ ├── multiboot_mbi2.c │ ├── powerpc │ │ └── ieee1275 │ │ │ └── linux.c │ ├── sparc64 │ │ └── ieee1275 │ │ │ └── linux.c │ ├── xnu.c │ └── xnu_resume.c ├── mmap │ ├── efi │ │ └── mmap.c │ ├── i386 │ │ ├── mmap.c │ │ ├── pc │ │ │ ├── mmap.c │ │ │ └── mmap_helper.S │ │ └── uppermem.c │ ├── mips │ │ └── uppermem.c │ └── mmap.c ├── modinfo.sh.in ├── net │ ├── arp.c │ ├── bootp.c │ ├── dns.c │ ├── drivers │ │ ├── efi │ │ │ └── efinet.c │ │ ├── emu │ │ │ └── emunet.c │ │ ├── i386 │ │ │ └── pc │ │ │ │ └── pxe.c │ │ ├── ieee1275 │ │ │ └── ofnet.c │ │ └── uboot │ │ │ └── ubootnet.c │ ├── ethernet.c │ ├── http.c │ ├── icmp.c │ ├── icmp6.c │ ├── ip.c │ ├── net.c │ ├── netbuff.c │ ├── tcp.c │ ├── tftp.c │ └── udp.c ├── normal │ ├── auth.c │ ├── autofs.c │ ├── charset.c │ ├── cmdline.c │ ├── color.c │ ├── completion.c │ ├── context.c │ ├── crypto.c │ ├── datetime.c │ ├── dyncmd.c │ ├── main.c │ ├── menu.c │ ├── menu_entry.c │ ├── menu_text.c │ ├── misc.c │ └── term.c ├── osdep │ ├── apple │ │ ├── getroot.c │ │ └── hostdisk.c │ ├── aros │ │ ├── config.c │ │ ├── getroot.c │ │ ├── hostdisk.c │ │ └── relpath.c │ ├── basic │ │ ├── compress.c │ │ ├── emunet.c │ │ ├── getroot.c │ │ ├── hostdisk.c │ │ ├── init.c │ │ ├── no_platform.c │ │ ├── ofpath.c │ │ ├── platform.c │ │ └── random.c │ ├── blocklist.c │ ├── bsd │ │ ├── getroot.c │ │ └── hostdisk.c │ ├── compress.c │ ├── config.c │ ├── cputime.c │ ├── devmapper │ │ ├── getroot.c │ │ └── hostdisk.c │ ├── dl.c │ ├── emuconsole.c │ ├── emunet.c │ ├── exec.c │ ├── freebsd │ │ ├── getroot.c │ │ └── hostdisk.c │ ├── generic │ │ └── blocklist.c │ ├── getroot.c │ ├── haiku │ │ ├── getroot.c │ │ └── hostdisk.c │ ├── hostdisk.c │ ├── hurd │ │ ├── getroot.c │ │ └── hostdisk.c │ ├── init.c │ ├── linux │ │ ├── blocklist.c │ │ ├── emunet.c │ │ ├── getroot.c │ │ ├── hostdisk.c │ │ ├── ofpath.c │ │ └── platform.c │ ├── ofpath.c │ ├── password.c │ ├── platform.c │ ├── platform_unix.c │ ├── random.c │ ├── relpath.c │ ├── sleep.c │ ├── sun │ │ ├── getroot.c │ │ └── hostdisk.c │ ├── unix │ │ ├── compress.c │ │ ├── config.c │ │ ├── cputime.c │ │ ├── dl.c │ │ ├── emuconsole.c │ │ ├── exec.c │ │ ├── getroot.c │ │ ├── hostdisk.c │ │ ├── password.c │ │ ├── platform.c │ │ ├── random.c │ │ ├── relpath.c │ │ └── sleep.c │ └── windows │ │ ├── blocklist.c │ │ ├── config.c │ │ ├── cputime.c │ │ ├── dl.c │ │ ├── emuconsole.c │ │ ├── getroot.c │ │ ├── hostdisk.c │ │ ├── init.c │ │ ├── password.c │ │ ├── platform.c │ │ ├── random.c │ │ ├── relpath.c │ │ └── sleep.c ├── partmap │ ├── acorn.c │ ├── amiga.c │ ├── apple.c │ ├── bsdlabel.c │ ├── dfly.c │ ├── dvh.c │ ├── gpt.c │ ├── msdos.c │ ├── plan.c │ ├── sun.c │ └── sunpc.c ├── parttool │ └── msdospart.c ├── script │ ├── argv.c │ ├── execute.c │ ├── function.c │ ├── lexer.c │ ├── main.c │ ├── parser.y │ ├── script.c │ └── yylex.l ├── term │ ├── arc │ │ ├── console.c │ │ └── serial.c │ ├── at_keyboard.c │ ├── efi │ │ ├── console.c │ │ └── serial.c │ ├── gfxterm.c │ ├── gfxterm_background.c │ ├── i386 │ │ ├── coreboot │ │ │ └── cbmemc.c │ │ └── pc │ │ │ ├── console.c │ │ │ ├── mda_text.c │ │ │ └── vga_text.c │ ├── ieee1275 │ │ ├── console.c │ │ ├── escc.c │ │ └── serial.c │ ├── morse.c │ ├── ns8250.c │ ├── serial.c │ ├── spkmodem.c │ ├── terminfo.c │ ├── tparm.c │ ├── uboot │ │ └── console.c │ ├── usb_keyboard.c │ └── xen │ │ └── console.c ├── tests │ ├── boot │ │ ├── kbsd.init-i386.S │ │ ├── kbsd.init-x86_64.S │ │ ├── kbsd.spec.txt │ │ ├── kernel-8086.S │ │ ├── kernel-i386.S │ │ ├── kfreebsd-aout.cfg │ │ ├── kfreebsd.cfg │ │ ├── kfreebsd.init-i386.S │ │ ├── kfreebsd.init-x86_64.S │ │ ├── knetbsd.cfg │ │ ├── kopenbsd.cfg │ │ ├── kopenbsdlabel.txt │ │ ├── linux-ppc.cfg │ │ ├── linux.cfg │ │ ├── linux.init-i386.S │ │ ├── linux.init-mips.S │ │ ├── linux.init-ppc.S │ │ ├── linux.init-x86_64.S │ │ ├── linux16.cfg │ │ ├── multiboot.cfg │ │ ├── multiboot2.cfg │ │ ├── ntldr.cfg │ │ ├── pc-chainloader.cfg │ │ └── qemu-shutdown-x86.S │ ├── bswap_test.c │ ├── checksums.h │ ├── cmdline_cat_test.c │ ├── cmp_test.c │ ├── ctz_test.c │ ├── div_test.c │ ├── example_functional_test.c │ ├── fake_input.c │ ├── gfxterm_menu.c │ ├── legacy_password_test.c │ ├── lib │ │ ├── functional_test.c │ │ └── test.c │ ├── mul_test.c │ ├── pbkdf2_test.c │ ├── setjmp_test.c │ ├── shift_test.c │ ├── signature_test.c │ ├── signatures.h │ ├── sleep_test.c │ ├── strtoull_test.c │ ├── test_blockarg.c │ ├── video_checksum.c │ ├── videotest_checksum.c │ └── xnu_uuid_test.c ├── tpm │ └── i386 │ │ └── pc │ │ └── tpm.c └── video │ ├── bitmap.c │ ├── bitmap_scale.c │ ├── bochs.c │ ├── capture.c │ ├── cirrus.c │ ├── colors.c │ ├── efi_gop.c │ ├── efi_uga.c │ ├── emu │ └── sdl.c │ ├── fb │ ├── fbblit.c │ ├── fbfill.c │ ├── fbutil.c │ └── video_fb.c │ ├── i386 │ ├── coreboot │ │ └── cbfb.c │ └── pc │ │ ├── vbe.c │ │ └── vga.c │ ├── ieee1275.c │ ├── radeon_fuloong2e.c │ ├── radeon_yeeloong3a.c │ ├── readers │ ├── jpeg.c │ ├── png.c │ └── tga.c │ ├── sis315_init.c │ ├── sis315pro.c │ ├── sm712.c │ ├── sm712_init.c │ └── video.c ├── include ├── grub │ ├── acorn_filecore.h │ ├── acpi.h │ ├── aout.h │ ├── arc │ │ ├── arc.h │ │ └── console.h │ ├── archelp.h │ ├── arm │ │ ├── efi │ │ │ ├── loader.h │ │ │ └── memory.h │ │ ├── linux.h │ │ ├── reloc.h │ │ ├── setjmp.h │ │ ├── system.h │ │ ├── time.h │ │ ├── types.h │ │ └── uboot │ │ │ └── kernel.h │ ├── arm64 │ │ ├── efi │ │ │ └── memory.h │ │ ├── fdtload.h │ │ ├── linux.h │ │ ├── reloc.h │ │ ├── setjmp.h │ │ ├── time.h │ │ └── types.h │ ├── at_keyboard.h │ ├── ata.h │ ├── auth.h │ ├── autoefi.h │ ├── backtrace.h │ ├── bitmap.h │ ├── bitmap_scale.h │ ├── boottime.h │ ├── bsdlabel.h │ ├── btrfs.h │ ├── bufio.h │ ├── cache.h │ ├── cbfs_core.h │ ├── charset.h │ ├── cmos.h │ ├── color.h │ ├── command.h │ ├── compiler-rt-emu.h │ ├── compiler-rt.h │ ├── compiler.h │ ├── crypto.h │ ├── cryptodisk.h │ ├── cs5536.h │ ├── datetime.h │ ├── decompressor.h │ ├── deflate.h │ ├── device.h │ ├── disk.h │ ├── diskfilter.h │ ├── dl.h │ ├── efi │ │ ├── api.h │ │ ├── console.h │ │ ├── console_control.h │ │ ├── disk.h │ │ ├── edid.h │ │ ├── efi.h │ │ ├── graphics_output.h │ │ ├── memory.h │ │ ├── pci.h │ │ ├── pe32.h │ │ └── uga_draw.h │ ├── efiemu │ │ ├── efiemu.h │ │ └── runtime.h │ ├── elf.h │ ├── elfload.h │ ├── emu │ │ ├── config.h │ │ ├── console.h │ │ ├── exec.h │ │ ├── getroot.h │ │ ├── hostdisk.h │ │ ├── hostfile.h │ │ ├── misc.h │ │ └── net.h │ ├── env.h │ ├── env_private.h │ ├── err.h │ ├── exfat.h │ ├── extcmd.h │ ├── fat.h │ ├── fbblit.h │ ├── fbfill.h │ ├── fbutil.h │ ├── fdt.h │ ├── file.h │ ├── fileid.h │ ├── font.h │ ├── fontformat.h │ ├── fs.h │ ├── fshelp.h │ ├── gcry │ │ └── types.h │ ├── gcrypt │ │ └── gpg-error.h │ ├── gdb.h │ ├── gfxmenu_model.h │ ├── gfxmenu_view.h │ ├── gfxterm.h │ ├── gfxwidgets.h │ ├── gpt_partition.h │ ├── gui.h │ ├── gui_string_util.h │ ├── hfs.h │ ├── hfsplus.h │ ├── i18n.h │ ├── i386 │ │ ├── at_keyboard.h │ │ ├── bsd.h │ │ ├── cmos.h │ │ ├── coreboot │ │ │ ├── boot.h │ │ │ ├── console.h │ │ │ ├── lbio.h │ │ │ ├── memory.h │ │ │ ├── serial.h │ │ │ └── time.h │ │ ├── cpuid.h │ │ ├── efi │ │ │ ├── memory.h │ │ │ └── serial.h │ │ ├── efiemu.h │ │ ├── floppy.h │ │ ├── freebsd_linker.h │ │ ├── freebsd_reboot.h │ │ ├── gdb.h │ │ ├── ieee1275 │ │ │ ├── ieee1275.h │ │ │ ├── memory.h │ │ │ └── serial.h │ │ ├── io.h │ │ ├── linux.h │ │ ├── macho.h │ │ ├── memory.h │ │ ├── memory_raw.h │ │ ├── multiboot.h │ │ ├── multiboot │ │ │ ├── boot.h │ │ │ ├── console.h │ │ │ ├── kernel.h │ │ │ ├── memory.h │ │ │ ├── serial.h │ │ │ └── time.h │ │ ├── netbsd_bootinfo.h │ │ ├── netbsd_reboot.h │ │ ├── openbsd_bootarg.h │ │ ├── openbsd_reboot.h │ │ ├── pc │ │ │ ├── apm.h │ │ │ ├── biosdisk.h │ │ │ ├── biosnum.h │ │ │ ├── boot.h │ │ │ ├── chainloader.h │ │ │ ├── console.h │ │ │ ├── int.h │ │ │ ├── kernel.h │ │ │ ├── memory.h │ │ │ ├── pxe.h │ │ │ ├── time.h │ │ │ ├── tpm.h │ │ │ ├── vbe.h │ │ │ └── vesa_modes_table.h │ │ ├── pci.h │ │ ├── pit.h │ │ ├── pmtimer.h │ │ ├── qemu │ │ │ ├── boot.h │ │ │ ├── console.h │ │ │ ├── kernel.h │ │ │ ├── memory.h │ │ │ ├── serial.h │ │ │ └── time.h │ │ ├── reboot.h │ │ ├── relocator.h │ │ ├── relocator_private.h │ │ ├── setjmp.h │ │ ├── time.h │ │ ├── tsc.h │ │ ├── types.h │ │ ├── xen │ │ │ ├── hypercall.h │ │ │ └── memory.h │ │ └── xnu.h │ ├── ia64 │ │ ├── efi │ │ │ ├── memory.h │ │ │ └── time.h │ │ ├── kernel.h │ │ ├── reloc.h │ │ ├── setjmp.h │ │ ├── time.h │ │ └── types.h │ ├── icon_manager.h │ ├── ieee1275 │ │ ├── console.h │ │ ├── ieee1275.h │ │ └── ofdisk.h │ ├── kernel.h │ ├── keyboard_layouts.h │ ├── legacy_parse.h │ ├── lib │ │ ├── LzFind.h │ │ ├── LzHash.h │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.h │ │ ├── LzmaTypes.h │ │ ├── arg.h │ │ ├── cmdline.h │ │ ├── crc.h │ │ ├── envblk.h │ │ └── hexdump.h │ ├── libpciaccess.h │ ├── linux.h │ ├── list.h │ ├── loader.h │ ├── lvm.h │ ├── macho.h │ ├── machoload.h │ ├── memory.h │ ├── menu.h │ ├── menu_viewer.h │ ├── mips │ │ ├── arc │ │ │ ├── kernel.h │ │ │ ├── memory.h │ │ │ └── time.h │ │ ├── asm.h │ │ ├── at_keyboard.h │ │ ├── cmos.h │ │ ├── io.h │ │ ├── kernel.h │ │ ├── loongson.h │ │ ├── loongson │ │ │ ├── at_keyboard.h │ │ │ ├── cmos.h │ │ │ ├── ec.h │ │ │ ├── kernel.h │ │ │ ├── memory.h │ │ │ ├── pci.h │ │ │ ├── serial.h │ │ │ └── time.h │ │ ├── memory.h │ │ ├── mips.h │ │ ├── multiboot.h │ │ ├── pci.h │ │ ├── qemu_mips │ │ │ ├── at_keyboard.h │ │ │ ├── cmos.h │ │ │ ├── console.h │ │ │ ├── kernel.h │ │ │ ├── loader.h │ │ │ ├── memory.h │ │ │ ├── serial.h │ │ │ └── time.h │ │ ├── relocator.h │ │ ├── setjmp.h │ │ ├── time.h │ │ └── types.h │ ├── misc.h │ ├── mm.h │ ├── mm_private.h │ ├── module_verifier.h │ ├── msdos_partition.h │ ├── multiboot.h │ ├── multiboot_loader.h │ ├── net.h │ ├── net │ │ ├── arp.h │ │ ├── ethernet.h │ │ ├── ip.h │ │ ├── netbuff.h │ │ ├── tcp.h │ │ └── udp.h │ ├── normal.h │ ├── ns8250.h │ ├── ntfs.h │ ├── offsets.h │ ├── osdep │ │ ├── hostfile.h │ │ ├── hostfile_aros.h │ │ ├── hostfile_unix.h │ │ └── hostfile_windows.h │ ├── parser.h │ ├── partition.h │ ├── parttool.h │ ├── pci.h │ ├── pciutils.h │ ├── powerpc │ │ ├── ieee1275 │ │ │ └── ieee1275.h │ │ ├── kernel.h │ │ ├── memory.h │ │ ├── relocator.h │ │ ├── setjmp.h │ │ ├── time.h │ │ └── types.h │ ├── priority_queue.h │ ├── procfs.h │ ├── pubkey.h │ ├── random.h │ ├── reader.h │ ├── reed_solomon.h │ ├── relocator.h │ ├── relocator_private.h │ ├── script_sh.h │ ├── scsi.h │ ├── scsicmd.h │ ├── sdl.h │ ├── search.h │ ├── serial.h │ ├── setjmp.h │ ├── sha1.h │ ├── smbus.h │ ├── sparc64 │ │ ├── ieee1275 │ │ │ ├── boot.h │ │ │ ├── ieee1275.h │ │ │ └── kernel.h │ │ ├── setjmp.h │ │ ├── time.h │ │ └── types.h │ ├── speaker.h │ ├── symbol.h │ ├── syslinux_parse.h │ ├── term.h │ ├── terminfo.h │ ├── test.h │ ├── time.h │ ├── tparm.h │ ├── tpm.h │ ├── trig.h │ ├── types.h │ ├── uboot │ │ ├── api_public.h │ │ ├── console.h │ │ ├── disk.h │ │ ├── image.h │ │ └── uboot.h │ ├── udf.h │ ├── unicode.h │ ├── usb.h │ ├── usbdesc.h │ ├── usbserial.h │ ├── usbtrans.h │ ├── util │ │ ├── install.h │ │ ├── libnvpair.h │ │ ├── libzfs.h │ │ ├── misc.h │ │ ├── mkimage.h │ │ ├── ofpath.h │ │ ├── resolve.h │ │ └── windows.h │ ├── vga.h │ ├── vgaregs.h │ ├── video.h │ ├── video_fb.h │ ├── x86_64 │ │ ├── at_keyboard.h │ │ ├── efi │ │ │ ├── boot.h │ │ │ ├── loader.h │ │ │ ├── memory.h │ │ │ └── serial.h │ │ ├── io.h │ │ ├── linux.h │ │ ├── macho.h │ │ ├── memory.h │ │ ├── multiboot.h │ │ ├── pci.h │ │ ├── relocator.h │ │ ├── setjmp.h │ │ ├── time.h │ │ ├── types.h │ │ ├── xen │ │ │ └── hypercall.h │ │ └── xnu.h │ ├── xen.h │ ├── xen │ │ └── relocator.h │ ├── xen_file.h │ ├── xnu.h │ └── zfs │ │ ├── dmu.h │ │ ├── dmu_objset.h │ │ ├── dnode.h │ │ ├── dsl_dataset.h │ │ ├── dsl_dir.h │ │ ├── sa_impl.h │ │ ├── spa.h │ │ ├── uberblock_impl.h │ │ ├── vdev_impl.h │ │ ├── zap_impl.h │ │ ├── zap_leaf.h │ │ ├── zfs.h │ │ ├── zfs_acl.h │ │ ├── zfs_znode.h │ │ ├── zil.h │ │ ├── zio.h │ │ └── zio_checksum.h ├── multiboot.h ├── multiboot2.h └── xen │ ├── arch-x86 │ ├── xen-x86_32.h │ ├── xen-x86_64.h │ └── xen.h │ ├── elfnote.h │ ├── event_channel.h │ ├── grant_table.h │ ├── io │ ├── blkif.h │ ├── console.h │ ├── protocols.h │ ├── ring.h │ ├── xenbus.h │ └── xs_wire.h │ ├── sched.h │ ├── xen-compat.h │ └── xen.h ├── linguas.sh ├── m4 ├── 00gnulib.m4 ├── alloca.m4 ├── argp.m4 ├── btowc.m4 ├── codeset.m4 ├── configmake.m4 ├── dirname.m4 ├── double-slash-root.m4 ├── eealloc.m4 ├── errno_h.m4 ├── error.m4 ├── exponentd.m4 ├── extensions.m4 ├── extern-inline.m4 ├── fcntl-o.m4 ├── float_h.m4 ├── fnmatch.m4 ├── getdelim.m4 ├── getline.m4 ├── getopt.m4 ├── gettext.m4 ├── glibc2.m4 ├── glibc21.m4 ├── gnulib-cache.m4 ├── gnulib-common.m4 ├── gnulib-comp.m4 ├── gnulib-tool.m4 ├── iconv.m4 ├── include_next.m4 ├── intdiv0.m4 ├── intl.m4 ├── intldir.m4 ├── intlmacosx.m4 ├── intmax.m4 ├── intmax_t.m4 ├── inttypes-pri.m4 ├── inttypes_h.m4 ├── langinfo_h.m4 ├── lcmessage.m4 ├── lib-ld.m4 ├── lib-link.m4 ├── lib-prefix.m4 ├── libunistring-base.m4 ├── localcharset.m4 ├── locale-fr.m4 ├── locale-ja.m4 ├── locale-zh.m4 ├── locale_h.m4 ├── localeconv.m4 ├── lock.m4 ├── longlong.m4 ├── malloc.m4 ├── math_h.m4 ├── mbrtowc.m4 ├── mbsinit.m4 ├── mbsrtowcs.m4 ├── mbstate_t.m4 ├── mbswidth.m4 ├── mbtowc.m4 ├── memchr.m4 ├── mempcpy.m4 ├── mmap-anon.m4 ├── msvc-inval.m4 ├── msvc-nothrow.m4 ├── multiarch.m4 ├── nl_langinfo.m4 ├── nls.m4 ├── nocrash.m4 ├── off_t.m4 ├── po.m4 ├── printf-posix.m4 ├── printf.m4 ├── progtest.m4 ├── rawmemchr.m4 ├── realloc.m4 ├── regex.m4 ├── size_max.m4 ├── sleep.m4 ├── ssize_t.m4 ├── stdalign.m4 ├── stdbool.m4 ├── stddef_h.m4 ├── stdint.m4 ├── stdint_h.m4 ├── stdio_h.m4 ├── stdlib_h.m4 ├── strcase.m4 ├── strchrnul.m4 ├── strerror.m4 ├── string_h.m4 ├── strings_h.m4 ├── strndup.m4 ├── strnlen.m4 ├── sys_socket_h.m4 ├── sys_types_h.m4 ├── sysexits.m4 ├── threadlib.m4 ├── uintmax_t.m4 ├── unistd_h.m4 ├── vasnprintf.m4 ├── visibility.m4 ├── vsnprintf.m4 ├── warn-on-use.m4 ├── wchar_h.m4 ├── wchar_t.m4 ├── wcrtomb.m4 ├── wctype_h.m4 ├── wcwidth.m4 ├── wint_t.m4 └── xsize.m4 ├── po ├── Makefile.in.in ├── Makevars ├── README ├── Rules-piglatin ├── Rules-quot ├── Rules-swiss ├── Rules-translit ├── Rules-windowsdir ├── arabic.sed ├── boldquot.sed ├── cyrillic.sed ├── en@boldquot.header ├── en@piglatin.header ├── en@quot.header ├── exclude.pot ├── greek.sed ├── grub.d.sed ├── hebrew.sed ├── insert-header.sin ├── piglatin.sed ├── quot.sed ├── remove-potcdate.sin └── swiss.sed ├── runSonarQubeAnalysis.sh ├── sonar-project.properties ├── tests ├── ahci_test.in ├── btrfs_test.in ├── cdboot_test.in ├── cmp_unit_test.c ├── core_compress_test.in ├── cpio_test.in ├── date_unit_test.c ├── dfly-mbr-mbexample.dfly.img.gz ├── dfly-mbr-mbexample.mbr.img.gz ├── ehci_test.in ├── example_grub_script_test.in ├── example_scripted_test.in ├── example_unit_test.c ├── exfat_test.in ├── ext234_test.in ├── fat_test.in ├── fddboot_test.in ├── file_filter │ ├── file │ ├── file.gz │ ├── file.gz.sig │ ├── file.lzop │ ├── file.lzop.sig │ ├── file.xz │ ├── file.xz.sig │ ├── keys │ ├── keys.pub │ └── test.cfg ├── file_filter_test.in ├── gettext_strings_test.in ├── grub_cmd_date.in ├── grub_cmd_echo.in ├── grub_cmd_regexp.in ├── grub_cmd_set_date.in ├── grub_cmd_sleep.in ├── grub_cmd_test.in ├── grub_cmd_tr.in ├── grub_func_test.in ├── grub_script_blanklines.in ├── grub_script_blockarg.in ├── grub_script_break.in ├── grub_script_comments.in ├── grub_script_continue.in ├── grub_script_dollar.in ├── grub_script_echo1.in ├── grub_script_echo_keywords.in ├── grub_script_escape_comma.in ├── grub_script_eval.in ├── grub_script_expansion.in ├── grub_script_final_semicolon.in ├── grub_script_for1.in ├── grub_script_functions.in ├── grub_script_gettext.in ├── grub_script_if.in ├── grub_script_leading_whitespace.in ├── grub_script_no_commands.in ├── grub_script_not.in ├── grub_script_return.in ├── grub_script_setparams.in ├── grub_script_shift.in ├── grub_script_strcmp.in ├── grub_script_test.in ├── grub_script_vars1.in ├── grub_script_while1.in ├── gzcompress_test.in ├── hddboot_test.in ├── help_test.in ├── hfs_test.in ├── hfsplus_test.in ├── iso9660_test.in ├── jfs_test.in ├── lib │ └── unit_test.c ├── lzocompress_test.in ├── minixfs_test.in ├── netboot_test.in ├── nilfs2_test.in ├── ntfs_test.in ├── ohci_test.in ├── partmap_test.in ├── pata_test.in ├── printf_unit_test.c ├── priority_queue_unit_test.cc ├── pseries_test.in ├── reiserfs_test.in ├── romfs_test.in ├── squashfs_test.in ├── syslinux │ ├── ubuntu10.04 │ │ └── isolinux │ │ │ ├── adtxt.cfg │ │ │ ├── dtmenu.cfg │ │ │ ├── exithelp.cfg │ │ │ ├── gfxboot.cfg │ │ │ ├── isolinux.cfg │ │ │ ├── menu.cfg │ │ │ ├── po4a.cfg │ │ │ ├── prompt.cfg │ │ │ ├── rqtxt.cfg │ │ │ ├── stdmenu.cfg │ │ │ └── txt.cfg │ └── ubuntu10.04_grub.cfg.in ├── syslinux_test.in ├── tar_test.in ├── test_sha512sum.in ├── test_unset.in ├── udf_test.in ├── uhci_test.in ├── util │ ├── grub-fs-tester.in │ ├── grub-shell-tester.in │ └── grub-shell.in ├── xfs_test.in ├── xzcompress_test.in └── zfs_test.in ├── themes └── starfield │ ├── COPYING.CC-BY-SA-3.0 │ ├── README │ ├── blob_w.png │ ├── boot_menu_c.png │ ├── boot_menu_e.png │ ├── boot_menu_n.png │ ├── boot_menu_ne.png │ ├── boot_menu_nw.png │ ├── boot_menu_s.png │ ├── boot_menu_se.png │ ├── boot_menu_sw.png │ ├── boot_menu_w.png │ ├── slider_c.png │ ├── slider_n.png │ ├── slider_s.png │ ├── src │ ├── blob_nw.xcf │ ├── bootmenu │ │ ├── center.xcf │ │ ├── corner.xcf │ │ └── side.xcf │ ├── slider_c.xcf │ ├── slider_n.xcf │ ├── slider_s.xcf │ └── terminalbox │ │ ├── center.xcf │ │ ├── corner.xcf │ │ └── side.xcf │ ├── starfield.png │ ├── terminal_box_c.png │ ├── terminal_box_e.png │ ├── terminal_box_n.png │ ├── terminal_box_ne.png │ ├── terminal_box_nw.png │ ├── terminal_box_s.png │ ├── terminal_box_se.png │ ├── terminal_box_sw.png │ ├── terminal_box_w.png │ └── theme.txt ├── unicode ├── ArabicShaping.txt ├── BidiMirroring.txt ├── COPYING └── UnicodeData.txt └── util ├── bash-completion.d ├── Makefile.am └── grub-completion.bash.in ├── bin2h.c ├── config.c ├── editenv.c ├── garbage-gen.c ├── getroot.c ├── glue-efi.c ├── grub-editenv.c ├── grub-file.c ├── grub-fstest.c ├── grub-gen-asciih.c ├── grub-gen-widthspec.c ├── grub-glue-efi.c ├── grub-install-common.c ├── grub-install.c ├── grub-kbdcomp.in ├── grub-macbless.c ├── grub-macho2img.c ├── grub-menulst2cfg.c ├── grub-mkconfig.in ├── grub-mkconfig_lib.in ├── grub-mkfont.c ├── grub-mkimage.c ├── grub-mkimage32.c ├── grub-mkimage64.c ├── grub-mkimagexx.c ├── grub-mklayout.c ├── grub-mknetdir.c ├── grub-mkpasswd-pbkdf2.c ├── grub-mkrelpath.c ├── grub-mkrescue.c ├── grub-mkstandalone.c ├── grub-module-verifier.c ├── grub-module-verifier32.c ├── grub-module-verifier64.c ├── grub-module-verifierXX.c ├── grub-mount.c ├── grub-pe2elf.c ├── grub-probe.c ├── grub-reboot.in ├── grub-render-label.c ├── grub-script-check.c ├── grub-set-default.in ├── grub-setup.c ├── grub-syslinux2cfg.c ├── grub.d ├── 00_header.in ├── 10_hurd.in ├── 10_illumos.in ├── 10_kfreebsd.in ├── 10_linux.in ├── 10_netbsd.in ├── 10_windows.in ├── 10_xnu.in ├── 20_linux_xen.in ├── 30_os-prober.in ├── 40_custom.in ├── 41_custom.in └── README ├── i386 └── efi │ └── grub-dumpdevtree ├── ieee1275 └── grub-ofpathname.c ├── import_gcry.py ├── import_gcrypth.sed ├── import_unicode.py ├── misc.c ├── mkimage.c ├── probe.c ├── render-label.c ├── resolve.c ├── setup.c ├── setup_bios.c ├── setup_sparc.c └── spkmodem-recv.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/.travis.yml -------------------------------------------------------------------------------- /ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/ABOUT-NLS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/BUGS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog-2015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/ChangeLog-2015 -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/Changelog.md -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.util.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/Makefile.util.def -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/README.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/THANKS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/TODO -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /asm-tests/arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/asm-tests/arm.S -------------------------------------------------------------------------------- /asm-tests/i386-pc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/asm-tests/i386-pc.S -------------------------------------------------------------------------------- /asm-tests/i386.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/asm-tests/i386.S -------------------------------------------------------------------------------- /asm-tests/mips.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/asm-tests/mips.S -------------------------------------------------------------------------------- /asm-tests/powerpc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/asm-tests/powerpc.S -------------------------------------------------------------------------------- /asm-tests/sparc64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/asm-tests/sparc64.S -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/autogen.sh -------------------------------------------------------------------------------- /conf/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/conf/Makefile.common -------------------------------------------------------------------------------- /conf/Makefile.extra-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/conf/Makefile.extra-dist -------------------------------------------------------------------------------- /conf/i386-cygwin-img-ld.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/conf/i386-cygwin-img-ld.sc -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/config.h.in -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/configure.ac -------------------------------------------------------------------------------- /coreboot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/coreboot.cfg -------------------------------------------------------------------------------- /docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/Makefile.am -------------------------------------------------------------------------------- /docs/autoiso.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/autoiso.cfg -------------------------------------------------------------------------------- /docs/fdl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/fdl.texi -------------------------------------------------------------------------------- /docs/font_char_metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/font_char_metrics.png -------------------------------------------------------------------------------- /docs/font_char_metrics.txt: -------------------------------------------------------------------------------- 1 | Please fill this in. 2 | -------------------------------------------------------------------------------- /docs/grub-dev.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/grub-dev.texi -------------------------------------------------------------------------------- /docs/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/grub.cfg -------------------------------------------------------------------------------- /docs/grub.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/grub.texi -------------------------------------------------------------------------------- /docs/man/grub-bios-setup.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-bios-setup.h2m -------------------------------------------------------------------------------- /docs/man/grub-editenv.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-editenv.h2m -------------------------------------------------------------------------------- /docs/man/grub-emu.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-emu.h2m -------------------------------------------------------------------------------- /docs/man/grub-file.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-file.h2m -------------------------------------------------------------------------------- /docs/man/grub-fstest.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-fstest.h2m -------------------------------------------------------------------------------- /docs/man/grub-glue-efi.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-glue-efi.h2m -------------------------------------------------------------------------------- /docs/man/grub-install.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-install.h2m -------------------------------------------------------------------------------- /docs/man/grub-kbdcomp.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-kbdcomp.h2m -------------------------------------------------------------------------------- /docs/man/grub-macbless.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-macbless.h2m -------------------------------------------------------------------------------- /docs/man/grub-macho2img.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-macho2img.h2m -------------------------------------------------------------------------------- /docs/man/grub-mkconfig.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-mkconfig.h2m -------------------------------------------------------------------------------- /docs/man/grub-mkfont.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-mkfont.h2m -------------------------------------------------------------------------------- /docs/man/grub-mkimage.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-mkimage.h2m -------------------------------------------------------------------------------- /docs/man/grub-mklayout.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-mklayout.h2m -------------------------------------------------------------------------------- /docs/man/grub-mknetdir.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-mknetdir.h2m -------------------------------------------------------------------------------- /docs/man/grub-mkrelpath.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-mkrelpath.h2m -------------------------------------------------------------------------------- /docs/man/grub-mkrescue.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-mkrescue.h2m -------------------------------------------------------------------------------- /docs/man/grub-mount.h2m: -------------------------------------------------------------------------------- 1 | [NAME] 2 | grub-mount \- export GRUB filesystem with FUSE 3 | -------------------------------------------------------------------------------- /docs/man/grub-ofpathname.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-ofpathname.h2m -------------------------------------------------------------------------------- /docs/man/grub-pe2elf.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-pe2elf.h2m -------------------------------------------------------------------------------- /docs/man/grub-probe.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-probe.h2m -------------------------------------------------------------------------------- /docs/man/grub-reboot.h2m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/man/grub-reboot.h2m -------------------------------------------------------------------------------- /docs/mdate-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/mdate-sh -------------------------------------------------------------------------------- /docs/osdetect.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/osdetect.cfg -------------------------------------------------------------------------------- /docs/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/docs/texinfo.tex -------------------------------------------------------------------------------- /geninit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/geninit.sh -------------------------------------------------------------------------------- /gentpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/gentpl.py -------------------------------------------------------------------------------- /grub-core/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/Makefile.am -------------------------------------------------------------------------------- /grub-core/Makefile.core.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/Makefile.core.def -------------------------------------------------------------------------------- /grub-core/boot/mips/loongson/fuloong2f.S: -------------------------------------------------------------------------------- 1 | #define FULOONG2F 1 2 | #include "fwstart.S" 3 | -------------------------------------------------------------------------------- /grub-core/bus/bonito.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/bus/bonito.c -------------------------------------------------------------------------------- /grub-core/bus/cs5536.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/bus/cs5536.c -------------------------------------------------------------------------------- /grub-core/bus/emu/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/bus/emu/pci.c -------------------------------------------------------------------------------- /grub-core/bus/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/bus/pci.c -------------------------------------------------------------------------------- /grub-core/bus/usb/ehci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/bus/usb/ehci.c -------------------------------------------------------------------------------- /grub-core/bus/usb/ohci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/bus/usb/ohci.c -------------------------------------------------------------------------------- /grub-core/bus/usb/uhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/bus/usb/uhci.c -------------------------------------------------------------------------------- /grub-core/bus/usb/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/bus/usb/usb.c -------------------------------------------------------------------------------- /grub-core/bus/usb/usbhub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/bus/usb/usbhub.c -------------------------------------------------------------------------------- /grub-core/bus/usb/usbtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/bus/usb/usbtrans.c -------------------------------------------------------------------------------- /grub-core/commands/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/acpi.c -------------------------------------------------------------------------------- /grub-core/commands/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/boot.c -------------------------------------------------------------------------------- /grub-core/commands/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/cat.c -------------------------------------------------------------------------------- /grub-core/commands/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/cmp.c -------------------------------------------------------------------------------- /grub-core/commands/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/date.c -------------------------------------------------------------------------------- /grub-core/commands/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/echo.c -------------------------------------------------------------------------------- /grub-core/commands/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/eval.c -------------------------------------------------------------------------------- /grub-core/commands/extcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/extcmd.c -------------------------------------------------------------------------------- /grub-core/commands/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/file.c -------------------------------------------------------------------------------- /grub-core/commands/file32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/file32.c -------------------------------------------------------------------------------- /grub-core/commands/file64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/file64.c -------------------------------------------------------------------------------- /grub-core/commands/fileXX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/fileXX.c -------------------------------------------------------------------------------- /grub-core/commands/gptsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/gptsync.c -------------------------------------------------------------------------------- /grub-core/commands/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/halt.c -------------------------------------------------------------------------------- /grub-core/commands/hashsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/hashsum.c -------------------------------------------------------------------------------- /grub-core/commands/hdparm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/hdparm.c -------------------------------------------------------------------------------- /grub-core/commands/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/help.c -------------------------------------------------------------------------------- /grub-core/commands/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/hexdump.c -------------------------------------------------------------------------------- /grub-core/commands/iorw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/iorw.c -------------------------------------------------------------------------------- /grub-core/commands/loadenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/loadenv.c -------------------------------------------------------------------------------- /grub-core/commands/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/ls.c -------------------------------------------------------------------------------- /grub-core/commands/lsacpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/lsacpi.c -------------------------------------------------------------------------------- /grub-core/commands/lsmmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/lsmmap.c -------------------------------------------------------------------------------- /grub-core/commands/lspci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/lspci.c -------------------------------------------------------------------------------- /grub-core/commands/memrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/memrw.c -------------------------------------------------------------------------------- /grub-core/commands/minicmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/minicmd.c -------------------------------------------------------------------------------- /grub-core/commands/pcidump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/pcidump.c -------------------------------------------------------------------------------- /grub-core/commands/probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/probe.c -------------------------------------------------------------------------------- /grub-core/commands/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/read.c -------------------------------------------------------------------------------- /grub-core/commands/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/reboot.c -------------------------------------------------------------------------------- /grub-core/commands/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/regexp.c -------------------------------------------------------------------------------- /grub-core/commands/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/search.c -------------------------------------------------------------------------------- /grub-core/commands/setpci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/setpci.c -------------------------------------------------------------------------------- /grub-core/commands/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/sleep.c -------------------------------------------------------------------------------- /grub-core/commands/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/test.c -------------------------------------------------------------------------------- /grub-core/commands/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/time.c -------------------------------------------------------------------------------- /grub-core/commands/tr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/tr.c -------------------------------------------------------------------------------- /grub-core/commands/true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/true.c -------------------------------------------------------------------------------- /grub-core/commands/usbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/usbtest.c -------------------------------------------------------------------------------- /grub-core/commands/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/commands/verify.c -------------------------------------------------------------------------------- /grub-core/disk/AFSplitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/AFSplitter.c -------------------------------------------------------------------------------- /grub-core/disk/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/ahci.c -------------------------------------------------------------------------------- /grub-core/disk/arc/arcdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/arc/arcdisk.c -------------------------------------------------------------------------------- /grub-core/disk/ata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/ata.c -------------------------------------------------------------------------------- /grub-core/disk/cryptodisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/cryptodisk.c -------------------------------------------------------------------------------- /grub-core/disk/diskfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/diskfilter.c -------------------------------------------------------------------------------- /grub-core/disk/efi/efidisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/efi/efidisk.c -------------------------------------------------------------------------------- /grub-core/disk/geli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/geli.c -------------------------------------------------------------------------------- /grub-core/disk/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/host.c -------------------------------------------------------------------------------- /grub-core/disk/ldm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/ldm.c -------------------------------------------------------------------------------- /grub-core/disk/loopback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/loopback.c -------------------------------------------------------------------------------- /grub-core/disk/luks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/luks.c -------------------------------------------------------------------------------- /grub-core/disk/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/lvm.c -------------------------------------------------------------------------------- /grub-core/disk/mdraid_linux_be.c: -------------------------------------------------------------------------------- 1 | #define MODE_BIGENDIAN 1 2 | #include "mdraid_linux.c" 3 | -------------------------------------------------------------------------------- /grub-core/disk/memdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/memdisk.c -------------------------------------------------------------------------------- /grub-core/disk/pata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/pata.c -------------------------------------------------------------------------------- /grub-core/disk/scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/scsi.c -------------------------------------------------------------------------------- /grub-core/disk/usbms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/usbms.c -------------------------------------------------------------------------------- /grub-core/disk/xen/xendisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/disk/xen/xendisk.c -------------------------------------------------------------------------------- /grub-core/efiemu/loadcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/efiemu/loadcore.c -------------------------------------------------------------------------------- /grub-core/efiemu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/efiemu/main.c -------------------------------------------------------------------------------- /grub-core/efiemu/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/efiemu/mm.c -------------------------------------------------------------------------------- /grub-core/efiemu/pnvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/efiemu/pnvram.c -------------------------------------------------------------------------------- /grub-core/efiemu/prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/efiemu/prepare.c -------------------------------------------------------------------------------- /grub-core/efiemu/prepare32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/efiemu/prepare32.c -------------------------------------------------------------------------------- /grub-core/efiemu/prepare64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/efiemu/prepare64.c -------------------------------------------------------------------------------- /grub-core/efiemu/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/efiemu/symbols.c -------------------------------------------------------------------------------- /grub-core/font/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/font/font.c -------------------------------------------------------------------------------- /grub-core/font/font_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/font/font_cmd.c -------------------------------------------------------------------------------- /grub-core/fs/affs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/affs.c -------------------------------------------------------------------------------- /grub-core/fs/afs.c: -------------------------------------------------------------------------------- 1 | #define MODE_AFS 1 2 | #include "bfs.c" 3 | 4 | -------------------------------------------------------------------------------- /grub-core/fs/archelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/archelp.c -------------------------------------------------------------------------------- /grub-core/fs/bfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/bfs.c -------------------------------------------------------------------------------- /grub-core/fs/btrfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/btrfs.c -------------------------------------------------------------------------------- /grub-core/fs/cbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/cbfs.c -------------------------------------------------------------------------------- /grub-core/fs/cpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/cpio.c -------------------------------------------------------------------------------- /grub-core/fs/cpio_be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/cpio_be.c -------------------------------------------------------------------------------- /grub-core/fs/cpio_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/cpio_common.c -------------------------------------------------------------------------------- /grub-core/fs/exfat.c: -------------------------------------------------------------------------------- 1 | #define MODE_EXFAT 1 2 | #include "fat.c" 3 | -------------------------------------------------------------------------------- /grub-core/fs/ext2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/ext2.c -------------------------------------------------------------------------------- /grub-core/fs/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/fat.c -------------------------------------------------------------------------------- /grub-core/fs/fshelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/fshelp.c -------------------------------------------------------------------------------- /grub-core/fs/hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/hfs.c -------------------------------------------------------------------------------- /grub-core/fs/hfsplus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/hfsplus.c -------------------------------------------------------------------------------- /grub-core/fs/hfspluscomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/hfspluscomp.c -------------------------------------------------------------------------------- /grub-core/fs/iso9660.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/iso9660.c -------------------------------------------------------------------------------- /grub-core/fs/jfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/jfs.c -------------------------------------------------------------------------------- /grub-core/fs/minix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/minix.c -------------------------------------------------------------------------------- /grub-core/fs/minix2.c: -------------------------------------------------------------------------------- 1 | #define MODE_MINIX2 1 2 | #include "minix.c" 3 | -------------------------------------------------------------------------------- /grub-core/fs/minix2_be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/minix2_be.c -------------------------------------------------------------------------------- /grub-core/fs/minix3.c: -------------------------------------------------------------------------------- 1 | #define MODE_MINIX3 1 2 | #include "minix.c" 3 | -------------------------------------------------------------------------------- /grub-core/fs/minix3_be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/minix3_be.c -------------------------------------------------------------------------------- /grub-core/fs/minix_be.c: -------------------------------------------------------------------------------- 1 | #define MODE_BIGENDIAN 1 2 | #include "minix.c" 3 | -------------------------------------------------------------------------------- /grub-core/fs/newc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/newc.c -------------------------------------------------------------------------------- /grub-core/fs/nilfs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/nilfs2.c -------------------------------------------------------------------------------- /grub-core/fs/ntfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/ntfs.c -------------------------------------------------------------------------------- /grub-core/fs/ntfscomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/ntfscomp.c -------------------------------------------------------------------------------- /grub-core/fs/odc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/odc.c -------------------------------------------------------------------------------- /grub-core/fs/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/proc.c -------------------------------------------------------------------------------- /grub-core/fs/reiserfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/reiserfs.c -------------------------------------------------------------------------------- /grub-core/fs/romfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/romfs.c -------------------------------------------------------------------------------- /grub-core/fs/sfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/sfs.c -------------------------------------------------------------------------------- /grub-core/fs/squash4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/squash4.c -------------------------------------------------------------------------------- /grub-core/fs/tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/tar.c -------------------------------------------------------------------------------- /grub-core/fs/udf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/udf.c -------------------------------------------------------------------------------- /grub-core/fs/ufs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/ufs.c -------------------------------------------------------------------------------- /grub-core/fs/ufs2.c: -------------------------------------------------------------------------------- 1 | /* ufs2.c - Unix File System 2 */ 2 | #define MODE_UFS2 1 3 | #include "ufs.c" 4 | -------------------------------------------------------------------------------- /grub-core/fs/ufs_be.c: -------------------------------------------------------------------------------- 1 | #define MODE_BIGENDIAN 1 2 | #include "ufs.c" 3 | -------------------------------------------------------------------------------- /grub-core/fs/xfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/xfs.c -------------------------------------------------------------------------------- /grub-core/fs/zfs/zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/zfs/zfs.c -------------------------------------------------------------------------------- /grub-core/fs/zfs/zfs_lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/zfs/zfs_lz4.c -------------------------------------------------------------------------------- /grub-core/fs/zfs/zfs_lzjb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/zfs/zfs_lzjb.c -------------------------------------------------------------------------------- /grub-core/fs/zfs/zfscrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/zfs/zfscrypt.c -------------------------------------------------------------------------------- /grub-core/fs/zfs/zfsinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/fs/zfs/zfsinfo.c -------------------------------------------------------------------------------- /grub-core/gdb/cstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gdb/cstub.c -------------------------------------------------------------------------------- /grub-core/gdb/gdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gdb/gdb.c -------------------------------------------------------------------------------- /grub-core/gdb/i386/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gdb/i386/idt.c -------------------------------------------------------------------------------- /grub-core/gdb/i386/machdep.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gdb/i386/machdep.S -------------------------------------------------------------------------------- /grub-core/gdb/i386/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gdb/i386/signal.c -------------------------------------------------------------------------------- /grub-core/gdb_grub.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gdb_grub.in -------------------------------------------------------------------------------- /grub-core/genemuinit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/genemuinit.sh -------------------------------------------------------------------------------- /grub-core/genmod.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/genmod.sh.in -------------------------------------------------------------------------------- /grub-core/genmoddep.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/genmoddep.awk -------------------------------------------------------------------------------- /grub-core/gensyminfo.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gensyminfo.sh.in -------------------------------------------------------------------------------- /grub-core/gensymlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gensymlist.sh -------------------------------------------------------------------------------- /grub-core/gentrigtables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gentrigtables.c -------------------------------------------------------------------------------- /grub-core/gettext/gettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gettext/gettext.c -------------------------------------------------------------------------------- /grub-core/gfxmenu/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gfxmenu/font.c -------------------------------------------------------------------------------- /grub-core/gfxmenu/gfxmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gfxmenu/gfxmenu.c -------------------------------------------------------------------------------- /grub-core/gfxmenu/gui_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gfxmenu/gui_box.c -------------------------------------------------------------------------------- /grub-core/gfxmenu/gui_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gfxmenu/gui_list.c -------------------------------------------------------------------------------- /grub-core/gfxmenu/gui_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gfxmenu/gui_util.c -------------------------------------------------------------------------------- /grub-core/gfxmenu/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gfxmenu/view.c -------------------------------------------------------------------------------- /grub-core/gmodule.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gmodule.pl.in -------------------------------------------------------------------------------- /grub-core/gnulib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/Makefile.am -------------------------------------------------------------------------------- /grub-core/gnulib/alloca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/alloca.c -------------------------------------------------------------------------------- /grub-core/gnulib/alloca.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/alloca.in.h -------------------------------------------------------------------------------- /grub-core/gnulib/argp-ba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/argp-ba.c -------------------------------------------------------------------------------- /grub-core/gnulib/argp-help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/argp-help.c -------------------------------------------------------------------------------- /grub-core/gnulib/argp-pin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/argp-pin.c -------------------------------------------------------------------------------- /grub-core/gnulib/argp-pv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/argp-pv.c -------------------------------------------------------------------------------- /grub-core/gnulib/argp-pvh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/argp-pvh.c -------------------------------------------------------------------------------- /grub-core/gnulib/argp-xinl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/argp-xinl.c -------------------------------------------------------------------------------- /grub-core/gnulib/argp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/argp.h -------------------------------------------------------------------------------- /grub-core/gnulib/asnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/asnprintf.c -------------------------------------------------------------------------------- /grub-core/gnulib/btowc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/btowc.c -------------------------------------------------------------------------------- /grub-core/gnulib/dirname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/dirname.h -------------------------------------------------------------------------------- /grub-core/gnulib/dosname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/dosname.h -------------------------------------------------------------------------------- /grub-core/gnulib/errno.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/errno.in.h -------------------------------------------------------------------------------- /grub-core/gnulib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/error.c -------------------------------------------------------------------------------- /grub-core/gnulib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/error.h -------------------------------------------------------------------------------- /grub-core/gnulib/float+.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/float+.h -------------------------------------------------------------------------------- /grub-core/gnulib/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/float.c -------------------------------------------------------------------------------- /grub-core/gnulib/float.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/float.in.h -------------------------------------------------------------------------------- /grub-core/gnulib/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/fnmatch.c -------------------------------------------------------------------------------- /grub-core/gnulib/getdelim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/getdelim.c -------------------------------------------------------------------------------- /grub-core/gnulib/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/getline.c -------------------------------------------------------------------------------- /grub-core/gnulib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/getopt.c -------------------------------------------------------------------------------- /grub-core/gnulib/getopt.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/getopt.in.h -------------------------------------------------------------------------------- /grub-core/gnulib/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/getopt1.c -------------------------------------------------------------------------------- /grub-core/gnulib/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/gettext.h -------------------------------------------------------------------------------- /grub-core/gnulib/intprops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/intprops.h -------------------------------------------------------------------------------- /grub-core/gnulib/itold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/itold.c -------------------------------------------------------------------------------- /grub-core/gnulib/locale.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/locale.in.h -------------------------------------------------------------------------------- /grub-core/gnulib/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/malloc.c -------------------------------------------------------------------------------- /grub-core/gnulib/mbrtowc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/mbrtowc.c -------------------------------------------------------------------------------- /grub-core/gnulib/mbsinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/mbsinit.c -------------------------------------------------------------------------------- /grub-core/gnulib/mbsrtowcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/mbsrtowcs.c -------------------------------------------------------------------------------- /grub-core/gnulib/mbswidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/mbswidth.c -------------------------------------------------------------------------------- /grub-core/gnulib/mbswidth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/mbswidth.h -------------------------------------------------------------------------------- /grub-core/gnulib/mbtowc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/mbtowc.c -------------------------------------------------------------------------------- /grub-core/gnulib/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/memchr.c -------------------------------------------------------------------------------- /grub-core/gnulib/mempcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/mempcpy.c -------------------------------------------------------------------------------- /grub-core/gnulib/progname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/progname.c -------------------------------------------------------------------------------- /grub-core/gnulib/progname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/progname.h -------------------------------------------------------------------------------- /grub-core/gnulib/rawmemchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/rawmemchr.c -------------------------------------------------------------------------------- /grub-core/gnulib/realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/realloc.c -------------------------------------------------------------------------------- /grub-core/gnulib/ref-add.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/ref-add.sin -------------------------------------------------------------------------------- /grub-core/gnulib/ref-del.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/ref-del.sin -------------------------------------------------------------------------------- /grub-core/gnulib/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/regcomp.c -------------------------------------------------------------------------------- /grub-core/gnulib/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/regex.c -------------------------------------------------------------------------------- /grub-core/gnulib/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/regex.h -------------------------------------------------------------------------------- /grub-core/gnulib/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/regexec.c -------------------------------------------------------------------------------- /grub-core/gnulib/size_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/size_max.h -------------------------------------------------------------------------------- /grub-core/gnulib/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/sleep.c -------------------------------------------------------------------------------- /grub-core/gnulib/stddef.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/stddef.in.h -------------------------------------------------------------------------------- /grub-core/gnulib/stdint.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/stdint.in.h -------------------------------------------------------------------------------- /grub-core/gnulib/stdio.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/stdio.in.h -------------------------------------------------------------------------------- /grub-core/gnulib/streq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/streq.h -------------------------------------------------------------------------------- /grub-core/gnulib/unistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/unistd.c -------------------------------------------------------------------------------- /grub-core/gnulib/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/verify.h -------------------------------------------------------------------------------- /grub-core/gnulib/xsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/xsize.c -------------------------------------------------------------------------------- /grub-core/gnulib/xsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/gnulib/xsize.h -------------------------------------------------------------------------------- /grub-core/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/hello/hello.c -------------------------------------------------------------------------------- /grub-core/hook/datehook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/hook/datehook.c -------------------------------------------------------------------------------- /grub-core/io/bufio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/io/bufio.c -------------------------------------------------------------------------------- /grub-core/io/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/io/gzio.c -------------------------------------------------------------------------------- /grub-core/io/lzopio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/io/lzopio.c -------------------------------------------------------------------------------- /grub-core/io/offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/io/offset.c -------------------------------------------------------------------------------- /grub-core/io/xzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/io/xzio.c -------------------------------------------------------------------------------- /grub-core/kern/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/acpi.c -------------------------------------------------------------------------------- /grub-core/kern/arm/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/arm/dl.c -------------------------------------------------------------------------------- /grub-core/kern/arm64/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/arm64/dl.c -------------------------------------------------------------------------------- /grub-core/kern/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/command.c -------------------------------------------------------------------------------- /grub-core/kern/corecmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/corecmd.c -------------------------------------------------------------------------------- /grub-core/kern/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/device.c -------------------------------------------------------------------------------- /grub-core/kern/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/disk.c -------------------------------------------------------------------------------- /grub-core/kern/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/dl.c -------------------------------------------------------------------------------- /grub-core/kern/efi/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/efi/acpi.c -------------------------------------------------------------------------------- /grub-core/kern/efi/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/efi/efi.c -------------------------------------------------------------------------------- /grub-core/kern/efi/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/efi/fdt.c -------------------------------------------------------------------------------- /grub-core/kern/efi/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/efi/init.c -------------------------------------------------------------------------------- /grub-core/kern/efi/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/efi/mm.c -------------------------------------------------------------------------------- /grub-core/kern/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/elf.c -------------------------------------------------------------------------------- /grub-core/kern/elfXX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/elfXX.c -------------------------------------------------------------------------------- /grub-core/kern/emu/full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/emu/full.c -------------------------------------------------------------------------------- /grub-core/kern/emu/lite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/emu/lite.c -------------------------------------------------------------------------------- /grub-core/kern/emu/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/emu/main.c -------------------------------------------------------------------------------- /grub-core/kern/emu/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/emu/misc.c -------------------------------------------------------------------------------- /grub-core/kern/emu/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/emu/mm.c -------------------------------------------------------------------------------- /grub-core/kern/emu/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/emu/time.c -------------------------------------------------------------------------------- /grub-core/kern/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/env.c -------------------------------------------------------------------------------- /grub-core/kern/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/err.c -------------------------------------------------------------------------------- /grub-core/kern/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/file.c -------------------------------------------------------------------------------- /grub-core/kern/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/fs.c -------------------------------------------------------------------------------- /grub-core/kern/i386/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/i386/dl.c -------------------------------------------------------------------------------- /grub-core/kern/i386/int.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/i386/int.S -------------------------------------------------------------------------------- /grub-core/kern/i386/tsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/i386/tsc.c -------------------------------------------------------------------------------- /grub-core/kern/ia64/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/ia64/dl.c -------------------------------------------------------------------------------- /grub-core/kern/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/list.c -------------------------------------------------------------------------------- /grub-core/kern/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/main.c -------------------------------------------------------------------------------- /grub-core/kern/mips/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/mips/dl.c -------------------------------------------------------------------------------- /grub-core/kern/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/misc.c -------------------------------------------------------------------------------- /grub-core/kern/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/mm.c -------------------------------------------------------------------------------- /grub-core/kern/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/parser.c -------------------------------------------------------------------------------- /grub-core/kern/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/sha1.c -------------------------------------------------------------------------------- /grub-core/kern/term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/term.c -------------------------------------------------------------------------------- /grub-core/kern/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/time.c -------------------------------------------------------------------------------- /grub-core/kern/tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/tpm.c -------------------------------------------------------------------------------- /grub-core/kern/uboot/hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/uboot/hw.c -------------------------------------------------------------------------------- /grub-core/kern/vga_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/vga_init.c -------------------------------------------------------------------------------- /grub-core/kern/xen/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/kern/xen/init.c -------------------------------------------------------------------------------- /grub-core/lib/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/LzFind.c -------------------------------------------------------------------------------- /grub-core/lib/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/LzmaDec.c -------------------------------------------------------------------------------- /grub-core/lib/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/LzmaEnc.c -------------------------------------------------------------------------------- /grub-core/lib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/adler32.c -------------------------------------------------------------------------------- /grub-core/lib/arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/arg.c -------------------------------------------------------------------------------- /grub-core/lib/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/backtrace.c -------------------------------------------------------------------------------- /grub-core/lib/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/cmdline.c -------------------------------------------------------------------------------- /grub-core/lib/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/crc.c -------------------------------------------------------------------------------- /grub-core/lib/crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/crc64.c -------------------------------------------------------------------------------- /grub-core/lib/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/crypto.c -------------------------------------------------------------------------------- /grub-core/lib/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/disk.c -------------------------------------------------------------------------------- /grub-core/lib/division.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/division.c -------------------------------------------------------------------------------- /grub-core/lib/efi/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/efi/halt.c -------------------------------------------------------------------------------- /grub-core/lib/emu/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/emu/halt.c -------------------------------------------------------------------------------- /grub-core/lib/envblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/envblk.c -------------------------------------------------------------------------------- /grub-core/lib/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/fdt.c -------------------------------------------------------------------------------- /grub-core/lib/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/getline.c -------------------------------------------------------------------------------- /grub-core/lib/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/hexdump.c -------------------------------------------------------------------------------- /grub-core/lib/i386/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/i386/halt.c -------------------------------------------------------------------------------- /grub-core/lib/libgcrypt/mpi/pentium4/distfiles: -------------------------------------------------------------------------------- 1 | README 2 | 3 | 4 | -------------------------------------------------------------------------------- /grub-core/lib/libgcrypt/mpi/powerpc64/distfiles: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /grub-core/lib/libgcrypt/mpi/supersparc/distfiles: -------------------------------------------------------------------------------- 1 | Manifest 2 | udiv.S 3 | 4 | -------------------------------------------------------------------------------- /grub-core/lib/pbkdf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/pbkdf2.c -------------------------------------------------------------------------------- /grub-core/lib/posix_wrap/inttypes.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /grub-core/lib/posix_wrap/locale.h: -------------------------------------------------------------------------------- 1 | #ifdef GRUB_UTIL 2 | #include_next 3 | #endif 4 | -------------------------------------------------------------------------------- /grub-core/lib/posix_wrap/stdint.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /grub-core/lib/posix_wrap/unistd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /grub-core/lib/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/progress.c -------------------------------------------------------------------------------- /grub-core/lib/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/random.c -------------------------------------------------------------------------------- /grub-core/lib/relocator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/relocator.c -------------------------------------------------------------------------------- /grub-core/lib/setjmp.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/setjmp.S -------------------------------------------------------------------------------- /grub-core/lib/xen/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/lib/xen/halt.c -------------------------------------------------------------------------------- /grub-core/loader/aout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/loader/aout.c -------------------------------------------------------------------------------- /grub-core/loader/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/loader/linux.c -------------------------------------------------------------------------------- /grub-core/loader/lzss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/loader/lzss.c -------------------------------------------------------------------------------- /grub-core/loader/macho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/loader/macho.c -------------------------------------------------------------------------------- /grub-core/loader/xnu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/loader/xnu.c -------------------------------------------------------------------------------- /grub-core/mmap/efi/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/mmap/efi/mmap.c -------------------------------------------------------------------------------- /grub-core/mmap/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/mmap/mmap.c -------------------------------------------------------------------------------- /grub-core/modinfo.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/modinfo.sh.in -------------------------------------------------------------------------------- /grub-core/net/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/arp.c -------------------------------------------------------------------------------- /grub-core/net/bootp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/bootp.c -------------------------------------------------------------------------------- /grub-core/net/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/dns.c -------------------------------------------------------------------------------- /grub-core/net/ethernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/ethernet.c -------------------------------------------------------------------------------- /grub-core/net/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/http.c -------------------------------------------------------------------------------- /grub-core/net/icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/icmp.c -------------------------------------------------------------------------------- /grub-core/net/icmp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/icmp6.c -------------------------------------------------------------------------------- /grub-core/net/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/ip.c -------------------------------------------------------------------------------- /grub-core/net/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/net.c -------------------------------------------------------------------------------- /grub-core/net/netbuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/netbuff.c -------------------------------------------------------------------------------- /grub-core/net/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/tcp.c -------------------------------------------------------------------------------- /grub-core/net/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/tftp.c -------------------------------------------------------------------------------- /grub-core/net/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/net/udp.c -------------------------------------------------------------------------------- /grub-core/normal/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/normal/auth.c -------------------------------------------------------------------------------- /grub-core/normal/autofs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/normal/autofs.c -------------------------------------------------------------------------------- /grub-core/normal/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/normal/color.c -------------------------------------------------------------------------------- /grub-core/normal/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/normal/crypto.c -------------------------------------------------------------------------------- /grub-core/normal/dyncmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/normal/dyncmd.c -------------------------------------------------------------------------------- /grub-core/normal/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/normal/main.c -------------------------------------------------------------------------------- /grub-core/normal/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/normal/menu.c -------------------------------------------------------------------------------- /grub-core/normal/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/normal/misc.c -------------------------------------------------------------------------------- /grub-core/normal/term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/normal/term.c -------------------------------------------------------------------------------- /grub-core/osdep/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/osdep/config.c -------------------------------------------------------------------------------- /grub-core/osdep/cputime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/osdep/cputime.c -------------------------------------------------------------------------------- /grub-core/osdep/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/osdep/dl.c -------------------------------------------------------------------------------- /grub-core/osdep/emunet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/osdep/emunet.c -------------------------------------------------------------------------------- /grub-core/osdep/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/osdep/exec.c -------------------------------------------------------------------------------- /grub-core/osdep/getroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/osdep/getroot.c -------------------------------------------------------------------------------- /grub-core/osdep/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/osdep/init.c -------------------------------------------------------------------------------- /grub-core/osdep/ofpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/osdep/ofpath.c -------------------------------------------------------------------------------- /grub-core/osdep/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/osdep/random.c -------------------------------------------------------------------------------- /grub-core/osdep/relpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/osdep/relpath.c -------------------------------------------------------------------------------- /grub-core/osdep/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/osdep/sleep.c -------------------------------------------------------------------------------- /grub-core/osdep/unix/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/osdep/unix/dl.c -------------------------------------------------------------------------------- /grub-core/partmap/acorn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/partmap/acorn.c -------------------------------------------------------------------------------- /grub-core/partmap/amiga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/partmap/amiga.c -------------------------------------------------------------------------------- /grub-core/partmap/apple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/partmap/apple.c -------------------------------------------------------------------------------- /grub-core/partmap/dfly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/partmap/dfly.c -------------------------------------------------------------------------------- /grub-core/partmap/dvh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/partmap/dvh.c -------------------------------------------------------------------------------- /grub-core/partmap/gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/partmap/gpt.c -------------------------------------------------------------------------------- /grub-core/partmap/msdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/partmap/msdos.c -------------------------------------------------------------------------------- /grub-core/partmap/plan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/partmap/plan.c -------------------------------------------------------------------------------- /grub-core/partmap/sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/partmap/sun.c -------------------------------------------------------------------------------- /grub-core/partmap/sunpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/partmap/sunpc.c -------------------------------------------------------------------------------- /grub-core/script/argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/script/argv.c -------------------------------------------------------------------------------- /grub-core/script/lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/script/lexer.c -------------------------------------------------------------------------------- /grub-core/script/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/script/main.c -------------------------------------------------------------------------------- /grub-core/script/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/script/parser.y -------------------------------------------------------------------------------- /grub-core/script/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/script/script.c -------------------------------------------------------------------------------- /grub-core/script/yylex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/script/yylex.l -------------------------------------------------------------------------------- /grub-core/term/gfxterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/term/gfxterm.c -------------------------------------------------------------------------------- /grub-core/term/morse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/term/morse.c -------------------------------------------------------------------------------- /grub-core/term/ns8250.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/term/ns8250.c -------------------------------------------------------------------------------- /grub-core/term/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/term/serial.c -------------------------------------------------------------------------------- /grub-core/term/spkmodem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/term/spkmodem.c -------------------------------------------------------------------------------- /grub-core/term/terminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/term/terminfo.c -------------------------------------------------------------------------------- /grub-core/term/tparm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/term/tparm.c -------------------------------------------------------------------------------- /grub-core/video/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/video/bitmap.c -------------------------------------------------------------------------------- /grub-core/video/bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/video/bochs.c -------------------------------------------------------------------------------- /grub-core/video/capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/video/capture.c -------------------------------------------------------------------------------- /grub-core/video/cirrus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/video/cirrus.c -------------------------------------------------------------------------------- /grub-core/video/colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/video/colors.c -------------------------------------------------------------------------------- /grub-core/video/efi_gop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/video/efi_gop.c -------------------------------------------------------------------------------- /grub-core/video/efi_uga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/video/efi_uga.c -------------------------------------------------------------------------------- /grub-core/video/emu/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/video/emu/sdl.c -------------------------------------------------------------------------------- /grub-core/video/sm712.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/video/sm712.c -------------------------------------------------------------------------------- /grub-core/video/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/grub-core/video/video.c -------------------------------------------------------------------------------- /include/grub/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/acpi.h -------------------------------------------------------------------------------- /include/grub/aout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/aout.h -------------------------------------------------------------------------------- /include/grub/arc/arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/arc/arc.h -------------------------------------------------------------------------------- /include/grub/archelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/archelp.h -------------------------------------------------------------------------------- /include/grub/arm/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/arm/linux.h -------------------------------------------------------------------------------- /include/grub/arm/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/arm/reloc.h -------------------------------------------------------------------------------- /include/grub/arm/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/arm/setjmp.h -------------------------------------------------------------------------------- /include/grub/arm/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/arm/system.h -------------------------------------------------------------------------------- /include/grub/arm/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/arm/time.h -------------------------------------------------------------------------------- /include/grub/arm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/arm/types.h -------------------------------------------------------------------------------- /include/grub/arm64/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/arm64/time.h -------------------------------------------------------------------------------- /include/grub/ata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/ata.h -------------------------------------------------------------------------------- /include/grub/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/auth.h -------------------------------------------------------------------------------- /include/grub/autoefi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/autoefi.h -------------------------------------------------------------------------------- /include/grub/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/backtrace.h -------------------------------------------------------------------------------- /include/grub/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/bitmap.h -------------------------------------------------------------------------------- /include/grub/boottime.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/grub/bsdlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/bsdlabel.h -------------------------------------------------------------------------------- /include/grub/btrfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/btrfs.h -------------------------------------------------------------------------------- /include/grub/bufio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/bufio.h -------------------------------------------------------------------------------- /include/grub/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/cache.h -------------------------------------------------------------------------------- /include/grub/cbfs_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/cbfs_core.h -------------------------------------------------------------------------------- /include/grub/charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/charset.h -------------------------------------------------------------------------------- /include/grub/cmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/cmos.h -------------------------------------------------------------------------------- /include/grub/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/color.h -------------------------------------------------------------------------------- /include/grub/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/command.h -------------------------------------------------------------------------------- /include/grub/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/compiler.h -------------------------------------------------------------------------------- /include/grub/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/crypto.h -------------------------------------------------------------------------------- /include/grub/cryptodisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/cryptodisk.h -------------------------------------------------------------------------------- /include/grub/cs5536.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/cs5536.h -------------------------------------------------------------------------------- /include/grub/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/datetime.h -------------------------------------------------------------------------------- /include/grub/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/deflate.h -------------------------------------------------------------------------------- /include/grub/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/device.h -------------------------------------------------------------------------------- /include/grub/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/disk.h -------------------------------------------------------------------------------- /include/grub/diskfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/diskfilter.h -------------------------------------------------------------------------------- /include/grub/dl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/dl.h -------------------------------------------------------------------------------- /include/grub/efi/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/efi/api.h -------------------------------------------------------------------------------- /include/grub/efi/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/efi/disk.h -------------------------------------------------------------------------------- /include/grub/efi/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/efi/edid.h -------------------------------------------------------------------------------- /include/grub/efi/efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/efi/efi.h -------------------------------------------------------------------------------- /include/grub/efi/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/efi/memory.h -------------------------------------------------------------------------------- /include/grub/efi/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/efi/pci.h -------------------------------------------------------------------------------- /include/grub/efi/pe32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/efi/pe32.h -------------------------------------------------------------------------------- /include/grub/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/elf.h -------------------------------------------------------------------------------- /include/grub/elfload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/elfload.h -------------------------------------------------------------------------------- /include/grub/emu/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/emu/config.h -------------------------------------------------------------------------------- /include/grub/emu/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/emu/exec.h -------------------------------------------------------------------------------- /include/grub/emu/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/emu/misc.h -------------------------------------------------------------------------------- /include/grub/emu/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/emu/net.h -------------------------------------------------------------------------------- /include/grub/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/env.h -------------------------------------------------------------------------------- /include/grub/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/err.h -------------------------------------------------------------------------------- /include/grub/exfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/exfat.h -------------------------------------------------------------------------------- /include/grub/extcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/extcmd.h -------------------------------------------------------------------------------- /include/grub/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/fat.h -------------------------------------------------------------------------------- /include/grub/fbblit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/fbblit.h -------------------------------------------------------------------------------- /include/grub/fbfill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/fbfill.h -------------------------------------------------------------------------------- /include/grub/fbutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/fbutil.h -------------------------------------------------------------------------------- /include/grub/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/fdt.h -------------------------------------------------------------------------------- /include/grub/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/file.h -------------------------------------------------------------------------------- /include/grub/fileid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/fileid.h -------------------------------------------------------------------------------- /include/grub/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/font.h -------------------------------------------------------------------------------- /include/grub/fontformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/fontformat.h -------------------------------------------------------------------------------- /include/grub/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/fs.h -------------------------------------------------------------------------------- /include/grub/fshelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/fshelp.h -------------------------------------------------------------------------------- /include/grub/gcry/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/gcry/types.h -------------------------------------------------------------------------------- /include/grub/gdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/gdb.h -------------------------------------------------------------------------------- /include/grub/gfxmenu_model.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /include/grub/gfxterm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/gfxterm.h -------------------------------------------------------------------------------- /include/grub/gfxwidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/gfxwidgets.h -------------------------------------------------------------------------------- /include/grub/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/gui.h -------------------------------------------------------------------------------- /include/grub/hfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/hfs.h -------------------------------------------------------------------------------- /include/grub/hfsplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/hfsplus.h -------------------------------------------------------------------------------- /include/grub/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i18n.h -------------------------------------------------------------------------------- /include/grub/i386/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/bsd.h -------------------------------------------------------------------------------- /include/grub/i386/cmos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/cmos.h -------------------------------------------------------------------------------- /include/grub/i386/coreboot/boot.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/coreboot/time.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/cpuid.h -------------------------------------------------------------------------------- /include/grub/i386/efi/serial.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/gdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/gdb.h -------------------------------------------------------------------------------- /include/grub/i386/ieee1275/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/ieee1275/serial.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/io.h -------------------------------------------------------------------------------- /include/grub/i386/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/linux.h -------------------------------------------------------------------------------- /include/grub/i386/macho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/macho.h -------------------------------------------------------------------------------- /include/grub/i386/multiboot/console.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/multiboot/kernel.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/multiboot/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/multiboot/serial.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/multiboot/time.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/pci.h -------------------------------------------------------------------------------- /include/grub/i386/pit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/pit.h -------------------------------------------------------------------------------- /include/grub/i386/qemu/console.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/qemu/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/qemu/serial.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/qemu/time.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/i386/relocator_private.h: -------------------------------------------------------------------------------- 1 | #define GRUB_RELOCATOR16_STACK_SIZE 4096 2 | -------------------------------------------------------------------------------- /include/grub/i386/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/time.h -------------------------------------------------------------------------------- /include/grub/i386/tsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/tsc.h -------------------------------------------------------------------------------- /include/grub/i386/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/types.h -------------------------------------------------------------------------------- /include/grub/i386/xen/memory.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/grub/i386/xnu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/i386/xnu.h -------------------------------------------------------------------------------- /include/grub/ia64/reloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/ia64/reloc.h -------------------------------------------------------------------------------- /include/grub/ia64/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/ia64/time.h -------------------------------------------------------------------------------- /include/grub/ia64/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/ia64/types.h -------------------------------------------------------------------------------- /include/grub/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/kernel.h -------------------------------------------------------------------------------- /include/grub/lib/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/lib/LzFind.h -------------------------------------------------------------------------------- /include/grub/lib/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/lib/LzHash.h -------------------------------------------------------------------------------- /include/grub/lib/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/lib/arg.h -------------------------------------------------------------------------------- /include/grub/lib/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/lib/crc.h -------------------------------------------------------------------------------- /include/grub/lib/envblk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/lib/envblk.h -------------------------------------------------------------------------------- /include/grub/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/linux.h -------------------------------------------------------------------------------- /include/grub/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/list.h -------------------------------------------------------------------------------- /include/grub/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/loader.h -------------------------------------------------------------------------------- /include/grub/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/lvm.h -------------------------------------------------------------------------------- /include/grub/macho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/macho.h -------------------------------------------------------------------------------- /include/grub/machoload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/machoload.h -------------------------------------------------------------------------------- /include/grub/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/memory.h -------------------------------------------------------------------------------- /include/grub/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/menu.h -------------------------------------------------------------------------------- /include/grub/mips/arc/kernel.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /include/grub/mips/arc/time.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/grub/mips/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/mips/asm.h -------------------------------------------------------------------------------- /include/grub/mips/at_keyboard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/mips/cmos.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/mips/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/mips/io.h -------------------------------------------------------------------------------- /include/grub/mips/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/mips/mips.h -------------------------------------------------------------------------------- /include/grub/mips/pci.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/mips/qemu_mips/loader.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/grub/mips/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/mips/time.h -------------------------------------------------------------------------------- /include/grub/mips/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/mips/types.h -------------------------------------------------------------------------------- /include/grub/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/misc.h -------------------------------------------------------------------------------- /include/grub/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/mm.h -------------------------------------------------------------------------------- /include/grub/mm_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/mm_private.h -------------------------------------------------------------------------------- /include/grub/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/multiboot.h -------------------------------------------------------------------------------- /include/grub/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/net.h -------------------------------------------------------------------------------- /include/grub/net/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/net/arp.h -------------------------------------------------------------------------------- /include/grub/net/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/net/ip.h -------------------------------------------------------------------------------- /include/grub/net/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/net/tcp.h -------------------------------------------------------------------------------- /include/grub/net/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/net/udp.h -------------------------------------------------------------------------------- /include/grub/normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/normal.h -------------------------------------------------------------------------------- /include/grub/ns8250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/ns8250.h -------------------------------------------------------------------------------- /include/grub/ntfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/ntfs.h -------------------------------------------------------------------------------- /include/grub/offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/offsets.h -------------------------------------------------------------------------------- /include/grub/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/parser.h -------------------------------------------------------------------------------- /include/grub/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/partition.h -------------------------------------------------------------------------------- /include/grub/parttool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/parttool.h -------------------------------------------------------------------------------- /include/grub/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/pci.h -------------------------------------------------------------------------------- /include/grub/pciutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/pciutils.h -------------------------------------------------------------------------------- /include/grub/procfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/procfs.h -------------------------------------------------------------------------------- /include/grub/pubkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/pubkey.h -------------------------------------------------------------------------------- /include/grub/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/random.h -------------------------------------------------------------------------------- /include/grub/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/reader.h -------------------------------------------------------------------------------- /include/grub/relocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/relocator.h -------------------------------------------------------------------------------- /include/grub/script_sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/script_sh.h -------------------------------------------------------------------------------- /include/grub/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/scsi.h -------------------------------------------------------------------------------- /include/grub/scsicmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/scsicmd.h -------------------------------------------------------------------------------- /include/grub/sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/sdl.h -------------------------------------------------------------------------------- /include/grub/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/search.h -------------------------------------------------------------------------------- /include/grub/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/serial.h -------------------------------------------------------------------------------- /include/grub/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/setjmp.h -------------------------------------------------------------------------------- /include/grub/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/sha1.h -------------------------------------------------------------------------------- /include/grub/smbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/smbus.h -------------------------------------------------------------------------------- /include/grub/speaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/speaker.h -------------------------------------------------------------------------------- /include/grub/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/symbol.h -------------------------------------------------------------------------------- /include/grub/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/term.h -------------------------------------------------------------------------------- /include/grub/terminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/terminfo.h -------------------------------------------------------------------------------- /include/grub/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/test.h -------------------------------------------------------------------------------- /include/grub/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/time.h -------------------------------------------------------------------------------- /include/grub/tparm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/tparm.h -------------------------------------------------------------------------------- /include/grub/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/tpm.h -------------------------------------------------------------------------------- /include/grub/trig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/trig.h -------------------------------------------------------------------------------- /include/grub/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/types.h -------------------------------------------------------------------------------- /include/grub/uboot/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/uboot/disk.h -------------------------------------------------------------------------------- /include/grub/udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/udf.h -------------------------------------------------------------------------------- /include/grub/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/unicode.h -------------------------------------------------------------------------------- /include/grub/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/usb.h -------------------------------------------------------------------------------- /include/grub/usbdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/usbdesc.h -------------------------------------------------------------------------------- /include/grub/usbserial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/usbserial.h -------------------------------------------------------------------------------- /include/grub/usbtrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/usbtrans.h -------------------------------------------------------------------------------- /include/grub/util/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/util/misc.h -------------------------------------------------------------------------------- /include/grub/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/vga.h -------------------------------------------------------------------------------- /include/grub/vgaregs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/vgaregs.h -------------------------------------------------------------------------------- /include/grub/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/video.h -------------------------------------------------------------------------------- /include/grub/video_fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/video_fb.h -------------------------------------------------------------------------------- /include/grub/x86_64/at_keyboard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/x86_64/efi/boot.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/grub/x86_64/efi/serial.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/x86_64/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/x86_64/io.h -------------------------------------------------------------------------------- /include/grub/x86_64/macho.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/x86_64/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/x86_64/multiboot.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/x86_64/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/x86_64/pci.h -------------------------------------------------------------------------------- /include/grub/x86_64/relocator.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/x86_64/xnu.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/grub/xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/xen.h -------------------------------------------------------------------------------- /include/grub/xen_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/xen_file.h -------------------------------------------------------------------------------- /include/grub/xnu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/xnu.h -------------------------------------------------------------------------------- /include/grub/zfs/dmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/zfs/dmu.h -------------------------------------------------------------------------------- /include/grub/zfs/dnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/zfs/dnode.h -------------------------------------------------------------------------------- /include/grub/zfs/spa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/zfs/spa.h -------------------------------------------------------------------------------- /include/grub/zfs/zfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/zfs/zfs.h -------------------------------------------------------------------------------- /include/grub/zfs/zil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/zfs/zil.h -------------------------------------------------------------------------------- /include/grub/zfs/zio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/grub/zfs/zio.h -------------------------------------------------------------------------------- /include/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/multiboot.h -------------------------------------------------------------------------------- /include/multiboot2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/multiboot2.h -------------------------------------------------------------------------------- /include/xen/elfnote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/xen/elfnote.h -------------------------------------------------------------------------------- /include/xen/grant_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/xen/grant_table.h -------------------------------------------------------------------------------- /include/xen/io/blkif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/xen/io/blkif.h -------------------------------------------------------------------------------- /include/xen/io/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/xen/io/console.h -------------------------------------------------------------------------------- /include/xen/io/ring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/xen/io/ring.h -------------------------------------------------------------------------------- /include/xen/io/xenbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/xen/io/xenbus.h -------------------------------------------------------------------------------- /include/xen/io/xs_wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/xen/io/xs_wire.h -------------------------------------------------------------------------------- /include/xen/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/xen/sched.h -------------------------------------------------------------------------------- /include/xen/xen-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/xen/xen-compat.h -------------------------------------------------------------------------------- /include/xen/xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/include/xen/xen.h -------------------------------------------------------------------------------- /linguas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/linguas.sh -------------------------------------------------------------------------------- /m4/00gnulib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/00gnulib.m4 -------------------------------------------------------------------------------- /m4/alloca.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/alloca.m4 -------------------------------------------------------------------------------- /m4/argp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/argp.m4 -------------------------------------------------------------------------------- /m4/btowc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/btowc.m4 -------------------------------------------------------------------------------- /m4/codeset.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/codeset.m4 -------------------------------------------------------------------------------- /m4/configmake.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/configmake.m4 -------------------------------------------------------------------------------- /m4/dirname.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/dirname.m4 -------------------------------------------------------------------------------- /m4/double-slash-root.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/double-slash-root.m4 -------------------------------------------------------------------------------- /m4/eealloc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/eealloc.m4 -------------------------------------------------------------------------------- /m4/errno_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/errno_h.m4 -------------------------------------------------------------------------------- /m4/error.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/error.m4 -------------------------------------------------------------------------------- /m4/exponentd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/exponentd.m4 -------------------------------------------------------------------------------- /m4/extensions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/extensions.m4 -------------------------------------------------------------------------------- /m4/extern-inline.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/extern-inline.m4 -------------------------------------------------------------------------------- /m4/fcntl-o.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/fcntl-o.m4 -------------------------------------------------------------------------------- /m4/float_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/float_h.m4 -------------------------------------------------------------------------------- /m4/fnmatch.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/fnmatch.m4 -------------------------------------------------------------------------------- /m4/getdelim.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/getdelim.m4 -------------------------------------------------------------------------------- /m4/getline.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/getline.m4 -------------------------------------------------------------------------------- /m4/getopt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/getopt.m4 -------------------------------------------------------------------------------- /m4/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/gettext.m4 -------------------------------------------------------------------------------- /m4/glibc2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/glibc2.m4 -------------------------------------------------------------------------------- /m4/glibc21.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/glibc21.m4 -------------------------------------------------------------------------------- /m4/gnulib-cache.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/gnulib-cache.m4 -------------------------------------------------------------------------------- /m4/gnulib-common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/gnulib-common.m4 -------------------------------------------------------------------------------- /m4/gnulib-comp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/gnulib-comp.m4 -------------------------------------------------------------------------------- /m4/gnulib-tool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/gnulib-tool.m4 -------------------------------------------------------------------------------- /m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/iconv.m4 -------------------------------------------------------------------------------- /m4/include_next.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/include_next.m4 -------------------------------------------------------------------------------- /m4/intdiv0.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/intdiv0.m4 -------------------------------------------------------------------------------- /m4/intl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/intl.m4 -------------------------------------------------------------------------------- /m4/intldir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/intldir.m4 -------------------------------------------------------------------------------- /m4/intlmacosx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/intlmacosx.m4 -------------------------------------------------------------------------------- /m4/intmax.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/intmax.m4 -------------------------------------------------------------------------------- /m4/intmax_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/intmax_t.m4 -------------------------------------------------------------------------------- /m4/inttypes-pri.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/inttypes-pri.m4 -------------------------------------------------------------------------------- /m4/inttypes_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/inttypes_h.m4 -------------------------------------------------------------------------------- /m4/langinfo_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/langinfo_h.m4 -------------------------------------------------------------------------------- /m4/lcmessage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/lcmessage.m4 -------------------------------------------------------------------------------- /m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/lib-ld.m4 -------------------------------------------------------------------------------- /m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/lib-link.m4 -------------------------------------------------------------------------------- /m4/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/lib-prefix.m4 -------------------------------------------------------------------------------- /m4/libunistring-base.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/libunistring-base.m4 -------------------------------------------------------------------------------- /m4/localcharset.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/localcharset.m4 -------------------------------------------------------------------------------- /m4/locale-fr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/locale-fr.m4 -------------------------------------------------------------------------------- /m4/locale-ja.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/locale-ja.m4 -------------------------------------------------------------------------------- /m4/locale-zh.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/locale-zh.m4 -------------------------------------------------------------------------------- /m4/locale_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/locale_h.m4 -------------------------------------------------------------------------------- /m4/localeconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/localeconv.m4 -------------------------------------------------------------------------------- /m4/lock.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/lock.m4 -------------------------------------------------------------------------------- /m4/longlong.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/longlong.m4 -------------------------------------------------------------------------------- /m4/malloc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/malloc.m4 -------------------------------------------------------------------------------- /m4/math_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/math_h.m4 -------------------------------------------------------------------------------- /m4/mbrtowc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/mbrtowc.m4 -------------------------------------------------------------------------------- /m4/mbsinit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/mbsinit.m4 -------------------------------------------------------------------------------- /m4/mbsrtowcs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/mbsrtowcs.m4 -------------------------------------------------------------------------------- /m4/mbstate_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/mbstate_t.m4 -------------------------------------------------------------------------------- /m4/mbswidth.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/mbswidth.m4 -------------------------------------------------------------------------------- /m4/mbtowc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/mbtowc.m4 -------------------------------------------------------------------------------- /m4/memchr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/memchr.m4 -------------------------------------------------------------------------------- /m4/mempcpy.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/mempcpy.m4 -------------------------------------------------------------------------------- /m4/mmap-anon.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/mmap-anon.m4 -------------------------------------------------------------------------------- /m4/msvc-inval.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/msvc-inval.m4 -------------------------------------------------------------------------------- /m4/msvc-nothrow.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/msvc-nothrow.m4 -------------------------------------------------------------------------------- /m4/multiarch.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/multiarch.m4 -------------------------------------------------------------------------------- /m4/nl_langinfo.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/nl_langinfo.m4 -------------------------------------------------------------------------------- /m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/nls.m4 -------------------------------------------------------------------------------- /m4/nocrash.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/nocrash.m4 -------------------------------------------------------------------------------- /m4/off_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/off_t.m4 -------------------------------------------------------------------------------- /m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/po.m4 -------------------------------------------------------------------------------- /m4/printf-posix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/printf-posix.m4 -------------------------------------------------------------------------------- /m4/printf.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/printf.m4 -------------------------------------------------------------------------------- /m4/progtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/progtest.m4 -------------------------------------------------------------------------------- /m4/rawmemchr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/rawmemchr.m4 -------------------------------------------------------------------------------- /m4/realloc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/realloc.m4 -------------------------------------------------------------------------------- /m4/regex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/regex.m4 -------------------------------------------------------------------------------- /m4/size_max.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/size_max.m4 -------------------------------------------------------------------------------- /m4/sleep.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/sleep.m4 -------------------------------------------------------------------------------- /m4/ssize_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/ssize_t.m4 -------------------------------------------------------------------------------- /m4/stdalign.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/stdalign.m4 -------------------------------------------------------------------------------- /m4/stdbool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/stdbool.m4 -------------------------------------------------------------------------------- /m4/stddef_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/stddef_h.m4 -------------------------------------------------------------------------------- /m4/stdint.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/stdint.m4 -------------------------------------------------------------------------------- /m4/stdint_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/stdint_h.m4 -------------------------------------------------------------------------------- /m4/stdio_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/stdio_h.m4 -------------------------------------------------------------------------------- /m4/stdlib_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/stdlib_h.m4 -------------------------------------------------------------------------------- /m4/strcase.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/strcase.m4 -------------------------------------------------------------------------------- /m4/strchrnul.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/strchrnul.m4 -------------------------------------------------------------------------------- /m4/strerror.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/strerror.m4 -------------------------------------------------------------------------------- /m4/string_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/string_h.m4 -------------------------------------------------------------------------------- /m4/strings_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/strings_h.m4 -------------------------------------------------------------------------------- /m4/strndup.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/strndup.m4 -------------------------------------------------------------------------------- /m4/strnlen.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/strnlen.m4 -------------------------------------------------------------------------------- /m4/sys_socket_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/sys_socket_h.m4 -------------------------------------------------------------------------------- /m4/sys_types_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/sys_types_h.m4 -------------------------------------------------------------------------------- /m4/sysexits.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/sysexits.m4 -------------------------------------------------------------------------------- /m4/threadlib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/threadlib.m4 -------------------------------------------------------------------------------- /m4/uintmax_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/uintmax_t.m4 -------------------------------------------------------------------------------- /m4/unistd_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/unistd_h.m4 -------------------------------------------------------------------------------- /m4/vasnprintf.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/vasnprintf.m4 -------------------------------------------------------------------------------- /m4/visibility.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/visibility.m4 -------------------------------------------------------------------------------- /m4/vsnprintf.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/vsnprintf.m4 -------------------------------------------------------------------------------- /m4/warn-on-use.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/warn-on-use.m4 -------------------------------------------------------------------------------- /m4/wchar_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/wchar_h.m4 -------------------------------------------------------------------------------- /m4/wchar_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/wchar_t.m4 -------------------------------------------------------------------------------- /m4/wcrtomb.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/wcrtomb.m4 -------------------------------------------------------------------------------- /m4/wctype_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/wctype_h.m4 -------------------------------------------------------------------------------- /m4/wcwidth.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/wcwidth.m4 -------------------------------------------------------------------------------- /m4/wint_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/wint_t.m4 -------------------------------------------------------------------------------- /m4/xsize.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/m4/xsize.m4 -------------------------------------------------------------------------------- /po/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/Makefile.in.in -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/README -------------------------------------------------------------------------------- /po/Rules-piglatin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/Rules-piglatin -------------------------------------------------------------------------------- /po/Rules-quot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/Rules-quot -------------------------------------------------------------------------------- /po/Rules-swiss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/Rules-swiss -------------------------------------------------------------------------------- /po/Rules-translit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/Rules-translit -------------------------------------------------------------------------------- /po/Rules-windowsdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/Rules-windowsdir -------------------------------------------------------------------------------- /po/arabic.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/arabic.sed -------------------------------------------------------------------------------- /po/boldquot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/boldquot.sed -------------------------------------------------------------------------------- /po/cyrillic.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/cyrillic.sed -------------------------------------------------------------------------------- /po/en@boldquot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/en@boldquot.header -------------------------------------------------------------------------------- /po/en@piglatin.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/en@piglatin.header -------------------------------------------------------------------------------- /po/en@quot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/en@quot.header -------------------------------------------------------------------------------- /po/exclude.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/exclude.pot -------------------------------------------------------------------------------- /po/greek.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/greek.sed -------------------------------------------------------------------------------- /po/grub.d.sed: -------------------------------------------------------------------------------- 1 | /^#: util\/grub\.d\//a\ 2 | #, c-format 3 | -------------------------------------------------------------------------------- /po/hebrew.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/hebrew.sed -------------------------------------------------------------------------------- /po/insert-header.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/insert-header.sin -------------------------------------------------------------------------------- /po/piglatin.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/piglatin.sed -------------------------------------------------------------------------------- /po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/quot.sed -------------------------------------------------------------------------------- /po/remove-potcdate.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/remove-potcdate.sin -------------------------------------------------------------------------------- /po/swiss.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/po/swiss.sed -------------------------------------------------------------------------------- /runSonarQubeAnalysis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/runSonarQubeAnalysis.sh -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /tests/ahci_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/ahci_test.in -------------------------------------------------------------------------------- /tests/btrfs_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/btrfs_test.in -------------------------------------------------------------------------------- /tests/cdboot_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/cdboot_test.in -------------------------------------------------------------------------------- /tests/cmp_unit_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/cmp_unit_test.c -------------------------------------------------------------------------------- /tests/cpio_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/cpio_test.in -------------------------------------------------------------------------------- /tests/date_unit_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/date_unit_test.c -------------------------------------------------------------------------------- /tests/ehci_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/ehci_test.in -------------------------------------------------------------------------------- /tests/example_scripted_test.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | true 5 | -------------------------------------------------------------------------------- /tests/example_unit_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/example_unit_test.c -------------------------------------------------------------------------------- /tests/exfat_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/exfat_test.in -------------------------------------------------------------------------------- /tests/ext234_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/ext234_test.in -------------------------------------------------------------------------------- /tests/fat_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/fat_test.in -------------------------------------------------------------------------------- /tests/fddboot_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/fddboot_test.in -------------------------------------------------------------------------------- /tests/file_filter/file: -------------------------------------------------------------------------------- 1 | Hello, user! 2 | -------------------------------------------------------------------------------- /tests/file_filter/file.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/file_filter/file.gz -------------------------------------------------------------------------------- /tests/file_filter/file.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/file_filter/file.xz -------------------------------------------------------------------------------- /tests/file_filter/keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/file_filter/keys -------------------------------------------------------------------------------- /tests/file_filter_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/file_filter_test.in -------------------------------------------------------------------------------- /tests/grub_cmd_date.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/grub_cmd_date.in -------------------------------------------------------------------------------- /tests/grub_cmd_echo.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/grub_cmd_echo.in -------------------------------------------------------------------------------- /tests/grub_cmd_regexp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/grub_cmd_regexp.in -------------------------------------------------------------------------------- /tests/grub_cmd_sleep.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/grub_cmd_sleep.in -------------------------------------------------------------------------------- /tests/grub_cmd_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/grub_cmd_test.in -------------------------------------------------------------------------------- /tests/grub_cmd_tr.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/grub_cmd_tr.in -------------------------------------------------------------------------------- /tests/grub_func_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/grub_func_test.in -------------------------------------------------------------------------------- /tests/grub_script_eval.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/grub_script_eval.in -------------------------------------------------------------------------------- /tests/grub_script_for1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/grub_script_for1.in -------------------------------------------------------------------------------- /tests/grub_script_if.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/grub_script_if.in -------------------------------------------------------------------------------- /tests/grub_script_leading_whitespace.in: -------------------------------------------------------------------------------- 1 | #! @builddir@/grub-shell-tester 2 | 3 | list=" 1 2 3" 4 | echo $list 5 | -------------------------------------------------------------------------------- /tests/grub_script_not.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/grub_script_not.in -------------------------------------------------------------------------------- /tests/grub_script_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/grub_script_test.in -------------------------------------------------------------------------------- /tests/gzcompress_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/gzcompress_test.in -------------------------------------------------------------------------------- /tests/hddboot_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/hddboot_test.in -------------------------------------------------------------------------------- /tests/help_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/help_test.in -------------------------------------------------------------------------------- /tests/hfs_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/hfs_test.in -------------------------------------------------------------------------------- /tests/hfsplus_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/hfsplus_test.in -------------------------------------------------------------------------------- /tests/iso9660_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/iso9660_test.in -------------------------------------------------------------------------------- /tests/jfs_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/jfs_test.in -------------------------------------------------------------------------------- /tests/lib/unit_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/lib/unit_test.c -------------------------------------------------------------------------------- /tests/lzocompress_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/lzocompress_test.in -------------------------------------------------------------------------------- /tests/minixfs_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/minixfs_test.in -------------------------------------------------------------------------------- /tests/netboot_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/netboot_test.in -------------------------------------------------------------------------------- /tests/nilfs2_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/nilfs2_test.in -------------------------------------------------------------------------------- /tests/ntfs_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/ntfs_test.in -------------------------------------------------------------------------------- /tests/ohci_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/ohci_test.in -------------------------------------------------------------------------------- /tests/partmap_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/partmap_test.in -------------------------------------------------------------------------------- /tests/pata_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/pata_test.in -------------------------------------------------------------------------------- /tests/printf_unit_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/printf_unit_test.c -------------------------------------------------------------------------------- /tests/pseries_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/pseries_test.in -------------------------------------------------------------------------------- /tests/reiserfs_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/reiserfs_test.in -------------------------------------------------------------------------------- /tests/romfs_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/romfs_test.in -------------------------------------------------------------------------------- /tests/squashfs_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/squashfs_test.in -------------------------------------------------------------------------------- /tests/syslinux/ubuntu10.04/isolinux/adtxt.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/syslinux_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/syslinux_test.in -------------------------------------------------------------------------------- /tests/tar_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/tar_test.in -------------------------------------------------------------------------------- /tests/test_sha512sum.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/test_sha512sum.in -------------------------------------------------------------------------------- /tests/test_unset.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/test_unset.in -------------------------------------------------------------------------------- /tests/udf_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/udf_test.in -------------------------------------------------------------------------------- /tests/uhci_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/uhci_test.in -------------------------------------------------------------------------------- /tests/util/grub-shell.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/util/grub-shell.in -------------------------------------------------------------------------------- /tests/xfs_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/xfs_test.in -------------------------------------------------------------------------------- /tests/xzcompress_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/xzcompress_test.in -------------------------------------------------------------------------------- /tests/zfs_test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/tests/zfs_test.in -------------------------------------------------------------------------------- /themes/starfield/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/themes/starfield/README -------------------------------------------------------------------------------- /unicode/ArabicShaping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/unicode/ArabicShaping.txt -------------------------------------------------------------------------------- /unicode/BidiMirroring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/unicode/BidiMirroring.txt -------------------------------------------------------------------------------- /unicode/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/unicode/COPYING -------------------------------------------------------------------------------- /unicode/UnicodeData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/unicode/UnicodeData.txt -------------------------------------------------------------------------------- /util/bin2h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/bin2h.c -------------------------------------------------------------------------------- /util/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/config.c -------------------------------------------------------------------------------- /util/editenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/editenv.c -------------------------------------------------------------------------------- /util/garbage-gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/garbage-gen.c -------------------------------------------------------------------------------- /util/getroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/getroot.c -------------------------------------------------------------------------------- /util/glue-efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/glue-efi.c -------------------------------------------------------------------------------- /util/grub-editenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-editenv.c -------------------------------------------------------------------------------- /util/grub-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-file.c -------------------------------------------------------------------------------- /util/grub-fstest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-fstest.c -------------------------------------------------------------------------------- /util/grub-gen-asciih.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-gen-asciih.c -------------------------------------------------------------------------------- /util/grub-gen-widthspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-gen-widthspec.c -------------------------------------------------------------------------------- /util/grub-glue-efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-glue-efi.c -------------------------------------------------------------------------------- /util/grub-install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-install.c -------------------------------------------------------------------------------- /util/grub-kbdcomp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-kbdcomp.in -------------------------------------------------------------------------------- /util/grub-macbless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-macbless.c -------------------------------------------------------------------------------- /util/grub-macho2img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-macho2img.c -------------------------------------------------------------------------------- /util/grub-menulst2cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-menulst2cfg.c -------------------------------------------------------------------------------- /util/grub-mkconfig.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mkconfig.in -------------------------------------------------------------------------------- /util/grub-mkconfig_lib.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mkconfig_lib.in -------------------------------------------------------------------------------- /util/grub-mkfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mkfont.c -------------------------------------------------------------------------------- /util/grub-mkimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mkimage.c -------------------------------------------------------------------------------- /util/grub-mkimage32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mkimage32.c -------------------------------------------------------------------------------- /util/grub-mkimage64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mkimage64.c -------------------------------------------------------------------------------- /util/grub-mkimagexx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mkimagexx.c -------------------------------------------------------------------------------- /util/grub-mklayout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mklayout.c -------------------------------------------------------------------------------- /util/grub-mknetdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mknetdir.c -------------------------------------------------------------------------------- /util/grub-mkrelpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mkrelpath.c -------------------------------------------------------------------------------- /util/grub-mkrescue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mkrescue.c -------------------------------------------------------------------------------- /util/grub-mkstandalone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mkstandalone.c -------------------------------------------------------------------------------- /util/grub-module-verifier32.c: -------------------------------------------------------------------------------- 1 | #define MODULEVERIFIER_ELF32 1 2 | #include "grub-module-verifierXX.c" 3 | -------------------------------------------------------------------------------- /util/grub-module-verifier64.c: -------------------------------------------------------------------------------- 1 | #define MODULEVERIFIER_ELF64 1 2 | #include "grub-module-verifierXX.c" 3 | -------------------------------------------------------------------------------- /util/grub-mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-mount.c -------------------------------------------------------------------------------- /util/grub-pe2elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-pe2elf.c -------------------------------------------------------------------------------- /util/grub-probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-probe.c -------------------------------------------------------------------------------- /util/grub-reboot.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-reboot.in -------------------------------------------------------------------------------- /util/grub-render-label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-render-label.c -------------------------------------------------------------------------------- /util/grub-script-check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-script-check.c -------------------------------------------------------------------------------- /util/grub-set-default.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-set-default.in -------------------------------------------------------------------------------- /util/grub-setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-setup.c -------------------------------------------------------------------------------- /util/grub-syslinux2cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub-syslinux2cfg.c -------------------------------------------------------------------------------- /util/grub.d/00_header.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub.d/00_header.in -------------------------------------------------------------------------------- /util/grub.d/10_hurd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub.d/10_hurd.in -------------------------------------------------------------------------------- /util/grub.d/10_illumos.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub.d/10_illumos.in -------------------------------------------------------------------------------- /util/grub.d/10_linux.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub.d/10_linux.in -------------------------------------------------------------------------------- /util/grub.d/10_netbsd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub.d/10_netbsd.in -------------------------------------------------------------------------------- /util/grub.d/10_windows.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub.d/10_windows.in -------------------------------------------------------------------------------- /util/grub.d/10_xnu.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub.d/10_xnu.in -------------------------------------------------------------------------------- /util/grub.d/40_custom.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub.d/40_custom.in -------------------------------------------------------------------------------- /util/grub.d/41_custom.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub.d/41_custom.in -------------------------------------------------------------------------------- /util/grub.d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/grub.d/README -------------------------------------------------------------------------------- /util/import_gcry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/import_gcry.py -------------------------------------------------------------------------------- /util/import_gcrypth.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/import_gcrypth.sed -------------------------------------------------------------------------------- /util/import_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/import_unicode.py -------------------------------------------------------------------------------- /util/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/misc.c -------------------------------------------------------------------------------- /util/mkimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/mkimage.c -------------------------------------------------------------------------------- /util/probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/probe.c -------------------------------------------------------------------------------- /util/render-label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/render-label.c -------------------------------------------------------------------------------- /util/resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/resolve.c -------------------------------------------------------------------------------- /util/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/setup.c -------------------------------------------------------------------------------- /util/setup_bios.c: -------------------------------------------------------------------------------- 1 | #define GRUB_SETUP_BIOS 1 2 | #include "setup.c" 3 | -------------------------------------------------------------------------------- /util/setup_sparc.c: -------------------------------------------------------------------------------- 1 | #define GRUB_SETUP_SPARC64 1 2 | #include "setup.c" 3 | -------------------------------------------------------------------------------- /util/spkmodem-recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohde-Schwarz/TrustedGRUB2/HEAD/util/spkmodem-recv.c --------------------------------------------------------------------------------