1. 03 6月, 2018 1 次提交
  2. 01 6月, 2018 1 次提交
  3. 29 5月, 2018 1 次提交
  4. 27 5月, 2018 1 次提交
  5. 11 5月, 2018 4 次提交
  6. 02 5月, 2018 1 次提交
  7. 18 4月, 2018 1 次提交
  8. 11 4月, 2018 1 次提交
  9. 09 4月, 2018 2 次提交
  10. 04 4月, 2018 1 次提交
  11. 29 3月, 2018 1 次提交
  12. 23 3月, 2018 1 次提交
  13. 20 3月, 2018 4 次提交
  14. 17 3月, 2018 6 次提交
  15. 16 3月, 2018 1 次提交
  16. 10 3月, 2018 1 次提交
  17. 05 3月, 2018 1 次提交
  18. 24 2月, 2018 1 次提交
  19. 10 2月, 2018 2 次提交
  20. 05 2月, 2018 1 次提交
  21. 29 1月, 2018 5 次提交
  22. 23 1月, 2018 2 次提交
    • H
      tools: provide a tool to convert a binary file to an include · ac020196
      Heinrich Schuchardt 提交于
      For testing EFI disk management we need an in-memory image of
      a disk.
      
      The tool file2include converts a file to a C include. The file
      is separated into strings of 8 bytes. Only the non-zero strings
      are written to the include. The output format has been designed
      to maintain readability.
      
       #define EFI_ST_DISK_IMG { 0x00010000, { \
        {0x000001b8, "\x94\x37\x69\xfc\x00\x00\x00\x00"}, /* .7i..... */ \
        {0x000001c0, "\x02\x00\x83\x02\x02\x00\x01\x00"}, /* ........ */ \
        {0x000001c8, "\x00\x00\x7f\x00\x00\x00\x00\x00"}, /* ........ */ \
        {0x000001f8, "\x00\x00\x00\x00\x00\x00\x55\xaa"}, /* ......U. */ \
       ...
        {0x00006000, "\x48\x65\x6c\x6c\x6f\x20\x77\x6f"}, /* Hello wo */ \
        {0x00006008, "\x72\x6c\x64\x21\x0a\x00\x00\x00"}, /* rld!.... */ \
        {0, NULL} } }
      
      As the disk image needed for testing contains mostly zeroes a high
      compression ratio can be attained.
      Signed-off-by: NHeinrich Schuchardt <xypron.glpk@gmx.de>
      Signed-off-by: NAlexander Graf <agraf@suse.de>
      ac020196
    • H
      MAINTAINERS: correct entry for lib/efi*/ · bc0bd77e
      Heinrich Schuchardt 提交于
      lib/efi* indicates files efi* in directory lib.
      lib/efi*/ indicates all files in directories lib/efi*.
      
      Fixes: 623b3a57 efi_selftest: provide an EFI selftest application
      Signed-off-by: NHeinrich Schuchardt <xypron.glpk@gmx.de>
      Signed-off-by: NAlexander Graf <agraf@suse.de>
      bc0bd77e