├── Android.mk ├── COPYING ├── README.md ├── avb ├── Android.mk ├── libavb │ ├── avb_chain_partition_descriptor.c │ ├── avb_chain_partition_descriptor.h │ ├── avb_cmdline.c │ ├── avb_cmdline.h │ ├── avb_crc32.c │ ├── avb_crypto.c │ ├── avb_crypto.h │ ├── avb_descriptor.c │ ├── avb_descriptor.h │ ├── avb_footer.c │ ├── avb_footer.h │ ├── avb_hash_descriptor.c │ ├── avb_hash_descriptor.h │ ├── avb_hashtree_descriptor.c │ ├── avb_hashtree_descriptor.h │ ├── avb_kernel_cmdline_descriptor.c │ ├── avb_kernel_cmdline_descriptor.h │ ├── avb_ops.h │ ├── avb_property_descriptor.c │ ├── avb_property_descriptor.h │ ├── avb_rsa.c │ ├── avb_rsa.h │ ├── avb_sha.h │ ├── avb_sha256.c │ ├── avb_sha512.c │ ├── avb_slot_verify.c │ ├── avb_slot_verify.h │ ├── avb_sysdeps.h │ ├── avb_sysdeps_posix.c │ ├── avb_util.c │ ├── avb_util.h │ ├── avb_vbmeta_image.c │ ├── avb_vbmeta_image.h │ ├── avb_version.c │ ├── avb_version.h │ └── libavb.h ├── libavb_ab │ ├── avb_ab_flow.c │ ├── avb_ab_flow.h │ ├── avb_ab_ops.h │ └── libavb_ab.h ├── libavb_atx │ ├── avb_atx_ops.h │ ├── avb_atx_types.h │ ├── avb_atx_validate.c │ ├── avb_atx_validate.h │ └── libavb_atx.h └── libavb_user │ ├── uefi_avb_ops.c │ ├── uefi_avb_ops.h │ ├── uefi_avb_sysdeps.c │ ├── uefi_avb_util.c │ └── uefi_avb_util.h ├── doc ├── autodetect.md ├── crashmode.md ├── fastboot.md └── installer.md ├── include ├── acpi.h ├── adb.h ├── aes_gcm.h ├── android.h ├── android_vb2.h ├── blobstore.h ├── dt_table.h ├── em.h ├── endian.h ├── fastboot.h ├── firststage_mount.h ├── gpio.h ├── gpt.h ├── gpt_bin.h ├── hecisupport.h ├── ioc_can.h ├── ioc_uart_protocol.h ├── keybox_provision.h ├── lib.h ├── libelfloader.h ├── libtipc.h ├── life_cycle.h ├── log.h ├── oemvars.h ├── options.h ├── pae.h ├── pci.h ├── power.h ├── protocol.h ├── security.h ├── security_interface.h ├── security_vb2.h ├── slot.h ├── smbios.h ├── sparse_format.h ├── storage.h ├── targets.h ├── tcp.h ├── text_parser.h ├── timer.h ├── tpm2_security.h ├── transport.h ├── trusty_common.h ├── trusty_interface.h ├── uefi_utils.h ├── ui.h ├── upng.h ├── usb.h ├── vars.h ├── vbmeta_ias.h ├── version.h └── watchdog.h ├── installer.c ├── kernelflinger.c ├── kf4abl.c ├── kf4cic.c ├── kfld.c ├── libadb ├── Android.mk ├── adb.c ├── adb_socket.c ├── adb_socket.h ├── devmem.c ├── devmem.h ├── hexdump.c ├── hexdump.h ├── ioport.c ├── ioport.h ├── lsacpi.c ├── lsacpi.h ├── lspartition.c ├── lspartition.h ├── lspci.c ├── lspci.h ├── pci_class.c ├── pci_class.h ├── reader.c ├── reader.h ├── reboot_service.c ├── service.h ├── shell_service.c ├── shell_service.h └── sync_service.c ├── libedk2_tpm ├── Android.mk ├── README ├── Tpm2Capability.c ├── Tpm2Context.c ├── Tpm2DeviceLib.c ├── Tpm2EnhancedAuthorization.c ├── Tpm2Help.c ├── Tpm2Hierarchy.c ├── Tpm2Integrity.c ├── Tpm2NVStorage.c ├── Tpm2Random.c ├── Tpm2Sequences.c ├── Tpm2Session.c └── include │ ├── Tcg2Protocol.h │ ├── Tpm12.h │ ├── Tpm20.h │ ├── Tpm2CommandLib.h │ ├── Tpm2DeviceLib.h │ ├── Tpm2Help.h │ └── UefiTcgPlatform.h ├── libefitcp ├── Android.mk └── tcp.c ├── libefiusb ├── Android.mk ├── device_mode │ ├── CpuIo2.h │ ├── UsbDeviceDxe.c │ ├── UsbDeviceDxe.h │ ├── UsbDeviceMode.c │ ├── UsbDeviceMode.h │ ├── XdciCommon.h │ ├── XdciDWC.c │ ├── XdciDWC.h │ ├── XdciDevice.c │ ├── XdciDevice.h │ ├── XdciInterface.h │ ├── XdciTable.c │ ├── XdciUtility.c │ ├── XdciUtility.h │ └── cpuio.c ├── protocol │ ├── Usb.h │ ├── UsbDeviceLib.h │ ├── UsbDeviceModeProtocol.h │ └── UsbIo.h └── usb.c ├── libelfloader ├── Android.mk ├── elf32_ld.c ├── elf64_ld.c ├── elf_ld.c └── include │ ├── elf32_ld.h │ ├── elf64_ld.h │ └── elf_ld.h ├── libfastboot ├── Android.mk ├── authenticated_action.c ├── authenticated_action.h ├── bootloader.c ├── bootloader.h ├── bootmgr.c ├── bootmgr.h ├── fastboot.c ├── fastboot_flashing.c ├── fastboot_flashing.h ├── fastboot_oem.c ├── fastboot_oem.h ├── fastboot_transport.c ├── fastboot_transport.h ├── fastboot_ui.c ├── fastboot_ui.h ├── flash.c ├── flash.h ├── hashes.c ├── hashes.h ├── info.c ├── info.h ├── intel_variables.c ├── intel_variables.h ├── keybox_provision.c ├── sparse.c └── sparse.h ├── libheci ├── Android.mk └── hecisupport.c ├── libkernelflinger ├── Android.mk ├── README ├── UsbMassBot.c ├── UsbMassBot.h ├── acpi.c ├── acpi_image.c ├── aes_gcm.c ├── android.c ├── android_vb2.c ├── blobstore.c ├── efilinux.c ├── efilinux.h ├── em.c ├── firststage_mount.c ├── general_block.c ├── gpio.c ├── gpt.c ├── ias_sig.c ├── ioc_can.c ├── lib.c ├── life_cycle.c ├── log.c ├── mmc.c ├── no_ui.c ├── nvme.c ├── oemvars.c ├── options.c ├── pae.c ├── pci.c ├── protocol │ ├── AcpiTableProtocol.h │ ├── Afws_general_heci_agent.h │ ├── Afws_keymaster_heci_agent.h │ ├── AtaPassThru.h │ ├── Atapi.h │ ├── BootloaderSeedProtocol.h │ ├── CardInfo.h │ ├── ChargingAppletProtocol.h │ ├── DevicePath.h │ ├── EraseBlock.h │ ├── GpioProtocol.h │ ├── Heci.h │ ├── LifeCycleProtocol.h │ ├── MkhiMsgs.h │ ├── Mmc.h │ ├── NvmExpressHci.h │ ├── NvmExpressPassthru.h │ ├── ScsiPassThruExt.h │ ├── SdHostIo.h │ ├── SdMmcPassThru.h │ ├── StorageSecurityCommand.h │ ├── tco_protocol.h │ └── ufs.h ├── qsort.c ├── res │ ├── fonts │ │ ├── 12x22_font.png │ │ ├── 18x32_font.png │ │ ├── OFL.txt │ │ └── README │ └── images │ │ ├── bootloader.png │ │ ├── crash_event.png │ │ ├── crashmode.png │ │ ├── droid_operation.png │ │ ├── empty_battery.png │ │ ├── low_battery.png │ │ ├── power_off.png │ │ ├── reboot.png │ │ ├── recoverymode.png │ │ ├── restartbootloader.png │ │ ├── splash_intel.png │ │ └── start.png ├── sata.c ├── sdcard.c ├── sdio.c ├── sdio.h ├── security.c ├── security_abl.c ├── security_efi.c ├── security_efi.h ├── security_sbl.c ├── security_vb2.c ├── security_vsbl.c ├── slot.c ├── slot_avb.c ├── smbios.c ├── storage.c ├── targets.c ├── text_parser.c ├── timer.c ├── tools │ ├── Android.mk │ ├── gen_fonts.sh │ └── png2c.c ├── tpm2_security.c ├── trusty_abl.c ├── trusty_common.c ├── trusty_efi.c ├── trusty_sbl.c ├── trusty_vsbl.c ├── uefi_utils.c ├── ufs.c ├── ui.c ├── ui_boot_menu.c ├── ui_color.c ├── ui_confirm.c ├── ui_font.c ├── ui_image.c ├── ui_textarea.c ├── upng.c ├── usb_storage.c ├── vars.c ├── vbmeta_ias.c ├── virtual_media.c └── watchdog.c ├── libqltipc ├── Android.mk ├── interface │ └── include │ │ └── interface │ │ ├── avb │ │ └── avb.h │ │ └── keymaster │ │ └── keymaster.h └── ql-tipc │ ├── Android.mk │ ├── LICENSE │ ├── README.md │ ├── arch │ └── x86 │ │ ├── compiler.h │ │ ├── sysdeps_osloader.c │ │ ├── trusty_dev.c │ │ └── trusty_mem.c │ ├── avb.c │ ├── include │ └── trusty │ │ ├── arm_ffa.h │ │ ├── avb.h │ │ ├── keymaster.h │ │ ├── keymaster_serializable.h │ │ ├── libtipc.h │ │ ├── rpmb.h │ │ ├── sm_err.h │ │ ├── smc.h │ │ ├── smcall.h │ │ ├── sysdeps.h │ │ ├── trusty_dev.h │ │ ├── trusty_ipc.h │ │ ├── trusty_mem.h │ │ └── util.h │ ├── ipc.c │ ├── ipc_dev.c │ ├── keymaster.c │ ├── keymaster_serializable.c │ ├── libtipc.c │ ├── trusty_dev_common.c │ └── util.c ├── libsslsupport ├── Android.mk ├── borningssl │ └── sys │ │ └── syscall.h ├── errno.h ├── inttypes.h ├── limits.h ├── openssl_support.h ├── stdarg.h ├── stddef.h ├── stdio.h ├── stdlib.h ├── sys │ └── types.h ├── time.h └── wrapper.c ├── libtransport ├── Android.mk └── transport.c ├── prebuilt └── board │ └── APL_UP2 │ └── fastboot.elf ├── unittest.c ├── unittest.h ├── ux.c └── ux.h /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/Android.mk -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/README.md -------------------------------------------------------------------------------- /avb/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/Android.mk -------------------------------------------------------------------------------- /avb/libavb/avb_chain_partition_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_chain_partition_descriptor.c -------------------------------------------------------------------------------- /avb/libavb/avb_chain_partition_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_chain_partition_descriptor.h -------------------------------------------------------------------------------- /avb/libavb/avb_cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_cmdline.c -------------------------------------------------------------------------------- /avb/libavb/avb_cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_cmdline.h -------------------------------------------------------------------------------- /avb/libavb/avb_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_crc32.c -------------------------------------------------------------------------------- /avb/libavb/avb_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_crypto.c -------------------------------------------------------------------------------- /avb/libavb/avb_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_crypto.h -------------------------------------------------------------------------------- /avb/libavb/avb_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_descriptor.c -------------------------------------------------------------------------------- /avb/libavb/avb_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_descriptor.h -------------------------------------------------------------------------------- /avb/libavb/avb_footer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_footer.c -------------------------------------------------------------------------------- /avb/libavb/avb_footer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_footer.h -------------------------------------------------------------------------------- /avb/libavb/avb_hash_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_hash_descriptor.c -------------------------------------------------------------------------------- /avb/libavb/avb_hash_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_hash_descriptor.h -------------------------------------------------------------------------------- /avb/libavb/avb_hashtree_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_hashtree_descriptor.c -------------------------------------------------------------------------------- /avb/libavb/avb_hashtree_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_hashtree_descriptor.h -------------------------------------------------------------------------------- /avb/libavb/avb_kernel_cmdline_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_kernel_cmdline_descriptor.c -------------------------------------------------------------------------------- /avb/libavb/avb_kernel_cmdline_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_kernel_cmdline_descriptor.h -------------------------------------------------------------------------------- /avb/libavb/avb_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_ops.h -------------------------------------------------------------------------------- /avb/libavb/avb_property_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_property_descriptor.c -------------------------------------------------------------------------------- /avb/libavb/avb_property_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_property_descriptor.h -------------------------------------------------------------------------------- /avb/libavb/avb_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_rsa.c -------------------------------------------------------------------------------- /avb/libavb/avb_rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_rsa.h -------------------------------------------------------------------------------- /avb/libavb/avb_sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_sha.h -------------------------------------------------------------------------------- /avb/libavb/avb_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_sha256.c -------------------------------------------------------------------------------- /avb/libavb/avb_sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_sha512.c -------------------------------------------------------------------------------- /avb/libavb/avb_slot_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_slot_verify.c -------------------------------------------------------------------------------- /avb/libavb/avb_slot_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_slot_verify.h -------------------------------------------------------------------------------- /avb/libavb/avb_sysdeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_sysdeps.h -------------------------------------------------------------------------------- /avb/libavb/avb_sysdeps_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_sysdeps_posix.c -------------------------------------------------------------------------------- /avb/libavb/avb_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_util.c -------------------------------------------------------------------------------- /avb/libavb/avb_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_util.h -------------------------------------------------------------------------------- /avb/libavb/avb_vbmeta_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_vbmeta_image.c -------------------------------------------------------------------------------- /avb/libavb/avb_vbmeta_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_vbmeta_image.h -------------------------------------------------------------------------------- /avb/libavb/avb_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_version.c -------------------------------------------------------------------------------- /avb/libavb/avb_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/avb_version.h -------------------------------------------------------------------------------- /avb/libavb/libavb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb/libavb.h -------------------------------------------------------------------------------- /avb/libavb_ab/avb_ab_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_ab/avb_ab_flow.c -------------------------------------------------------------------------------- /avb/libavb_ab/avb_ab_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_ab/avb_ab_flow.h -------------------------------------------------------------------------------- /avb/libavb_ab/avb_ab_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_ab/avb_ab_ops.h -------------------------------------------------------------------------------- /avb/libavb_ab/libavb_ab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_ab/libavb_ab.h -------------------------------------------------------------------------------- /avb/libavb_atx/avb_atx_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_atx/avb_atx_ops.h -------------------------------------------------------------------------------- /avb/libavb_atx/avb_atx_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_atx/avb_atx_types.h -------------------------------------------------------------------------------- /avb/libavb_atx/avb_atx_validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_atx/avb_atx_validate.c -------------------------------------------------------------------------------- /avb/libavb_atx/avb_atx_validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_atx/avb_atx_validate.h -------------------------------------------------------------------------------- /avb/libavb_atx/libavb_atx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_atx/libavb_atx.h -------------------------------------------------------------------------------- /avb/libavb_user/uefi_avb_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_user/uefi_avb_ops.c -------------------------------------------------------------------------------- /avb/libavb_user/uefi_avb_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_user/uefi_avb_ops.h -------------------------------------------------------------------------------- /avb/libavb_user/uefi_avb_sysdeps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_user/uefi_avb_sysdeps.c -------------------------------------------------------------------------------- /avb/libavb_user/uefi_avb_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_user/uefi_avb_util.c -------------------------------------------------------------------------------- /avb/libavb_user/uefi_avb_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/avb/libavb_user/uefi_avb_util.h -------------------------------------------------------------------------------- /doc/autodetect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/doc/autodetect.md -------------------------------------------------------------------------------- /doc/crashmode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/doc/crashmode.md -------------------------------------------------------------------------------- /doc/fastboot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/doc/fastboot.md -------------------------------------------------------------------------------- /doc/installer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/doc/installer.md -------------------------------------------------------------------------------- /include/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/acpi.h -------------------------------------------------------------------------------- /include/adb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/adb.h -------------------------------------------------------------------------------- /include/aes_gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/aes_gcm.h -------------------------------------------------------------------------------- /include/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/android.h -------------------------------------------------------------------------------- /include/android_vb2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/android_vb2.h -------------------------------------------------------------------------------- /include/blobstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/blobstore.h -------------------------------------------------------------------------------- /include/dt_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/dt_table.h -------------------------------------------------------------------------------- /include/em.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/em.h -------------------------------------------------------------------------------- /include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/endian.h -------------------------------------------------------------------------------- /include/fastboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/fastboot.h -------------------------------------------------------------------------------- /include/firststage_mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/firststage_mount.h -------------------------------------------------------------------------------- /include/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/gpio.h -------------------------------------------------------------------------------- /include/gpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/gpt.h -------------------------------------------------------------------------------- /include/gpt_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/gpt_bin.h -------------------------------------------------------------------------------- /include/hecisupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/hecisupport.h -------------------------------------------------------------------------------- /include/ioc_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/ioc_can.h -------------------------------------------------------------------------------- /include/ioc_uart_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/ioc_uart_protocol.h -------------------------------------------------------------------------------- /include/keybox_provision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/keybox_provision.h -------------------------------------------------------------------------------- /include/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/lib.h -------------------------------------------------------------------------------- /include/libelfloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/libelfloader.h -------------------------------------------------------------------------------- /include/libtipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/libtipc.h -------------------------------------------------------------------------------- /include/life_cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/life_cycle.h -------------------------------------------------------------------------------- /include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/log.h -------------------------------------------------------------------------------- /include/oemvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/oemvars.h -------------------------------------------------------------------------------- /include/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/options.h -------------------------------------------------------------------------------- /include/pae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/pae.h -------------------------------------------------------------------------------- /include/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/pci.h -------------------------------------------------------------------------------- /include/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/power.h -------------------------------------------------------------------------------- /include/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/protocol.h -------------------------------------------------------------------------------- /include/security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/security.h -------------------------------------------------------------------------------- /include/security_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/security_interface.h -------------------------------------------------------------------------------- /include/security_vb2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/security_vb2.h -------------------------------------------------------------------------------- /include/slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/slot.h -------------------------------------------------------------------------------- /include/smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/smbios.h -------------------------------------------------------------------------------- /include/sparse_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/sparse_format.h -------------------------------------------------------------------------------- /include/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/storage.h -------------------------------------------------------------------------------- /include/targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/targets.h -------------------------------------------------------------------------------- /include/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/tcp.h -------------------------------------------------------------------------------- /include/text_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/text_parser.h -------------------------------------------------------------------------------- /include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/timer.h -------------------------------------------------------------------------------- /include/tpm2_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/tpm2_security.h -------------------------------------------------------------------------------- /include/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/transport.h -------------------------------------------------------------------------------- /include/trusty_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/trusty_common.h -------------------------------------------------------------------------------- /include/trusty_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/trusty_interface.h -------------------------------------------------------------------------------- /include/uefi_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/uefi_utils.h -------------------------------------------------------------------------------- /include/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/ui.h -------------------------------------------------------------------------------- /include/upng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/upng.h -------------------------------------------------------------------------------- /include/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/usb.h -------------------------------------------------------------------------------- /include/vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/vars.h -------------------------------------------------------------------------------- /include/vbmeta_ias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/vbmeta_ias.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/version.h -------------------------------------------------------------------------------- /include/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/include/watchdog.h -------------------------------------------------------------------------------- /installer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/installer.c -------------------------------------------------------------------------------- /kernelflinger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/kernelflinger.c -------------------------------------------------------------------------------- /kf4abl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/kf4abl.c -------------------------------------------------------------------------------- /kf4cic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/kf4cic.c -------------------------------------------------------------------------------- /kfld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/kfld.c -------------------------------------------------------------------------------- /libadb/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/Android.mk -------------------------------------------------------------------------------- /libadb/adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/adb.c -------------------------------------------------------------------------------- /libadb/adb_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/adb_socket.c -------------------------------------------------------------------------------- /libadb/adb_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/adb_socket.h -------------------------------------------------------------------------------- /libadb/devmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/devmem.c -------------------------------------------------------------------------------- /libadb/devmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/devmem.h -------------------------------------------------------------------------------- /libadb/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/hexdump.c -------------------------------------------------------------------------------- /libadb/hexdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/hexdump.h -------------------------------------------------------------------------------- /libadb/ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/ioport.c -------------------------------------------------------------------------------- /libadb/ioport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/ioport.h -------------------------------------------------------------------------------- /libadb/lsacpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/lsacpi.c -------------------------------------------------------------------------------- /libadb/lsacpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/lsacpi.h -------------------------------------------------------------------------------- /libadb/lspartition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/lspartition.c -------------------------------------------------------------------------------- /libadb/lspartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/lspartition.h -------------------------------------------------------------------------------- /libadb/lspci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/lspci.c -------------------------------------------------------------------------------- /libadb/lspci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/lspci.h -------------------------------------------------------------------------------- /libadb/pci_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/pci_class.c -------------------------------------------------------------------------------- /libadb/pci_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/pci_class.h -------------------------------------------------------------------------------- /libadb/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/reader.c -------------------------------------------------------------------------------- /libadb/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/reader.h -------------------------------------------------------------------------------- /libadb/reboot_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/reboot_service.c -------------------------------------------------------------------------------- /libadb/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/service.h -------------------------------------------------------------------------------- /libadb/shell_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/shell_service.c -------------------------------------------------------------------------------- /libadb/shell_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/shell_service.h -------------------------------------------------------------------------------- /libadb/sync_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libadb/sync_service.c -------------------------------------------------------------------------------- /libedk2_tpm/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/Android.mk -------------------------------------------------------------------------------- /libedk2_tpm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/README -------------------------------------------------------------------------------- /libedk2_tpm/Tpm2Capability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/Tpm2Capability.c -------------------------------------------------------------------------------- /libedk2_tpm/Tpm2Context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/Tpm2Context.c -------------------------------------------------------------------------------- /libedk2_tpm/Tpm2DeviceLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/Tpm2DeviceLib.c -------------------------------------------------------------------------------- /libedk2_tpm/Tpm2EnhancedAuthorization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/Tpm2EnhancedAuthorization.c -------------------------------------------------------------------------------- /libedk2_tpm/Tpm2Help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/Tpm2Help.c -------------------------------------------------------------------------------- /libedk2_tpm/Tpm2Hierarchy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/Tpm2Hierarchy.c -------------------------------------------------------------------------------- /libedk2_tpm/Tpm2Integrity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/Tpm2Integrity.c -------------------------------------------------------------------------------- /libedk2_tpm/Tpm2NVStorage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/Tpm2NVStorage.c -------------------------------------------------------------------------------- /libedk2_tpm/Tpm2Random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/Tpm2Random.c -------------------------------------------------------------------------------- /libedk2_tpm/Tpm2Sequences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/Tpm2Sequences.c -------------------------------------------------------------------------------- /libedk2_tpm/Tpm2Session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/Tpm2Session.c -------------------------------------------------------------------------------- /libedk2_tpm/include/Tcg2Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/include/Tcg2Protocol.h -------------------------------------------------------------------------------- /libedk2_tpm/include/Tpm12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/include/Tpm12.h -------------------------------------------------------------------------------- /libedk2_tpm/include/Tpm20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/include/Tpm20.h -------------------------------------------------------------------------------- /libedk2_tpm/include/Tpm2CommandLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/include/Tpm2CommandLib.h -------------------------------------------------------------------------------- /libedk2_tpm/include/Tpm2DeviceLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/include/Tpm2DeviceLib.h -------------------------------------------------------------------------------- /libedk2_tpm/include/Tpm2Help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/include/Tpm2Help.h -------------------------------------------------------------------------------- /libedk2_tpm/include/UefiTcgPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libedk2_tpm/include/UefiTcgPlatform.h -------------------------------------------------------------------------------- /libefitcp/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefitcp/Android.mk -------------------------------------------------------------------------------- /libefitcp/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefitcp/tcp.c -------------------------------------------------------------------------------- /libefiusb/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/Android.mk -------------------------------------------------------------------------------- /libefiusb/device_mode/CpuIo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/CpuIo2.h -------------------------------------------------------------------------------- /libefiusb/device_mode/UsbDeviceDxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/UsbDeviceDxe.c -------------------------------------------------------------------------------- /libefiusb/device_mode/UsbDeviceDxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/UsbDeviceDxe.h -------------------------------------------------------------------------------- /libefiusb/device_mode/UsbDeviceMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/UsbDeviceMode.c -------------------------------------------------------------------------------- /libefiusb/device_mode/UsbDeviceMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/UsbDeviceMode.h -------------------------------------------------------------------------------- /libefiusb/device_mode/XdciCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/XdciCommon.h -------------------------------------------------------------------------------- /libefiusb/device_mode/XdciDWC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/XdciDWC.c -------------------------------------------------------------------------------- /libefiusb/device_mode/XdciDWC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/XdciDWC.h -------------------------------------------------------------------------------- /libefiusb/device_mode/XdciDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/XdciDevice.c -------------------------------------------------------------------------------- /libefiusb/device_mode/XdciDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/XdciDevice.h -------------------------------------------------------------------------------- /libefiusb/device_mode/XdciInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/XdciInterface.h -------------------------------------------------------------------------------- /libefiusb/device_mode/XdciTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/XdciTable.c -------------------------------------------------------------------------------- /libefiusb/device_mode/XdciUtility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/XdciUtility.c -------------------------------------------------------------------------------- /libefiusb/device_mode/XdciUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/XdciUtility.h -------------------------------------------------------------------------------- /libefiusb/device_mode/cpuio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/device_mode/cpuio.c -------------------------------------------------------------------------------- /libefiusb/protocol/Usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/protocol/Usb.h -------------------------------------------------------------------------------- /libefiusb/protocol/UsbDeviceLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/protocol/UsbDeviceLib.h -------------------------------------------------------------------------------- /libefiusb/protocol/UsbDeviceModeProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/protocol/UsbDeviceModeProtocol.h -------------------------------------------------------------------------------- /libefiusb/protocol/UsbIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/protocol/UsbIo.h -------------------------------------------------------------------------------- /libefiusb/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libefiusb/usb.c -------------------------------------------------------------------------------- /libelfloader/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libelfloader/Android.mk -------------------------------------------------------------------------------- /libelfloader/elf32_ld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libelfloader/elf32_ld.c -------------------------------------------------------------------------------- /libelfloader/elf64_ld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libelfloader/elf64_ld.c -------------------------------------------------------------------------------- /libelfloader/elf_ld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libelfloader/elf_ld.c -------------------------------------------------------------------------------- /libelfloader/include/elf32_ld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libelfloader/include/elf32_ld.h -------------------------------------------------------------------------------- /libelfloader/include/elf64_ld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libelfloader/include/elf64_ld.h -------------------------------------------------------------------------------- /libelfloader/include/elf_ld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libelfloader/include/elf_ld.h -------------------------------------------------------------------------------- /libfastboot/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/Android.mk -------------------------------------------------------------------------------- /libfastboot/authenticated_action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/authenticated_action.c -------------------------------------------------------------------------------- /libfastboot/authenticated_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/authenticated_action.h -------------------------------------------------------------------------------- /libfastboot/bootloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/bootloader.c -------------------------------------------------------------------------------- /libfastboot/bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/bootloader.h -------------------------------------------------------------------------------- /libfastboot/bootmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/bootmgr.c -------------------------------------------------------------------------------- /libfastboot/bootmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/bootmgr.h -------------------------------------------------------------------------------- /libfastboot/fastboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/fastboot.c -------------------------------------------------------------------------------- /libfastboot/fastboot_flashing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/fastboot_flashing.c -------------------------------------------------------------------------------- /libfastboot/fastboot_flashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/fastboot_flashing.h -------------------------------------------------------------------------------- /libfastboot/fastboot_oem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/fastboot_oem.c -------------------------------------------------------------------------------- /libfastboot/fastboot_oem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/fastboot_oem.h -------------------------------------------------------------------------------- /libfastboot/fastboot_transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/fastboot_transport.c -------------------------------------------------------------------------------- /libfastboot/fastboot_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/fastboot_transport.h -------------------------------------------------------------------------------- /libfastboot/fastboot_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/fastboot_ui.c -------------------------------------------------------------------------------- /libfastboot/fastboot_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/fastboot_ui.h -------------------------------------------------------------------------------- /libfastboot/flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/flash.c -------------------------------------------------------------------------------- /libfastboot/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/flash.h -------------------------------------------------------------------------------- /libfastboot/hashes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/hashes.c -------------------------------------------------------------------------------- /libfastboot/hashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/hashes.h -------------------------------------------------------------------------------- /libfastboot/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/info.c -------------------------------------------------------------------------------- /libfastboot/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/info.h -------------------------------------------------------------------------------- /libfastboot/intel_variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/intel_variables.c -------------------------------------------------------------------------------- /libfastboot/intel_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/intel_variables.h -------------------------------------------------------------------------------- /libfastboot/keybox_provision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/keybox_provision.c -------------------------------------------------------------------------------- /libfastboot/sparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/sparse.c -------------------------------------------------------------------------------- /libfastboot/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libfastboot/sparse.h -------------------------------------------------------------------------------- /libheci/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libheci/Android.mk -------------------------------------------------------------------------------- /libheci/hecisupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libheci/hecisupport.c -------------------------------------------------------------------------------- /libkernelflinger/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/Android.mk -------------------------------------------------------------------------------- /libkernelflinger/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/README -------------------------------------------------------------------------------- /libkernelflinger/UsbMassBot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/UsbMassBot.c -------------------------------------------------------------------------------- /libkernelflinger/UsbMassBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/UsbMassBot.h -------------------------------------------------------------------------------- /libkernelflinger/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/acpi.c -------------------------------------------------------------------------------- /libkernelflinger/acpi_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/acpi_image.c -------------------------------------------------------------------------------- /libkernelflinger/aes_gcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/aes_gcm.c -------------------------------------------------------------------------------- /libkernelflinger/android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/android.c -------------------------------------------------------------------------------- /libkernelflinger/android_vb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/android_vb2.c -------------------------------------------------------------------------------- /libkernelflinger/blobstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/blobstore.c -------------------------------------------------------------------------------- /libkernelflinger/efilinux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/efilinux.c -------------------------------------------------------------------------------- /libkernelflinger/efilinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/efilinux.h -------------------------------------------------------------------------------- /libkernelflinger/em.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/em.c -------------------------------------------------------------------------------- /libkernelflinger/firststage_mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/firststage_mount.c -------------------------------------------------------------------------------- /libkernelflinger/general_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/general_block.c -------------------------------------------------------------------------------- /libkernelflinger/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/gpio.c -------------------------------------------------------------------------------- /libkernelflinger/gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/gpt.c -------------------------------------------------------------------------------- /libkernelflinger/ias_sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/ias_sig.c -------------------------------------------------------------------------------- /libkernelflinger/ioc_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/ioc_can.c -------------------------------------------------------------------------------- /libkernelflinger/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/lib.c -------------------------------------------------------------------------------- /libkernelflinger/life_cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/life_cycle.c -------------------------------------------------------------------------------- /libkernelflinger/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/log.c -------------------------------------------------------------------------------- /libkernelflinger/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/mmc.c -------------------------------------------------------------------------------- /libkernelflinger/no_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/no_ui.c -------------------------------------------------------------------------------- /libkernelflinger/nvme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/nvme.c -------------------------------------------------------------------------------- /libkernelflinger/oemvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/oemvars.c -------------------------------------------------------------------------------- /libkernelflinger/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/options.c -------------------------------------------------------------------------------- /libkernelflinger/pae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/pae.c -------------------------------------------------------------------------------- /libkernelflinger/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/pci.c -------------------------------------------------------------------------------- /libkernelflinger/protocol/AcpiTableProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/AcpiTableProtocol.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/Afws_general_heci_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/Afws_general_heci_agent.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/Afws_keymaster_heci_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/Afws_keymaster_heci_agent.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/AtaPassThru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/AtaPassThru.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/Atapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/Atapi.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/BootloaderSeedProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/BootloaderSeedProtocol.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/CardInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/CardInfo.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/ChargingAppletProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/ChargingAppletProtocol.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/DevicePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/DevicePath.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/EraseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/EraseBlock.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/GpioProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/GpioProtocol.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/Heci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/Heci.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/LifeCycleProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/LifeCycleProtocol.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/MkhiMsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/MkhiMsgs.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/Mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/Mmc.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/NvmExpressHci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/NvmExpressHci.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/NvmExpressPassthru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/NvmExpressPassthru.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/ScsiPassThruExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/ScsiPassThruExt.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/SdHostIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/SdHostIo.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/SdMmcPassThru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/SdMmcPassThru.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/StorageSecurityCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/StorageSecurityCommand.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/tco_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/tco_protocol.h -------------------------------------------------------------------------------- /libkernelflinger/protocol/ufs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/protocol/ufs.h -------------------------------------------------------------------------------- /libkernelflinger/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/qsort.c -------------------------------------------------------------------------------- /libkernelflinger/res/fonts/12x22_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/fonts/12x22_font.png -------------------------------------------------------------------------------- /libkernelflinger/res/fonts/18x32_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/fonts/18x32_font.png -------------------------------------------------------------------------------- /libkernelflinger/res/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/fonts/OFL.txt -------------------------------------------------------------------------------- /libkernelflinger/res/fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/fonts/README -------------------------------------------------------------------------------- /libkernelflinger/res/images/bootloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/images/bootloader.png -------------------------------------------------------------------------------- /libkernelflinger/res/images/crash_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/images/crash_event.png -------------------------------------------------------------------------------- /libkernelflinger/res/images/crashmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/images/crashmode.png -------------------------------------------------------------------------------- /libkernelflinger/res/images/droid_operation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/images/droid_operation.png -------------------------------------------------------------------------------- /libkernelflinger/res/images/empty_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/images/empty_battery.png -------------------------------------------------------------------------------- /libkernelflinger/res/images/low_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/images/low_battery.png -------------------------------------------------------------------------------- /libkernelflinger/res/images/power_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/images/power_off.png -------------------------------------------------------------------------------- /libkernelflinger/res/images/reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/images/reboot.png -------------------------------------------------------------------------------- /libkernelflinger/res/images/recoverymode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/images/recoverymode.png -------------------------------------------------------------------------------- /libkernelflinger/res/images/restartbootloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/images/restartbootloader.png -------------------------------------------------------------------------------- /libkernelflinger/res/images/splash_intel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/images/splash_intel.png -------------------------------------------------------------------------------- /libkernelflinger/res/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/res/images/start.png -------------------------------------------------------------------------------- /libkernelflinger/sata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/sata.c -------------------------------------------------------------------------------- /libkernelflinger/sdcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/sdcard.c -------------------------------------------------------------------------------- /libkernelflinger/sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/sdio.c -------------------------------------------------------------------------------- /libkernelflinger/sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/sdio.h -------------------------------------------------------------------------------- /libkernelflinger/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/security.c -------------------------------------------------------------------------------- /libkernelflinger/security_abl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/security_abl.c -------------------------------------------------------------------------------- /libkernelflinger/security_efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/security_efi.c -------------------------------------------------------------------------------- /libkernelflinger/security_efi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/security_efi.h -------------------------------------------------------------------------------- /libkernelflinger/security_sbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/security_sbl.c -------------------------------------------------------------------------------- /libkernelflinger/security_vb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/security_vb2.c -------------------------------------------------------------------------------- /libkernelflinger/security_vsbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/security_vsbl.c -------------------------------------------------------------------------------- /libkernelflinger/slot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/slot.c -------------------------------------------------------------------------------- /libkernelflinger/slot_avb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/slot_avb.c -------------------------------------------------------------------------------- /libkernelflinger/smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/smbios.c -------------------------------------------------------------------------------- /libkernelflinger/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/storage.c -------------------------------------------------------------------------------- /libkernelflinger/targets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/targets.c -------------------------------------------------------------------------------- /libkernelflinger/text_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/text_parser.c -------------------------------------------------------------------------------- /libkernelflinger/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/timer.c -------------------------------------------------------------------------------- /libkernelflinger/tools/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/tools/Android.mk -------------------------------------------------------------------------------- /libkernelflinger/tools/gen_fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/tools/gen_fonts.sh -------------------------------------------------------------------------------- /libkernelflinger/tools/png2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/tools/png2c.c -------------------------------------------------------------------------------- /libkernelflinger/tpm2_security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/tpm2_security.c -------------------------------------------------------------------------------- /libkernelflinger/trusty_abl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/trusty_abl.c -------------------------------------------------------------------------------- /libkernelflinger/trusty_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/trusty_common.c -------------------------------------------------------------------------------- /libkernelflinger/trusty_efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/trusty_efi.c -------------------------------------------------------------------------------- /libkernelflinger/trusty_sbl.c: -------------------------------------------------------------------------------- 1 | trusty_abl.c -------------------------------------------------------------------------------- /libkernelflinger/trusty_vsbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/trusty_vsbl.c -------------------------------------------------------------------------------- /libkernelflinger/uefi_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/uefi_utils.c -------------------------------------------------------------------------------- /libkernelflinger/ufs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/ufs.c -------------------------------------------------------------------------------- /libkernelflinger/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/ui.c -------------------------------------------------------------------------------- /libkernelflinger/ui_boot_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/ui_boot_menu.c -------------------------------------------------------------------------------- /libkernelflinger/ui_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/ui_color.c -------------------------------------------------------------------------------- /libkernelflinger/ui_confirm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/ui_confirm.c -------------------------------------------------------------------------------- /libkernelflinger/ui_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/ui_font.c -------------------------------------------------------------------------------- /libkernelflinger/ui_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/ui_image.c -------------------------------------------------------------------------------- /libkernelflinger/ui_textarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/ui_textarea.c -------------------------------------------------------------------------------- /libkernelflinger/upng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/upng.c -------------------------------------------------------------------------------- /libkernelflinger/usb_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/usb_storage.c -------------------------------------------------------------------------------- /libkernelflinger/vars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/vars.c -------------------------------------------------------------------------------- /libkernelflinger/vbmeta_ias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/vbmeta_ias.c -------------------------------------------------------------------------------- /libkernelflinger/virtual_media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/virtual_media.c -------------------------------------------------------------------------------- /libkernelflinger/watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libkernelflinger/watchdog.c -------------------------------------------------------------------------------- /libqltipc/Android.mk: -------------------------------------------------------------------------------- 1 | 2 | include $(all-subdir-makefiles) 3 | -------------------------------------------------------------------------------- /libqltipc/interface/include/interface/avb/avb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/interface/include/interface/avb/avb.h -------------------------------------------------------------------------------- /libqltipc/interface/include/interface/keymaster/keymaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/interface/include/interface/keymaster/keymaster.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/Android.mk -------------------------------------------------------------------------------- /libqltipc/ql-tipc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/LICENSE -------------------------------------------------------------------------------- /libqltipc/ql-tipc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/README.md -------------------------------------------------------------------------------- /libqltipc/ql-tipc/arch/x86/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/arch/x86/compiler.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/arch/x86/sysdeps_osloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/arch/x86/sysdeps_osloader.c -------------------------------------------------------------------------------- /libqltipc/ql-tipc/arch/x86/trusty_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/arch/x86/trusty_dev.c -------------------------------------------------------------------------------- /libqltipc/ql-tipc/arch/x86/trusty_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/arch/x86/trusty_mem.c -------------------------------------------------------------------------------- /libqltipc/ql-tipc/avb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/avb.c -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/arm_ffa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/arm_ffa.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/avb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/avb.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/keymaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/keymaster.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/keymaster_serializable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/keymaster_serializable.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/libtipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/libtipc.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/rpmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/rpmb.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/sm_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/sm_err.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/smc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/smc.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/smcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/smcall.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/sysdeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/sysdeps.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/trusty_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/trusty_dev.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/trusty_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/trusty_ipc.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/trusty_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/trusty_mem.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/include/trusty/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/include/trusty/util.h -------------------------------------------------------------------------------- /libqltipc/ql-tipc/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/ipc.c -------------------------------------------------------------------------------- /libqltipc/ql-tipc/ipc_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/ipc_dev.c -------------------------------------------------------------------------------- /libqltipc/ql-tipc/keymaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/keymaster.c -------------------------------------------------------------------------------- /libqltipc/ql-tipc/keymaster_serializable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/keymaster_serializable.c -------------------------------------------------------------------------------- /libqltipc/ql-tipc/libtipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/libtipc.c -------------------------------------------------------------------------------- /libqltipc/ql-tipc/trusty_dev_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/trusty_dev_common.c -------------------------------------------------------------------------------- /libqltipc/ql-tipc/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libqltipc/ql-tipc/util.c -------------------------------------------------------------------------------- /libsslsupport/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libsslsupport/Android.mk -------------------------------------------------------------------------------- /libsslsupport/borningssl/sys/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libsslsupport/borningssl/sys/syscall.h -------------------------------------------------------------------------------- /libsslsupport/errno.h: -------------------------------------------------------------------------------- 1 | #include "openssl_support.h" 2 | -------------------------------------------------------------------------------- /libsslsupport/inttypes.h: -------------------------------------------------------------------------------- 1 | #include "openssl_support.h" 2 | -------------------------------------------------------------------------------- /libsslsupport/limits.h: -------------------------------------------------------------------------------- 1 | #include "openssl_support.h" 2 | -------------------------------------------------------------------------------- /libsslsupport/openssl_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libsslsupport/openssl_support.h -------------------------------------------------------------------------------- /libsslsupport/stdarg.h: -------------------------------------------------------------------------------- 1 | #include "openssl_support.h" 2 | -------------------------------------------------------------------------------- /libsslsupport/stddef.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libsslsupport/stdio.h: -------------------------------------------------------------------------------- 1 | #include "openssl_support.h" 2 | -------------------------------------------------------------------------------- /libsslsupport/stdlib.h: -------------------------------------------------------------------------------- 1 | #include "openssl_support.h" 2 | -------------------------------------------------------------------------------- /libsslsupport/sys/types.h: -------------------------------------------------------------------------------- 1 | #include "openssl_support.h" 2 | -------------------------------------------------------------------------------- /libsslsupport/time.h: -------------------------------------------------------------------------------- 1 | #include "openssl_support.h" 2 | -------------------------------------------------------------------------------- /libsslsupport/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libsslsupport/wrapper.c -------------------------------------------------------------------------------- /libtransport/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libtransport/Android.mk -------------------------------------------------------------------------------- /libtransport/transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/libtransport/transport.c -------------------------------------------------------------------------------- /prebuilt/board/APL_UP2/fastboot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/prebuilt/board/APL_UP2/fastboot.elf -------------------------------------------------------------------------------- /unittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/unittest.c -------------------------------------------------------------------------------- /unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/unittest.h -------------------------------------------------------------------------------- /ux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/ux.c -------------------------------------------------------------------------------- /ux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/kernelflinger/HEAD/ux.h --------------------------------------------------------------------------------