initramfs-tools 0.140ubuntu1 source package in Ubuntu

Changelog

initramfs-tools (0.140ubuntu1) impish; urgency=low

  * Merge from Debian unstable. Remaining changes:
    - Make busybox-initramfs a real runtime dependency, fixing
      kernel install failures with cryptsetup
    - support mounting of loopback devices via loop*= parameters
    - Drop hooks/keymap, scripts/init-top/keymap, and associated code;
      console-setup takes care of this in Ubuntu.
    - Add a new 'fixrtc' script that tries to set the system clock forward
      based on the last mount time of the root disk; without this kludge,
      systems without a working RTC will end up in a perpetual reboot loop.
    - Trim leading whitespaces in dumpe2fs output so date command
      is happy in the fixrtc script
    - Set hostname at boot, for the benefit of mdadm autoassembly.
    - Allow scripts and hooks to specify OPTION=VAR, and unless VAR is set
      to something other than "n", the script will not be included.
    - Restore the framebuffer hook and script, copying KMS and other
      framebuffer drivers into the initramfs, but make them optional; you
      need to set FRAMEBUFFER=y for these to be included.
    - Add hwaddr= alias for BOOTIF= for compatibility.
    - Automatically blacklist vga16fb when vga= or video= specified on
      kernel command-line.
    - add squashfs to list of 'most' modules
    - Add vfat and nls modules to the initramfs.
    - Add Hyper-V paravirtualised device drivers to the initramfs to allow
      booting of stock images in a Hyper-V guest.
    - ppc64el: enable PowerPC NX Crypto Coprocessor
    - resume: only resume when the partition contains a resume image
    - Fix resuming a hibernate session from a swapfile
    - Add new initramfs-tools-bin package containing a binary that uses
      libudev to wait for udev to create the udev device, or wait for udev
      to finish processing if we catch it in the act, and returns the
      filesystem type as already probed by udev.
    - Don't recommend pigz, which is in universe.
    - local_device_setup: use wait-for-root if it supports the device alias
      type
    - debian/control: update Vcs-* links for Ubuntu.
    - Add support for uppercase and lowercase uuids.
    - init: Don't interpret "rootdelay" as a static sleep.
    - src/wait-for-root.c, scripts/local: add explicit support for PARTUUID, a
      syntax we may prefer for images that might boot without an initramfs.
      (previously unnoted)
    - scripts/local: Let rootdelay determine the wait-for-root timeout.
    - Increase rootdelay to 180s on powerpc/ppc64/ppc64el
    - Support roottimeout= as the authoritative name for rootdelay= since
      the Ubuntu interpretation of rootdelay is *not* a delay and this
      causes inconsistent behavior depending on whether the kernel or an
      initramfs is interpreting it.
    - scripts/functions: by default, when setting up networking, use dhclient
      if we're asked to do DHCP explicitly, or if we otherwise are expected
      to do things automatically.
    - scripts/functions: make sure we can try to start all available and
      suitable interfaces if ip= isn't set when setting up the network, and
      exit as soon as we get an IP address.
      - split out IPv6 options in its own cmdline parameter: ip6= ; always use
        dhclient in this case if the value set is anything other than 'off' or
        'none'. Furthermore, parse anything other than 'on', 'dhcp' or 'any'
        as the name of an interface.
      - rework the stop conditions so that we properly handle the ROUNDTTT
        loop, timing out after a short period of time and trying again after
        a short sleep.
      - add a 'done' parameter for both ip= and ip6= so that we can properly
        exit the ROUNDTTT loop once we know that either there is no work to
        do, or that we've achieved what we wanted (that is, to bring up IPv4,
        IPv6, or possibly both).
      - return ip=dhcp to the ipconfig use case; if set, then ipconfig will
        be run using any interface available, or the BOOTIF if it was set.
      - Just let dhclient scan the interfaces if none is specified for IPv6.
        (previously unnoted)
      - Do not handle ip=rarp specially (ipconfig hasn't supported it for
        some time)
      - Call dhclient in simple cases for IPv4 (this makes some small
        observable changes -- for example ip=bootp will now make a DHCP
        request too -- but nothing that seems important).
      - Do not let dhclient processes hang around past the pivot and have
        them respect the shorter timeouts ipconfig was given.
    - Only source ipv4 config in configure_networking() if it exists.
      (previously unnoted)
    - hook-functions, mkinitramfs, scripts/functions: support usage of dns
      after configure_networking.
    - Run unittests during autopkgtests.
    - Add some autopkgtests for the network configuration processing.
    - scripts/functions: write netplan config files to /run/netplan for
      network devices configured with configure_networking.
    - Adjust testsuite for correct expected netplan output.
    - Add tests to parse netplan.yaml with netplan generate.
    - Skip setting mac-address, unless unsupported unpredictable netnames
      are used.
    - scripts/functions:_render_netplan(): Make configure_networking()
      more resilient when called by set -e scripts.
    - scripts/functions: include a new option to skip enslaved network
      devices.
    - Auto activate qeth devices on s390x hosts, when using ip= ip6= command
      lines.
    - Add support for creating VLANs via vlan=eth0.1:eth0 on kernel
      commandline, and as VLAN= conf.d snippet.
    - Emit empty dictionary in the ethernets section, for static vlan
      configs without any matches, as otherwise it is invalid config.
    - Skip attempting to chzdev enable VLAN device
    - Drop renderer from netplan yaml, such that netplan uses the default
      rendered for the target system, i.e. NetworkManager on the
      desktop.
    - Switch default initramfs compression to lz4, faster than the current
      default gzip.
    - debian/{control,rules}: Don't run shellcheck on i386 to avoid pulling
      ghc into our minimal supported set for the pruned architecture.
    - Work out the kernel modules required to support ZFS filesystems and
      add them as necessary.
    - Add modules for nvme path components on multipath nvme.
    - debian/initramfs-tools.postinst: remove orphaned old-dkms initrd files
      in /boot.
    - Suppress shellcheck SC1010 errors, returning lots of false-positives on
      use of 'done' as a word.
    - Ensure we have a /usr/sbin directory in initramfs-tools-core
      (previously unnoted)
    - Drop usage of klibc-utils' fstype in favor of always using udev blkid.
    - Use set -a/+a around loading conf snippets, to autoexport hook
      configuration variables. This thus allows packaged hooks to configure
      each other.
    - Fix PATH to include /usr/local.
    - Revert upstream commit 0012977; Ubuntu's resume script implementation
      diverges from Debian's and this special-case handling of UUID (which is
      used as the resume target in the default scenario) is required here.
    - Filter out looping or broken symlinks from the initramfs, since they
      cause cpio to explode
      (previously unnoted)
    - Always mount loop-mount filesystems read-write; ntfs-3g and vfat can't
      remount yet.
      (previously unnoted)
    - Provide a clearer error on mount failure of the Windows host filesystem
      (previously unnoted)
    - Fix copying libgcc_s when there is optimized pthreads installed.
    - scripts/local: Re-execute cryptroot local-block script.
    - d/tests: Add explicit call to partprobe on net test, specially in
      prep-image and run-image.
    - Revised mountroot failure support.  This is now deprecated and
      effectively removed.  However, to prevent breakage in other packages
      the add_mountroot_fail_hook function is still present as an empty
      stub.
    - scripts/local-premount/resume: Use readlink -f to correctly handle
      non-symlink $resume
    - d/t/control:autopkgtests running qemu need root, add needs-root
      restriction
    - hook-functions: when MODULES=list there will be no 'kernel' dir, so
      don't try to find anything there, as it will log an 'error' this is
      needed for amd64-ata-only autopkgtest to pass, or we would need to
      ignore the 'error' with allow-stderr
    - hooks/fsck: always include fsck binaries irrespective of PASSNO value,
      otherwise initrds fail to mount rootfs and have no ability to fix the
      rootfs.

initramfs-tools (0.140) unstable; urgency=medium

  [ Norbert Lange ]
  * mkinitramfs: use temporary file for uncompressed cpio

  [ Michael Prokop ]
  * mkinitramfs: report actually requested compress util if it's not present

  [ Ben Hutchings ]
  * init: Mount /dev without the noexec option

  [ dann frazier ]
  * configure_networking(): Wait for specified network device (Closes: #965935)

  [ Bastian Blank ]
  * Include all PCI controller modules
  * Include all reset controller modules

 -- Steve Langasek <email address hidden>  Thu, 29 Apr 2021 08:57:03 -0700

Upload details

Uploaded by:
Steve Langasek
Uploaded to:
Impish
Original maintainer:
Ubuntu Developers
Architectures:
any all
Section:
utils
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
initramfs-tools_0.140ubuntu1.tar.xz 130.2 KiB ace6e769af6bcfbfd41580370a778a0c803a757ff45dd0fa2f36d719e2935f74
initramfs-tools_0.140ubuntu1.dsc 2.3 KiB ff57b8b01fe029b4b43e9f63cf3ea631961c56c3d9432d0dc1ebad9159547b3b

Available diffs

View changes file

Binary packages built by this source

initramfs-tools: No summary available for initramfs-tools in ubuntu impish.

No description available for initramfs-tools in ubuntu impish.

initramfs-tools-bin: No summary available for initramfs-tools-bin in ubuntu impish.

No description available for initramfs-tools-bin in ubuntu impish.

initramfs-tools-bin-dbgsym: No summary available for initramfs-tools-bin-dbgsym in ubuntu impish.

No description available for initramfs-tools-bin-dbgsym in ubuntu impish.

initramfs-tools-core: No summary available for initramfs-tools-core in ubuntu impish.

No description available for initramfs-tools-core in ubuntu impish.