1. 06 Jan, 2016 1 commit
  2. 31 Dec, 2015 4 commits
  3. 29 Dec, 2015 2 commits
  4. 07 Nov, 2015 1 commit
    • Andrei Borzenkov's avatar
      mkimage: zero fill alignment space · 1018e91d
      Andrei Borzenkov authored
      This did not cause real problem but is good for reproducible builds. I hit
      it with recent bootinfoscript that displays embedded config; I was puzzled
      by random garbage at the end.
      
      Prezero memory buffer used to assemble core.img. This makes individual
      memset redundant. Also ensure buffer is filled with zeroes in several other
      places.
      
      Also remove redundant zeroing code where we fill in the whole memory block
      anyway.
      1018e91d
  5. 07 Oct, 2015 1 commit
  6. 27 Jul, 2015 1 commit
  7. 19 Jun, 2015 2 commits
  8. 13 May, 2015 1 commit
  9. 07 May, 2015 3 commits
  10. 29 Apr, 2015 1 commit
  11. 24 Apr, 2015 1 commit
  12. 29 Mar, 2015 1 commit
  13. 27 Mar, 2015 1 commit
  14. 20 Mar, 2015 1 commit
  15. 04 Mar, 2015 1 commit
    • Vladimir Serbinenko's avatar
      Fix canonicalize_file_name clash. · 27d1a67f
      Vladimir Serbinenko authored
      canonicalize_file_name clashed with gnulib function. Additionally
      it was declared in 2 places: emu/misc.h and util/misc.h. Added
      grub_ prefix and removed second declaration.
      27d1a67f
  16. 28 Feb, 2015 2 commits
  17. 13 Feb, 2015 1 commit
    • Jiri Slaby's avatar
      util: mkimage, fix gcc5 build failure · 32cd33bd
      Jiri Slaby authored
      gcc5 reports:
      ../util/mkimage.c: In function 'grub_install_get_image_target':
      ../util/mkimage.c:954:5: error: loop exit may only be reached after undefined behavior [-Werror=aggressive-loop-optimizations]
           && j < ARRAY_SIZE (image_targets[i].names); j++)
           ^
      ../util/mkimage.c:953:39: note: possible undefined statement is here
            for (j = 0; image_targets[i].names[j]
                                              ^
      
      Well, let's move the index 'j' test before accesing the array to:
      1) make the loop obvious
      2) make gcc happy
      Signed-off-by: 's avatarJiri Slaby <jslaby@suse.cz>
      32cd33bd
  18. 31 Jan, 2015 3 commits
  19. 28 Jan, 2015 1 commit
  20. 27 Jan, 2015 8 commits
  21. 26 Jan, 2015 3 commits