linux-efi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2013-08-02 21:29:02 to 2013-08-19 20:19:52 UTC [more...]

UEFI Plugfest 2013 -- New Orleans
 2013-08-19 20:19 UTC  (13+ messages)

[RFC PATCH 0/4] EFI boot stub memory map fix
 2013-08-19 20:06 UTC  (6+ messages)
  ` [RFC PATCH 1/4] efi: Decouple efi_memmap_init() and do_add_efi_memmap()
` [RFC PATCH 2/4] efi: Add memory_setup function efi_memory_setup()
` [RFC PATCH 3/4] efi: Add efi_memmap_needed()
` [RFC PATCH 4/4] x86: Fix EFI boot stub for large memory maps

[PATCH 0/10] Add additional security checks when module loading is restricted
 2013-08-19 17:34 UTC  (12+ messages)
` [PATCH V2 01/10] Add secure_modules() call
  ` [PATCH V2 02/10] PCI: Lock down BAR access when module security is enabled
  ` [PATCH V2 06/10] Restrict /dev/mem and /dev/kmem when module loading is restricted
  ` [PATCH V2 10/10] Add option to automatically enforce module signatures when in Secure Boot mode
` [PATCH V2 03/10] x86: Lock down IO port access when module security is enabled
` [PATCH V2 04/10] ACPI: Limit access to custom_method
` [PATCH V2 05/10] asus-wmi: Restrict debugfs interface when module loading is restricted
` [PATCH V2 07/10] acpi: Ignore acpi_rsdp kernel parameter "
` [PATCH V2 08/10] kexec: Disable at runtime if the kernel enforces module loading restrictions
` [PATCH V2 09/10] x86: Restrict MSR access when module loading is restricted

[PATCH 01/10] Add secure_modules() call
 2013-08-19 17:15 UTC  (12+ messages)
` [PATCH 02/10] PCI: Lock down BAR access when module security is enabled
  ` [PATCH 03/10] x86: Lock down IO port "
  ` [PATCH 04/10] ACPI: Limit access to custom_method
  ` [PATCH 10/10] Add option to automatically enforce module signatures when in Secure Boot mode
` [PATCH 05/10] asus-wmi: Restrict debugfs interface when module loading is restricted
` [PATCH 06/10] Restrict /dev/mem and /dev/kmem "
` [PATCH 07/10] acpi: Ignore acpi_rsdp kernel parameter "
` [PATCH 08/10] kexec: Disable at runtime if the kernel enforces module loading restrictions
` [PATCH 09/10] x86: Restrict MSR access when module loading is restricted

Corrupted EFI region
 2013-08-18  7:33 UTC  (41+ messages)
      ` [edk2] "

[PATCH V3 RFC 00/16] EFI stub for ARM
 2013-08-17  0:16 UTC  (40+ messages)
` [PATCH 01/16] Move common EFI stub code from x86 arch code to common location
` [PATCH 02/16] Add system pointer argument to shared EFI stub related functions so they no longer use global system table pointer as they did when part of eboot.c. This code is now shared, so using a global variable as part of the interface is not that nice. Also, by avoiding any global variables in the ARM EFI stub, this allows the code to be position independent without requiring GOT fixups
` [PATCH 03/16] Rename memory allocation/free functions
` [PATCH 06/16] Enforce minimum alignment of 1 page on allocations. The efi_high_alloc() and efi_low_alloc() functions use the EFI_ALLOCATE_ADDRESS option to the EFI function allocate_pages(), which requires a minimum of page alignment, and rejects all other requests
` [PATCH 07/16] Allow efi_free() to be called with size of 0, and do nothing in that case
` [PATCH 08/16] Generalize handle_ramdisks() and rename to handle_cmdline_files()
` [PATCH 10/16] Move EFI_READ_CHUNK_SIZE define to shared location
  ` [PATCH 04/16] Add minimum address parameter to efi_low_alloc()
  ` [PATCH 05/16] rename __get_map() to efi_get_memory_map(), add parameter to optionally return mmap key. The mmap key is required to exit EFI boot services, and allows efi_get_memory_map() to be used for getting final memory map
  ` [PATCH 09/16] Renames in handle_cmdline_files() to complete generalization
  ` [PATCH 11/16] Add proper definitions for some EFI function pointers
  ` [PATCH 12/16] Fix types in EFI calls to match EFI function definitions
  ` [PATCH 14/16] Add strstr to compressed string.c for ARM
` [PATCH 13/16] resolve warnings found on ARM compile
` [PATCH 15/16] Add EFI stub for ARM
` [PATCH 16/16] Add config EFI_STUB for ARM to Kconfig

RFC: default CONFIG_EFI_STUB=y
 2013-08-15  5:15 UTC  (9+ messages)

[PATCH V2 00/17] EFI stub for ARM
 2013-08-13 14:21 UTC  (34+ messages)
` [PATCH 01/17] EFI stub documentation updates
` [PATCH 02/17] Move common EFI stub code from x86 arch code to common location
` [PATCH 03/17] Add system pointer argument to shared EFI stub related functions so they no longer use global system table pointer as they did when part of eboot.c
` [PATCH 04/17] Rename memory allocation/free functions
` [PATCH 06/17] rename __get_map() to efi_get_memory_map(), add parameter to optionally return mmap key. The mmap key is required to exit EFI boot services, and allows efi_get_memory_map() to be used for getting final memory map
` [PATCH 07/17] Enforce minimum alignment of 1 page on allocations. The efi_high_alloc() and efi_low_alloc() functions use the EFI_ALLOCATE_ADDRESS option to the EFI function allocate_pages(), which requires a minimum of page alignment, and rejects all other requests
` [PATCH 08/17] Allow efi_free() to be called with size of 0, and do nothing in that case
` [PATCH 11/17] Move EFI_READ_CHUNK_SIZE define to shared location
  ` [PATCH 05/17] Add minimum address parameter to efi_low_alloc()
  ` [PATCH 09/17] Generalize handle_ramdisks() and rename to handle_cmdline_files()
  ` [PATCH 10/17] Renames in handle_cmdline_files() to complete generalization
  ` [PATCH 12/17] Add proper definitions for some EFI function pointers
  ` [PATCH 16/17] Add EFI stub for ARM
` [PATCH 13/17] Fix types in EFI calls to match EFI function definitions
` [PATCH 14/17] resolve warnings found on ARM compile
` [PATCH 15/17] Add strstr to compressed string.c for ARM
` [PATCH 17/17] Add config EFI_STUB for ARM to Kconfig

[PATCH v3 0/5] Make commonly useful UEFI functions common
 2013-08-07 18:54 UTC  (6+ messages)
` [PATCH v3 1/5] ia64: add early_memremap() alias for early_ioremap()
` [PATCH v3 2/5] efi: provide a generic efi_config_init()
` [PATCH v3 3/5] efi: x86: use common code for (U)EFI configuration scanning
` [PATCH v3 4/5] efi: ia64: "
` [PATCH v3 5/5] efi: x86: make efi_lookup_mapped_addr() a common function

[PATCH v2 0/5] Make commonly useful UEFI functions common
 2013-08-07 11:54 UTC  (14+ messages)
` [PATCH v2 1/5] ia64: add early_memremap() alias for early_ioremap()
` [PATCH v2 2/5] efi: provide a generic efi_config_init()
` [PATCH v2 3/5] efi: x86: use common code for (U)EFI configuration scanning
` [PATCH v2 4/5] efi: ia64: "
` [PATCH v2 5/5] efi: x86: make efi_lookup_mapped_addr() a common function

[PATCH 0/7] RFC: EFI stub for ARM
 2013-08-06 13:53 UTC  (20+ messages)
` [PATCH 1/7] EFI stub documentation updates
` [PATCH 2/7] Move common EFI stub code from x86 arch code to common location
` [PATCH 4/7] Add proper definitions for some EFI function pointers
` [PATCH 5/7] Add strstr to compressed string.c for ARM
  ` [PATCH 3/7] Change EFI helper APIs to be more flexible
  ` [PATCH 6/7] Add EFI stub for ARM
` [PATCH 7/7] Add config EFI_STUB "

[GIT PULL] urgent fix
 2013-08-05 13:05 UTC  (4+ messages)

EFI stub boots only with setup_efi_pc() commented
 2013-08-02 23:06 UTC 


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).