├── README ├── aos ├── Config.mk ├── Makefile ├── README ├── Rules.mk ├── arch │ └── arm │ │ ├── Makefile │ │ ├── Rules.mk │ │ ├── aos.lds │ │ ├── c_entry.c │ │ ├── div64.S │ │ └── entry.S ├── include │ ├── Makefile │ ├── asm-arm │ │ ├── div64.h │ │ ├── linkage.h │ │ ├── stdarg.h │ │ ├── system.h │ │ └── types.h │ ├── bug.h │ ├── defines.h │ ├── div64.h │ ├── lib │ │ ├── ctype.h │ │ ├── string.h │ │ └── vsprintf.h │ ├── linkage.h │ ├── plat-tegra │ │ └── plat-tegra │ ├── stdarg.h │ ├── system.h │ └── types.h ├── lib │ ├── Makefile │ ├── ctype.c │ ├── string.c │ └── vsprintf.c └── plat │ └── tegra │ └── Makefile ├── cv ├── resume.pdf └── resume.tex ├── gdb └── 0001-GDB-Initial-prototype-of-symbol-file-scope-module-sc.patch ├── git └── 0001-Git-p4-Add-git-p4-change-command.patch ├── linux ├── 2.6.36 │ ├── 0001-ARMv7-Allow-running-with-L1-cache-disabled.patch │ ├── 0001-BlueZ-HCI-Be-more-resilient-to-HCI-protocol-problems.patch │ ├── android-tegra │ │ ├── 0001-Tegra-Lockdepify-clock.c.patch │ │ └── 0002-Tegra-Fix-lockdep-warning-in-cpu-idle.c.patch │ └── android │ │ └── 0001-FIQ-debugger-Add-KDB-KGDB-support.patch ├── 3.0 │ └── mmc │ │ ├── 0001-MMC-Safe-remove.patch │ │ └── cmd23 │ │ ├── 0001-MMC-Add-remove-quirks-conditional-support.patch │ │ ├── 0002-MMC-Use-CMD23-for-multiblock-transfers-when-we-can.patch │ │ ├── 0003-MMC-Implement-MMC_CAP_CMD23-for-SDHCI.patch │ │ ├── 0004-MMC-Block-CMD23-support-for-UHS104-SDXC-cards.patch │ │ ├── 0005-MMC-SDHCI-AutoCMD23-support.patch │ │ └── 0006-MMC-SDHCI-Auto-CMD23-fixes.patch └── 3.2 │ ├── 0001-VMW_PVSCSI-Allow-TCQ-depth-change-through-sysfs.patch │ ├── 0001-dev-mem-Fix-wrong-error-on-accessing-beyond-valid-me.patch │ ├── 0002-include-log2.h-Fix-rounddown_pow_of_two-1.patch │ ├── block │ ├── dm │ │ ├── 0001-DM-Minor-fix-to-dm-snap-metadata-backend-registratio.patch │ │ └── 0001-DM-SNAP-Filesystem-based-thin-provisioning-suppport.patch │ ├── loop │ │ ├── 0001-Loop-Loop-parser-support.patch │ │ ├── 0002-Loop-Useful-I-O-routines-shared-by-parsers.patch │ │ ├── 0003-Loop-VHD-loop-parser-implementation.patch │ │ ├── 0004-Loop-QCOW-loop-parser-implementation.patch │ │ ├── 0005-Loop-VMDK-parser-implementation.patch │ │ ├── README │ │ └── attic │ │ │ ├── 0001-Loop-Allow-non-linear-mapping-between-loop-and-backi.patch │ │ │ ├── 0002-Loop-Add-disk-image-parser-support-for-lo.patch │ │ │ ├── 0003-Loop-Allow-file-I-O-to-kernel-buffers.patch │ │ │ ├── 0004-Loop-Break-out-backing-file-specifics-away-from-loop.patch │ │ │ ├── 0005-Loop-Cleanup-parser-matching-logic.patch │ │ │ ├── 0006-Loop-Propagate-lo_file-into-lo_send-lo_receive-path.patch │ │ │ ├── 0007-Loop-Expose-transfer-parameter-into-send-receive-fun.patch │ │ │ ├── 0008-Loop-Allow-internal-untransformed-direct-file-I-O.patch │ │ │ ├── 0009-Loop-Make-parser-operate-on-lo_file-instead-of-file.patch │ │ │ ├── 0010-Loop-Implement-parser-I-O-accessor.patch │ │ │ ├── 0011-Loop-Cleanup-loop-size-computation.patch │ │ │ ├── 0012-Loop-Allow-parser-to-notify-loop-if-losetup-should-f.patch │ │ │ ├── 0013-vhdloop-Rudimentary-fixed-VHD-support.patch │ │ │ ├── 0014-Loop-Push-loop-I-O-handling-into-parser.patch │ │ │ ├── 0015-VHDLoop-Dynamic-VHD-groundwork.patch │ │ │ ├── 0016-Loop-VHDLoop-Cleanup-loop-and-implement-dynamic-VHD-.patch │ │ │ ├── 0017-VHDLoop-Write-support-for-dynamic-VHD.patch │ │ │ └── 0018-VHDLoop-Tentative.patch │ └── md │ │ ├── 0001-MD-Allow-restarting-an-interrupted-incremental-recov.patch │ │ └── raid1_resync_graveyard │ │ ├── 0001-MD-Bitmap-version-cleanup.patch │ │ ├── 0001-MD-RAID1-Optimize-resync-by-avoiding-discarded-block.patch │ │ ├── 0001-MDADM-Add-support-for-v5-bitmap-with-inuse-bits.patch │ │ ├── 0002-MD-RAID1-Optimize-synchronization-to-avoid-blocks-ma.patch │ │ └── README │ ├── kgdb │ ├── 0001-KDB-Make-LINES-an-internal-variable.patch │ ├── 0002-KDB-Overide-LINES-for-custom-commands.patch │ ├── 0003-NETPOLL-Extend-rx_hook-support.patch │ ├── 0004-NETKGDB-Ethernet-UDP-IP-KDB-transport.patch │ ├── 0005-KGDB-Allow-registering-multiple-I-O-ops.patch │ ├── 0006-KDB-Fix-usability-issues-relating-to-the-enter-key.patch │ └── 0007-x86-NMI-Be-smarter-about-invoking-panic-inside-NMI-h.patch │ ├── ntos │ ├── 0001-ED-Extend-exec_domains-to-build-non-POSIX-subsystems.patch │ └── 0002-NTOS-WIP-NT-subsystem-for-Linux.patch │ ├── olpc │ └── fiq │ │ ├── 0001-MMP2-Enable-FIQ-support.patch │ │ ├── 0002-ARM-Add-Google-FIQ-glue-code.patch │ │ ├── 0003-MMP2-FIQ-debugger-platform-device.patch │ │ ├── 0004-MMP2-FIQ-debugger-support-for-the-XO-1.75.patch │ │ ├── 0005-Kernel-Rename-kdb_syslog_data-and-separate-from-KDB-.patch │ │ ├── 0006-FDBG-Add-FIQ-debugger.patch │ │ ├── 0007-FDBG-Add-kdb-kgdb-support.patch │ │ └── README │ └── pe32+ │ ├── 0001-BINFMT-PE32-PE32-support.patch │ └── hello.asm ├── py └── pipemail │ ├── markup.py │ └── pipemail.py ├── qemu ├── 0001-qemu-fix-page_check_range.patch ├── 0002-qemu-handle-tb_gen_code-getting-called-for-unmapped-.patch ├── 0003-x86-implement-EXCP_TB_EFAULT.patch ├── esxi-arm │ ├── 0001-Work-arounds-for-running-ESXi-Arm-at-EL2-without-TF-.patch │ ├── get_latest_uefi.sh │ └── runme └── tests │ ├── sigtest.c │ └── sigtest_mprotect.c ├── uefi ├── 0001-ArmPkg-DebugPeCoffExtraActionLib.patch ├── DebugPkg │ ├── GdbSyms │ │ ├── GdbSyms.c │ │ └── GdbSyms.inf │ └── Scripts │ │ └── gdb_uefi.py └── GSoC2012 │ ├── 0001-MPS-Test-program-for-the-protocol-implementation.patch │ ├── 0002-UefiCpuPkg-MP-Support-WIP.patch │ ├── 0003-OVMF-Enable-building-MPTest.patch │ ├── 0004-Compiler-Fixes-to-get-UEFI-building-for-me.patch │ ├── 0005-MP-support-Getting-there.patch │ └── README └── xen ├── arm ├── 4.2-arm.diff └── README └── ovmf-support ├── README ├── ovmf-boot ├── ovmf-edk2.patch ├── ovmf-firmware-unstable-4.2.patch └── ovmf-xend-unstable-4.2.patch /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/README -------------------------------------------------------------------------------- /aos/Config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/Config.mk -------------------------------------------------------------------------------- /aos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/Makefile -------------------------------------------------------------------------------- /aos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/README -------------------------------------------------------------------------------- /aos/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/Rules.mk -------------------------------------------------------------------------------- /aos/arch/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/arch/arm/Makefile -------------------------------------------------------------------------------- /aos/arch/arm/Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/arch/arm/Rules.mk -------------------------------------------------------------------------------- /aos/arch/arm/aos.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/arch/arm/aos.lds -------------------------------------------------------------------------------- /aos/arch/arm/c_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/arch/arm/c_entry.c -------------------------------------------------------------------------------- /aos/arch/arm/div64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/arch/arm/div64.S -------------------------------------------------------------------------------- /aos/arch/arm/entry.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/arch/arm/entry.S -------------------------------------------------------------------------------- /aos/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/Makefile -------------------------------------------------------------------------------- /aos/include/asm-arm/div64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/asm-arm/div64.h -------------------------------------------------------------------------------- /aos/include/asm-arm/linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/asm-arm/linkage.h -------------------------------------------------------------------------------- /aos/include/asm-arm/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/asm-arm/stdarg.h -------------------------------------------------------------------------------- /aos/include/asm-arm/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/asm-arm/system.h -------------------------------------------------------------------------------- /aos/include/asm-arm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/asm-arm/types.h -------------------------------------------------------------------------------- /aos/include/bug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/bug.h -------------------------------------------------------------------------------- /aos/include/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/defines.h -------------------------------------------------------------------------------- /aos/include/div64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/div64.h -------------------------------------------------------------------------------- /aos/include/lib/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/lib/ctype.h -------------------------------------------------------------------------------- /aos/include/lib/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/lib/string.h -------------------------------------------------------------------------------- /aos/include/lib/vsprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/lib/vsprintf.h -------------------------------------------------------------------------------- /aos/include/linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/linkage.h -------------------------------------------------------------------------------- /aos/include/plat-tegra/plat-tegra: -------------------------------------------------------------------------------- 1 | plat-tegra -------------------------------------------------------------------------------- /aos/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/stdarg.h -------------------------------------------------------------------------------- /aos/include/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/system.h -------------------------------------------------------------------------------- /aos/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/include/types.h -------------------------------------------------------------------------------- /aos/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/lib/Makefile -------------------------------------------------------------------------------- /aos/lib/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/lib/ctype.c -------------------------------------------------------------------------------- /aos/lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/lib/string.c -------------------------------------------------------------------------------- /aos/lib/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/aos/lib/vsprintf.c -------------------------------------------------------------------------------- /aos/plat/tegra/Makefile: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cv/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/cv/resume.pdf -------------------------------------------------------------------------------- /cv/resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/cv/resume.tex -------------------------------------------------------------------------------- /gdb/0001-GDB-Initial-prototype-of-symbol-file-scope-module-sc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/gdb/0001-GDB-Initial-prototype-of-symbol-file-scope-module-sc.patch -------------------------------------------------------------------------------- /git/0001-Git-p4-Add-git-p4-change-command.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/git/0001-Git-p4-Add-git-p4-change-command.patch -------------------------------------------------------------------------------- /linux/2.6.36/0001-ARMv7-Allow-running-with-L1-cache-disabled.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/2.6.36/0001-ARMv7-Allow-running-with-L1-cache-disabled.patch -------------------------------------------------------------------------------- /linux/2.6.36/0001-BlueZ-HCI-Be-more-resilient-to-HCI-protocol-problems.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/2.6.36/0001-BlueZ-HCI-Be-more-resilient-to-HCI-protocol-problems.patch -------------------------------------------------------------------------------- /linux/2.6.36/android-tegra/0001-Tegra-Lockdepify-clock.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/2.6.36/android-tegra/0001-Tegra-Lockdepify-clock.c.patch -------------------------------------------------------------------------------- /linux/2.6.36/android-tegra/0002-Tegra-Fix-lockdep-warning-in-cpu-idle.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/2.6.36/android-tegra/0002-Tegra-Fix-lockdep-warning-in-cpu-idle.c.patch -------------------------------------------------------------------------------- /linux/2.6.36/android/0001-FIQ-debugger-Add-KDB-KGDB-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/2.6.36/android/0001-FIQ-debugger-Add-KDB-KGDB-support.patch -------------------------------------------------------------------------------- /linux/3.0/mmc/0001-MMC-Safe-remove.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.0/mmc/0001-MMC-Safe-remove.patch -------------------------------------------------------------------------------- /linux/3.0/mmc/cmd23/0001-MMC-Add-remove-quirks-conditional-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.0/mmc/cmd23/0001-MMC-Add-remove-quirks-conditional-support.patch -------------------------------------------------------------------------------- /linux/3.0/mmc/cmd23/0002-MMC-Use-CMD23-for-multiblock-transfers-when-we-can.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.0/mmc/cmd23/0002-MMC-Use-CMD23-for-multiblock-transfers-when-we-can.patch -------------------------------------------------------------------------------- /linux/3.0/mmc/cmd23/0003-MMC-Implement-MMC_CAP_CMD23-for-SDHCI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.0/mmc/cmd23/0003-MMC-Implement-MMC_CAP_CMD23-for-SDHCI.patch -------------------------------------------------------------------------------- /linux/3.0/mmc/cmd23/0004-MMC-Block-CMD23-support-for-UHS104-SDXC-cards.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.0/mmc/cmd23/0004-MMC-Block-CMD23-support-for-UHS104-SDXC-cards.patch -------------------------------------------------------------------------------- /linux/3.0/mmc/cmd23/0005-MMC-SDHCI-AutoCMD23-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.0/mmc/cmd23/0005-MMC-SDHCI-AutoCMD23-support.patch -------------------------------------------------------------------------------- /linux/3.0/mmc/cmd23/0006-MMC-SDHCI-Auto-CMD23-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.0/mmc/cmd23/0006-MMC-SDHCI-Auto-CMD23-fixes.patch -------------------------------------------------------------------------------- /linux/3.2/0001-VMW_PVSCSI-Allow-TCQ-depth-change-through-sysfs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/0001-VMW_PVSCSI-Allow-TCQ-depth-change-through-sysfs.patch -------------------------------------------------------------------------------- /linux/3.2/0001-dev-mem-Fix-wrong-error-on-accessing-beyond-valid-me.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/0001-dev-mem-Fix-wrong-error-on-accessing-beyond-valid-me.patch -------------------------------------------------------------------------------- /linux/3.2/0002-include-log2.h-Fix-rounddown_pow_of_two-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/0002-include-log2.h-Fix-rounddown_pow_of_two-1.patch -------------------------------------------------------------------------------- /linux/3.2/block/dm/0001-DM-Minor-fix-to-dm-snap-metadata-backend-registratio.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/dm/0001-DM-Minor-fix-to-dm-snap-metadata-backend-registratio.patch -------------------------------------------------------------------------------- /linux/3.2/block/dm/0001-DM-SNAP-Filesystem-based-thin-provisioning-suppport.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/dm/0001-DM-SNAP-Filesystem-based-thin-provisioning-suppport.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/0001-Loop-Loop-parser-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/0001-Loop-Loop-parser-support.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/0002-Loop-Useful-I-O-routines-shared-by-parsers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/0002-Loop-Useful-I-O-routines-shared-by-parsers.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/0003-Loop-VHD-loop-parser-implementation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/0003-Loop-VHD-loop-parser-implementation.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/0004-Loop-QCOW-loop-parser-implementation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/0004-Loop-QCOW-loop-parser-implementation.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/0005-Loop-VMDK-parser-implementation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/0005-Loop-VMDK-parser-implementation.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/README -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0001-Loop-Allow-non-linear-mapping-between-loop-and-backi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0001-Loop-Allow-non-linear-mapping-between-loop-and-backi.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0002-Loop-Add-disk-image-parser-support-for-lo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0002-Loop-Add-disk-image-parser-support-for-lo.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0003-Loop-Allow-file-I-O-to-kernel-buffers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0003-Loop-Allow-file-I-O-to-kernel-buffers.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0004-Loop-Break-out-backing-file-specifics-away-from-loop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0004-Loop-Break-out-backing-file-specifics-away-from-loop.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0005-Loop-Cleanup-parser-matching-logic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0005-Loop-Cleanup-parser-matching-logic.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0006-Loop-Propagate-lo_file-into-lo_send-lo_receive-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0006-Loop-Propagate-lo_file-into-lo_send-lo_receive-path.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0007-Loop-Expose-transfer-parameter-into-send-receive-fun.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0007-Loop-Expose-transfer-parameter-into-send-receive-fun.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0008-Loop-Allow-internal-untransformed-direct-file-I-O.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0008-Loop-Allow-internal-untransformed-direct-file-I-O.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0009-Loop-Make-parser-operate-on-lo_file-instead-of-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0009-Loop-Make-parser-operate-on-lo_file-instead-of-file.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0010-Loop-Implement-parser-I-O-accessor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0010-Loop-Implement-parser-I-O-accessor.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0011-Loop-Cleanup-loop-size-computation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0011-Loop-Cleanup-loop-size-computation.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0012-Loop-Allow-parser-to-notify-loop-if-losetup-should-f.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0012-Loop-Allow-parser-to-notify-loop-if-losetup-should-f.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0013-vhdloop-Rudimentary-fixed-VHD-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0013-vhdloop-Rudimentary-fixed-VHD-support.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0014-Loop-Push-loop-I-O-handling-into-parser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0014-Loop-Push-loop-I-O-handling-into-parser.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0015-VHDLoop-Dynamic-VHD-groundwork.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0015-VHDLoop-Dynamic-VHD-groundwork.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0016-Loop-VHDLoop-Cleanup-loop-and-implement-dynamic-VHD-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0016-Loop-VHDLoop-Cleanup-loop-and-implement-dynamic-VHD-.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0017-VHDLoop-Write-support-for-dynamic-VHD.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0017-VHDLoop-Write-support-for-dynamic-VHD.patch -------------------------------------------------------------------------------- /linux/3.2/block/loop/attic/0018-VHDLoop-Tentative.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/loop/attic/0018-VHDLoop-Tentative.patch -------------------------------------------------------------------------------- /linux/3.2/block/md/0001-MD-Allow-restarting-an-interrupted-incremental-recov.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/md/0001-MD-Allow-restarting-an-interrupted-incremental-recov.patch -------------------------------------------------------------------------------- /linux/3.2/block/md/raid1_resync_graveyard/0001-MD-Bitmap-version-cleanup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/md/raid1_resync_graveyard/0001-MD-Bitmap-version-cleanup.patch -------------------------------------------------------------------------------- /linux/3.2/block/md/raid1_resync_graveyard/0001-MD-RAID1-Optimize-resync-by-avoiding-discarded-block.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/md/raid1_resync_graveyard/0001-MD-RAID1-Optimize-resync-by-avoiding-discarded-block.patch -------------------------------------------------------------------------------- /linux/3.2/block/md/raid1_resync_graveyard/0001-MDADM-Add-support-for-v5-bitmap-with-inuse-bits.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/md/raid1_resync_graveyard/0001-MDADM-Add-support-for-v5-bitmap-with-inuse-bits.patch -------------------------------------------------------------------------------- /linux/3.2/block/md/raid1_resync_graveyard/0002-MD-RAID1-Optimize-synchronization-to-avoid-blocks-ma.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/md/raid1_resync_graveyard/0002-MD-RAID1-Optimize-synchronization-to-avoid-blocks-ma.patch -------------------------------------------------------------------------------- /linux/3.2/block/md/raid1_resync_graveyard/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/block/md/raid1_resync_graveyard/README -------------------------------------------------------------------------------- /linux/3.2/kgdb/0001-KDB-Make-LINES-an-internal-variable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/kgdb/0001-KDB-Make-LINES-an-internal-variable.patch -------------------------------------------------------------------------------- /linux/3.2/kgdb/0002-KDB-Overide-LINES-for-custom-commands.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/kgdb/0002-KDB-Overide-LINES-for-custom-commands.patch -------------------------------------------------------------------------------- /linux/3.2/kgdb/0003-NETPOLL-Extend-rx_hook-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/kgdb/0003-NETPOLL-Extend-rx_hook-support.patch -------------------------------------------------------------------------------- /linux/3.2/kgdb/0004-NETKGDB-Ethernet-UDP-IP-KDB-transport.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/kgdb/0004-NETKGDB-Ethernet-UDP-IP-KDB-transport.patch -------------------------------------------------------------------------------- /linux/3.2/kgdb/0005-KGDB-Allow-registering-multiple-I-O-ops.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/kgdb/0005-KGDB-Allow-registering-multiple-I-O-ops.patch -------------------------------------------------------------------------------- /linux/3.2/kgdb/0006-KDB-Fix-usability-issues-relating-to-the-enter-key.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/kgdb/0006-KDB-Fix-usability-issues-relating-to-the-enter-key.patch -------------------------------------------------------------------------------- /linux/3.2/kgdb/0007-x86-NMI-Be-smarter-about-invoking-panic-inside-NMI-h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/kgdb/0007-x86-NMI-Be-smarter-about-invoking-panic-inside-NMI-h.patch -------------------------------------------------------------------------------- /linux/3.2/ntos/0001-ED-Extend-exec_domains-to-build-non-POSIX-subsystems.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/ntos/0001-ED-Extend-exec_domains-to-build-non-POSIX-subsystems.patch -------------------------------------------------------------------------------- /linux/3.2/ntos/0002-NTOS-WIP-NT-subsystem-for-Linux.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/ntos/0002-NTOS-WIP-NT-subsystem-for-Linux.patch -------------------------------------------------------------------------------- /linux/3.2/olpc/fiq/0001-MMP2-Enable-FIQ-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/olpc/fiq/0001-MMP2-Enable-FIQ-support.patch -------------------------------------------------------------------------------- /linux/3.2/olpc/fiq/0002-ARM-Add-Google-FIQ-glue-code.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/olpc/fiq/0002-ARM-Add-Google-FIQ-glue-code.patch -------------------------------------------------------------------------------- /linux/3.2/olpc/fiq/0003-MMP2-FIQ-debugger-platform-device.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/olpc/fiq/0003-MMP2-FIQ-debugger-platform-device.patch -------------------------------------------------------------------------------- /linux/3.2/olpc/fiq/0004-MMP2-FIQ-debugger-support-for-the-XO-1.75.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/olpc/fiq/0004-MMP2-FIQ-debugger-support-for-the-XO-1.75.patch -------------------------------------------------------------------------------- /linux/3.2/olpc/fiq/0005-Kernel-Rename-kdb_syslog_data-and-separate-from-KDB-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/olpc/fiq/0005-Kernel-Rename-kdb_syslog_data-and-separate-from-KDB-.patch -------------------------------------------------------------------------------- /linux/3.2/olpc/fiq/0006-FDBG-Add-FIQ-debugger.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/olpc/fiq/0006-FDBG-Add-FIQ-debugger.patch -------------------------------------------------------------------------------- /linux/3.2/olpc/fiq/0007-FDBG-Add-kdb-kgdb-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/olpc/fiq/0007-FDBG-Add-kdb-kgdb-support.patch -------------------------------------------------------------------------------- /linux/3.2/olpc/fiq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/olpc/fiq/README -------------------------------------------------------------------------------- /linux/3.2/pe32+/0001-BINFMT-PE32-PE32-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/pe32+/0001-BINFMT-PE32-PE32-support.patch -------------------------------------------------------------------------------- /linux/3.2/pe32+/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/linux/3.2/pe32+/hello.asm -------------------------------------------------------------------------------- /py/pipemail/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/py/pipemail/markup.py -------------------------------------------------------------------------------- /py/pipemail/pipemail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/py/pipemail/pipemail.py -------------------------------------------------------------------------------- /qemu/0001-qemu-fix-page_check_range.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/qemu/0001-qemu-fix-page_check_range.patch -------------------------------------------------------------------------------- /qemu/0002-qemu-handle-tb_gen_code-getting-called-for-unmapped-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/qemu/0002-qemu-handle-tb_gen_code-getting-called-for-unmapped-.patch -------------------------------------------------------------------------------- /qemu/0003-x86-implement-EXCP_TB_EFAULT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/qemu/0003-x86-implement-EXCP_TB_EFAULT.patch -------------------------------------------------------------------------------- /qemu/esxi-arm/0001-Work-arounds-for-running-ESXi-Arm-at-EL2-without-TF-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/qemu/esxi-arm/0001-Work-arounds-for-running-ESXi-Arm-at-EL2-without-TF-.patch -------------------------------------------------------------------------------- /qemu/esxi-arm/get_latest_uefi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/qemu/esxi-arm/get_latest_uefi.sh -------------------------------------------------------------------------------- /qemu/esxi-arm/runme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/qemu/esxi-arm/runme -------------------------------------------------------------------------------- /qemu/tests/sigtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/qemu/tests/sigtest.c -------------------------------------------------------------------------------- /qemu/tests/sigtest_mprotect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/qemu/tests/sigtest_mprotect.c -------------------------------------------------------------------------------- /uefi/0001-ArmPkg-DebugPeCoffExtraActionLib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/uefi/0001-ArmPkg-DebugPeCoffExtraActionLib.patch -------------------------------------------------------------------------------- /uefi/DebugPkg/GdbSyms/GdbSyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/uefi/DebugPkg/GdbSyms/GdbSyms.c -------------------------------------------------------------------------------- /uefi/DebugPkg/GdbSyms/GdbSyms.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/uefi/DebugPkg/GdbSyms/GdbSyms.inf -------------------------------------------------------------------------------- /uefi/DebugPkg/Scripts/gdb_uefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/uefi/DebugPkg/Scripts/gdb_uefi.py -------------------------------------------------------------------------------- /uefi/GSoC2012/0001-MPS-Test-program-for-the-protocol-implementation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/uefi/GSoC2012/0001-MPS-Test-program-for-the-protocol-implementation.patch -------------------------------------------------------------------------------- /uefi/GSoC2012/0002-UefiCpuPkg-MP-Support-WIP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/uefi/GSoC2012/0002-UefiCpuPkg-MP-Support-WIP.patch -------------------------------------------------------------------------------- /uefi/GSoC2012/0003-OVMF-Enable-building-MPTest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/uefi/GSoC2012/0003-OVMF-Enable-building-MPTest.patch -------------------------------------------------------------------------------- /uefi/GSoC2012/0004-Compiler-Fixes-to-get-UEFI-building-for-me.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/uefi/GSoC2012/0004-Compiler-Fixes-to-get-UEFI-building-for-me.patch -------------------------------------------------------------------------------- /uefi/GSoC2012/0005-MP-support-Getting-there.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/uefi/GSoC2012/0005-MP-support-Getting-there.patch -------------------------------------------------------------------------------- /uefi/GSoC2012/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/uefi/GSoC2012/README -------------------------------------------------------------------------------- /xen/arm/4.2-arm.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/xen/arm/4.2-arm.diff -------------------------------------------------------------------------------- /xen/arm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/xen/arm/README -------------------------------------------------------------------------------- /xen/ovmf-support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/xen/ovmf-support/README -------------------------------------------------------------------------------- /xen/ovmf-support/ovmf-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/xen/ovmf-support/ovmf-boot -------------------------------------------------------------------------------- /xen/ovmf-support/ovmf-edk2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/xen/ovmf-support/ovmf-edk2.patch -------------------------------------------------------------------------------- /xen/ovmf-support/ovmf-firmware-unstable-4.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/xen/ovmf-support/ovmf-firmware-unstable-4.2.patch -------------------------------------------------------------------------------- /xen/ovmf-support/ovmf-xend-unstable-4.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/andreiw-wip/HEAD/xen/ovmf-support/ovmf-xend-unstable-4.2.patch --------------------------------------------------------------------------------