Skip to content
Snippets Groups Projects
  1. Apr 28, 2020
  2. Mar 29, 2020
  3. Jan 30, 2020
  4. Jan 18, 2020
  5. Jan 13, 2020
  6. Jan 11, 2020
  7. Jan 07, 2020
    • Ben Hutchings's avatar
      mkinitramfs: Remove armhf dynamic linker hack · a9e5169f
      Ben Hutchings authored
      
      This reverts commit da64d1a1, which
      was a workaround for the inconsistent choices of interpreter path in
      the early days of armhf and the limitations of copy_file at the time.
      Now that copy_file automatically replicates symlinks and their
      targets, we don't need to do anything special about the dynamic
      linker.
      
      An initramfs built for Debian 10 on armhf currently contains:
      
      /lib/arm-linux-gnueabihf/ld-2.28.so           regular file
      /lib/arm-linux-gnueabihf/ld-linux-armhf.so.3  link to ld-2.28.so
      /lib/arm-linux-gnueabihf/ld-linux.so.3        link to /lib/ld-linux-armhf.so.3
      /lib/ld-linux-armhf.so.3                      regular file
      
      There are two *copies* of the dynamic linker as well as two symlinks
      to one or the other of them.
      
      After this commit, the initramfs contains:
      
      /lib/arm-linux-gnueabihf/ld-2.28.so           regular file
      /lib/arm-linux-gnueabihf/ld-linux-armhf.so.3  link to ld-2.28.so
      /lib/ld-linux-armhf.so.3                      link to arm-linux-gnueabihf/ld-2.28.so
      
      The /lib/…/ld-linux.so.3 symlink is no longer created, because Debian
      armhf binaries all use /lib/ld-linux-armhf.so.3 as the interpreter
      path, but it would be created if we ever switched over.
      
      Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
      a9e5169f
    • Ben Hutchings's avatar
      mkinitramfs: Remove special case for Arm OABI ports · 2b55aca6
      Ben Hutchings authored
      
      This reverts commit 879602b2.  The
      arm (OABI little-endian) port was replaced by armel and was last
      released in Debian 5.0.  The armeb (OABI big-endian) port never made
      it into a Debian release and has died off completely.
      
      Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
      2b55aca6
    • Ben Hutchings's avatar
      mkinitramfs: Remove workaround for old udev versions · 9d8b6908
      Ben Hutchings authored
      
      Remove the temporary hack introduced by commit ab913066 "init:
      Take over handling of rootdelay parameter from udev boot script".
      
      Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
      9d8b6908
  8. Dec 10, 2019
  9. Nov 19, 2019
  10. Nov 18, 2019
  11. Oct 27, 2019
Loading