├── .github └── workflows │ ├── main.yml │ └── sync.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── common.h ├── compat ├── string_compat.c ├── string_compat.h └── toolkit │ ├── drivers │ └── usb │ │ └── storage │ │ └── usb.h │ ├── fs │ └── proc │ │ └── internal.h │ └── include │ └── .gitkeep ├── config ├── cmdline_delegate.c ├── cmdline_delegate.h ├── cmdline_opts.h ├── platform_types.h ├── platforms.h ├── runtime_config.c ├── runtime_config.h ├── uart_defs.h └── vpci_types.h ├── debug ├── debug_execve.c ├── debug_execve.h └── debug_vuart.h ├── internal ├── call_protected.c ├── call_protected.h ├── helper │ ├── math_helper.c │ ├── math_helper.h │ ├── memory_helper.c │ ├── memory_helper.h │ ├── symbol_helper.c │ └── symbol_helper.h ├── intercept_driver_register.c ├── intercept_driver_register.h ├── intercept_execve.c ├── intercept_execve.h ├── ioscheduler_fixer.c ├── ioscheduler_fixer.h ├── notifier_base.h ├── override │ ├── override_symbol.c │ ├── override_symbol.h │ ├── override_syscall.c │ └── override_syscall.h ├── scsi │ ├── hdparam.h │ ├── scsi_notifier.c │ ├── scsi_notifier.h │ ├── scsi_notifier_list.c │ ├── scsi_notifier_list.h │ ├── scsi_toolbox.c │ ├── scsi_toolbox.h │ └── scsiparam.h ├── stealth.c ├── stealth.h ├── stealth │ ├── sanitize_cmdline.c │ └── sanitize_cmdline.h ├── uart │ ├── uart_swapper.c │ ├── uart_swapper.h │ ├── virtual_uart.c │ ├── virtual_uart.h │ ├── vuart_internal.h │ ├── vuart_virtual_irq.c │ └── vuart_virtual_irq.h ├── virtual_pci.c └── virtual_pci.h ├── lockfiles ├── redpill_main.c ├── redpill_main.h ├── shim ├── bios │ ├── bios_hwcap_shim.c │ ├── bios_hwcap_shim.h │ ├── bios_hwmon_shim.c │ ├── bios_hwmon_shim.h │ ├── bios_shims_collection.c │ ├── bios_shims_collection.h │ ├── mfgbios_types.h │ ├── rtc_proxy.c │ └── rtc_proxy.h ├── bios_shim.c ├── bios_shim.h ├── block_fw_update_shim.c ├── block_fw_update_shim.h ├── boot_dev │ ├── boot_shim_base.c │ ├── boot_shim_base.h │ ├── fake_sata_boot_shim.c │ ├── fake_sata_boot_shim.h │ ├── native_sata_boot_shim.c │ ├── native_sata_boot_shim.h │ ├── usb_boot_shim.c │ └── usb_boot_shim.h ├── boot_device_shim.c ├── boot_device_shim.h ├── disable_exectutables.c ├── disable_exectutables.h ├── pci_shim.c ├── pci_shim.h ├── pmu_shim.c ├── pmu_shim.h ├── shim_base.h ├── storage │ ├── sata_port_shim.c │ ├── sata_port_shim.h │ ├── smart_shim.c │ └── smart_shim.h ├── uart_fixer.c └── uart_fixer.h └── tools ├── README.md ├── always_serial.sh ├── always_telnet.sh ├── inject_rp_ko.sh └── make_all.sh /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/README.md -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/common.h -------------------------------------------------------------------------------- /compat/string_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/compat/string_compat.c -------------------------------------------------------------------------------- /compat/string_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/compat/string_compat.h -------------------------------------------------------------------------------- /compat/toolkit/drivers/usb/storage/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/compat/toolkit/drivers/usb/storage/usb.h -------------------------------------------------------------------------------- /compat/toolkit/fs/proc/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/compat/toolkit/fs/proc/internal.h -------------------------------------------------------------------------------- /compat/toolkit/include/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/cmdline_delegate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/config/cmdline_delegate.c -------------------------------------------------------------------------------- /config/cmdline_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/config/cmdline_delegate.h -------------------------------------------------------------------------------- /config/cmdline_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/config/cmdline_opts.h -------------------------------------------------------------------------------- /config/platform_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/config/platform_types.h -------------------------------------------------------------------------------- /config/platforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/config/platforms.h -------------------------------------------------------------------------------- /config/runtime_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/config/runtime_config.c -------------------------------------------------------------------------------- /config/runtime_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/config/runtime_config.h -------------------------------------------------------------------------------- /config/uart_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/config/uart_defs.h -------------------------------------------------------------------------------- /config/vpci_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/config/vpci_types.h -------------------------------------------------------------------------------- /debug/debug_execve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/debug/debug_execve.c -------------------------------------------------------------------------------- /debug/debug_execve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/debug/debug_execve.h -------------------------------------------------------------------------------- /debug/debug_vuart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/debug/debug_vuart.h -------------------------------------------------------------------------------- /internal/call_protected.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/call_protected.c -------------------------------------------------------------------------------- /internal/call_protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/call_protected.h -------------------------------------------------------------------------------- /internal/helper/math_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/helper/math_helper.c -------------------------------------------------------------------------------- /internal/helper/math_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/helper/math_helper.h -------------------------------------------------------------------------------- /internal/helper/memory_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/helper/memory_helper.c -------------------------------------------------------------------------------- /internal/helper/memory_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/helper/memory_helper.h -------------------------------------------------------------------------------- /internal/helper/symbol_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/helper/symbol_helper.c -------------------------------------------------------------------------------- /internal/helper/symbol_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/helper/symbol_helper.h -------------------------------------------------------------------------------- /internal/intercept_driver_register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/intercept_driver_register.c -------------------------------------------------------------------------------- /internal/intercept_driver_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/intercept_driver_register.h -------------------------------------------------------------------------------- /internal/intercept_execve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/intercept_execve.c -------------------------------------------------------------------------------- /internal/intercept_execve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/intercept_execve.h -------------------------------------------------------------------------------- /internal/ioscheduler_fixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/ioscheduler_fixer.c -------------------------------------------------------------------------------- /internal/ioscheduler_fixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/ioscheduler_fixer.h -------------------------------------------------------------------------------- /internal/notifier_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/notifier_base.h -------------------------------------------------------------------------------- /internal/override/override_symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/override/override_symbol.c -------------------------------------------------------------------------------- /internal/override/override_symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/override/override_symbol.h -------------------------------------------------------------------------------- /internal/override/override_syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/override/override_syscall.c -------------------------------------------------------------------------------- /internal/override/override_syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/override/override_syscall.h -------------------------------------------------------------------------------- /internal/scsi/hdparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/scsi/hdparam.h -------------------------------------------------------------------------------- /internal/scsi/scsi_notifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/scsi/scsi_notifier.c -------------------------------------------------------------------------------- /internal/scsi/scsi_notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/scsi/scsi_notifier.h -------------------------------------------------------------------------------- /internal/scsi/scsi_notifier_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/scsi/scsi_notifier_list.c -------------------------------------------------------------------------------- /internal/scsi/scsi_notifier_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/scsi/scsi_notifier_list.h -------------------------------------------------------------------------------- /internal/scsi/scsi_toolbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/scsi/scsi_toolbox.c -------------------------------------------------------------------------------- /internal/scsi/scsi_toolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/scsi/scsi_toolbox.h -------------------------------------------------------------------------------- /internal/scsi/scsiparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/scsi/scsiparam.h -------------------------------------------------------------------------------- /internal/stealth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/stealth.c -------------------------------------------------------------------------------- /internal/stealth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/stealth.h -------------------------------------------------------------------------------- /internal/stealth/sanitize_cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/stealth/sanitize_cmdline.c -------------------------------------------------------------------------------- /internal/stealth/sanitize_cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/stealth/sanitize_cmdline.h -------------------------------------------------------------------------------- /internal/uart/uart_swapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/uart/uart_swapper.c -------------------------------------------------------------------------------- /internal/uart/uart_swapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/uart/uart_swapper.h -------------------------------------------------------------------------------- /internal/uart/virtual_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/uart/virtual_uart.c -------------------------------------------------------------------------------- /internal/uart/virtual_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/uart/virtual_uart.h -------------------------------------------------------------------------------- /internal/uart/vuart_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/uart/vuart_internal.h -------------------------------------------------------------------------------- /internal/uart/vuart_virtual_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/uart/vuart_virtual_irq.c -------------------------------------------------------------------------------- /internal/uart/vuart_virtual_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/uart/vuart_virtual_irq.h -------------------------------------------------------------------------------- /internal/virtual_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/virtual_pci.c -------------------------------------------------------------------------------- /internal/virtual_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/internal/virtual_pci.h -------------------------------------------------------------------------------- /lockfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/lockfiles -------------------------------------------------------------------------------- /redpill_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/redpill_main.c -------------------------------------------------------------------------------- /redpill_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/redpill_main.h -------------------------------------------------------------------------------- /shim/bios/bios_hwcap_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/bios/bios_hwcap_shim.c -------------------------------------------------------------------------------- /shim/bios/bios_hwcap_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/bios/bios_hwcap_shim.h -------------------------------------------------------------------------------- /shim/bios/bios_hwmon_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/bios/bios_hwmon_shim.c -------------------------------------------------------------------------------- /shim/bios/bios_hwmon_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/bios/bios_hwmon_shim.h -------------------------------------------------------------------------------- /shim/bios/bios_shims_collection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/bios/bios_shims_collection.c -------------------------------------------------------------------------------- /shim/bios/bios_shims_collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/bios/bios_shims_collection.h -------------------------------------------------------------------------------- /shim/bios/mfgbios_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/bios/mfgbios_types.h -------------------------------------------------------------------------------- /shim/bios/rtc_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/bios/rtc_proxy.c -------------------------------------------------------------------------------- /shim/bios/rtc_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/bios/rtc_proxy.h -------------------------------------------------------------------------------- /shim/bios_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/bios_shim.c -------------------------------------------------------------------------------- /shim/bios_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/bios_shim.h -------------------------------------------------------------------------------- /shim/block_fw_update_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/block_fw_update_shim.c -------------------------------------------------------------------------------- /shim/block_fw_update_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/block_fw_update_shim.h -------------------------------------------------------------------------------- /shim/boot_dev/boot_shim_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/boot_dev/boot_shim_base.c -------------------------------------------------------------------------------- /shim/boot_dev/boot_shim_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/boot_dev/boot_shim_base.h -------------------------------------------------------------------------------- /shim/boot_dev/fake_sata_boot_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/boot_dev/fake_sata_boot_shim.c -------------------------------------------------------------------------------- /shim/boot_dev/fake_sata_boot_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/boot_dev/fake_sata_boot_shim.h -------------------------------------------------------------------------------- /shim/boot_dev/native_sata_boot_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/boot_dev/native_sata_boot_shim.c -------------------------------------------------------------------------------- /shim/boot_dev/native_sata_boot_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/boot_dev/native_sata_boot_shim.h -------------------------------------------------------------------------------- /shim/boot_dev/usb_boot_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/boot_dev/usb_boot_shim.c -------------------------------------------------------------------------------- /shim/boot_dev/usb_boot_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/boot_dev/usb_boot_shim.h -------------------------------------------------------------------------------- /shim/boot_device_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/boot_device_shim.c -------------------------------------------------------------------------------- /shim/boot_device_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/boot_device_shim.h -------------------------------------------------------------------------------- /shim/disable_exectutables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/disable_exectutables.c -------------------------------------------------------------------------------- /shim/disable_exectutables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/disable_exectutables.h -------------------------------------------------------------------------------- /shim/pci_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/pci_shim.c -------------------------------------------------------------------------------- /shim/pci_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/pci_shim.h -------------------------------------------------------------------------------- /shim/pmu_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/pmu_shim.c -------------------------------------------------------------------------------- /shim/pmu_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/pmu_shim.h -------------------------------------------------------------------------------- /shim/shim_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/shim_base.h -------------------------------------------------------------------------------- /shim/storage/sata_port_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/storage/sata_port_shim.c -------------------------------------------------------------------------------- /shim/storage/sata_port_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/storage/sata_port_shim.h -------------------------------------------------------------------------------- /shim/storage/smart_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/storage/smart_shim.c -------------------------------------------------------------------------------- /shim/storage/smart_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/storage/smart_shim.h -------------------------------------------------------------------------------- /shim/uart_fixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/uart_fixer.c -------------------------------------------------------------------------------- /shim/uart_fixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/shim/uart_fixer.h -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/always_serial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/tools/always_serial.sh -------------------------------------------------------------------------------- /tools/always_telnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/tools/always_telnet.sh -------------------------------------------------------------------------------- /tools/inject_rp_ko.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/tools/inject_rp_ko.sh -------------------------------------------------------------------------------- /tools/make_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumkey/redpill-lkm/HEAD/tools/make_all.sh --------------------------------------------------------------------------------