This is the reincarnation of the EFI capsule patches I originally posted in 2013, plus Hock's capsule loader driver from earlier this year. Together they provide a way for users to send capsule images to firmware. EFI capsules are binary blobs passed from the OS to the firmware. The firmware then parses them and makes some decision based upon their contents. The most common use case is to bundle a flashable firmware image into a capsule that the firmware can use to upgrade the existing version in the flash. The series has been tested on the Intel Quark Galileo. I plan on queuing this up for v4.7. Kweh, Hock Leong (1): efi: A misc char interface to update EFI firmware Matt Fleming (3): efi: Move efi_status_to_err() to drivers/firmware/efi/ efi: Capsule update support x86/efi: Force EFI reboot to process pending capsules arch/x86/kernel/reboot.c | 9 + drivers/firmware/efi/Kconfig | 10 + drivers/firmware/efi/Makefile | 3 +- drivers/firmware/efi/capsule-loader.c | 343 ++++++++++++++++++++++++++++++++++ drivers/firmware/efi/capsule.c | 286 ++++++++++++++++++++++++++++ drivers/firmware/efi/efi.c | 33 ++++ drivers/firmware/efi/reboot.c | 12 +- drivers/firmware/efi/vars.c | 33 ---- include/linux/efi.h | 22 +++ 9 files changed, 716 insertions(+), 35 deletions(-) create mode 100644 drivers/firmware/efi/capsule-loader.c create mode 100644 drivers/firmware/efi/capsule.c -- 2.6.2 -- To unsubscribe from this list: send the line "unsubscribe linux-efi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html