Change log for hw-detect package in Debian

175 of 92 results
Published in sid-release
hw-detect (1.160) unstable; urgency=medium

  * Team upload

  [ Updated translations ]
  * Croatian (hr.po) by Milo Ivir
  * Romanian (ro.po) by NicolaeFericitu

 -- Holger Wansing <email address hidden>  Sat, 23 Sep 2023 22:25:39 +0200
Published in bookworm-release
Published in sid-release
hw-detect (1.159) unstable; urgency=medium

  * Team upload

  [ Updated translations ]
  * Norwegian Nynorsk (nn.po) by Yngve Spjeld-Landro

 -- Holger Wansing <email address hidden>  Tue, 23 May 2023 22:22:00 +0200
Superseded in sid-release
hw-detect (1.158) unstable; urgency=medium

  [ Pascal Hambourg ]
  * Restore support for firmware license prompts (Closes: #1033921).

  [ Cyril Brulebois ]
  * Pick Pascal's minimal patch (duplicating standard input) to implement
    the aforementioned fix for Bookworm, and postpone reworking the loop
    until the next development cycle begins (See: #1035356, #1029843).

 -- Cyril Brulebois <email address hidden>  Thu, 11 May 2023 23:14:28 +0200
Superseded in sid-release
hw-detect (1.157) unstable; urgency=medium

  * Team upload

  [ Updated translations ]
  * Norwegian Nynorsk (nn.po) by Kjetil Sørlund
  * Polish (pl.po) by Matthaiks

 -- Holger Wansing <email address hidden>  Tue, 09 May 2023 21:59:55 +0200
Superseded in sid-release
hw-detect (1.156) unstable; urgency=medium

  [ Updated translations ]
  * Macedonian (mk.po) by Kristijan Fremen Velkovski

 -- Cyril Brulebois <email address hidden>  Wed, 26 Apr 2023 01:39:26 +0200
Superseded in sid-release
hw-detect (1.155) unstable; urgency=medium

  [ Cyril Brulebois ]
  * Deduplicate the list of requested firmware files, not just the list of
    requesting modules (Closes: #1031631).
  * Implement microcode support when /proc/cpuinfo contains a vendor_id
    field, with one of the following values (Closes: #1029804):
     - Install amd64-microcode on AuthenticAMD.
     - Install intel-microcode on GenuineIntel.
     - Enable non-free-firmware accordingly.
     - Perform installation via finish-install, making sure apt-setup has
       been configured, and using apt-install for dependency resolution.
  * Optimize firmware package installation: process dpkg triggers once,
    after all packages have been installed (i.e. install-firmware only
    triggers a single update-initramfs call).
  * Fix condition around moutmedia calls (See: #1032377).
  * Fix files removal for non-accepted firmware packages (See: #1032377).
  * Add a special case for the mhi module: when the module requesting
    firmware files is “mhi”, use the modules listed as holders (e.g.
    ath11k_pci and qrtr_mhi). This is less precise than the usb special
    case, since /sys/bus/mhi/devices/<device> gives no hints as to which
    network module would be involved (See: #1032140). Thanks to Nicolas
    Dandrimont and Benoît Chauvet for the tests.
  * Adjust dmesg timestamp management: only update the timestamp file if
    there are new lines.
  * Fix package name extraction when removing a firmware package (e.g.
    it failed to install because it was corrupted). Regression in 1.153,
    spotted in #1032970.
  * Build /var/log/firmware-summary as a 3-column summary of firmware (and
    microcode) packages getting installed (Closes: #1029849). Those three
    columns are: package, component, and reason. The reason might be dmesg
    (check-missing-firmware), modalias (install-firmware hook), or cpu
    (install-firmware hook).

  [ Pascal Hambourg ]
  * Fix several glitches (Closes: #1033035):
     - Fix removal of temporary files in /target after installing firmware
       packages (they're in /tmp so the next reboot has been doing the
       trick until now).
     - Determine the package name by using the Package field instead of
       trusting the filename when installing firmware packages.
     - Make sure not to include the possible -n option when setting the
       IFACES variables in check-missing-firmware.

 -- Cyril Brulebois <email address hidden>  Wed, 22 Mar 2023 20:31:11 +0100
Superseded in sid-release
hw-detect (1.154) unstable; urgency=medium

  * Implement support for the hw-detect/firmware-lookup=never setting
    (Closes: #1029848):
     - It can be set on the kernel command line or via preseed.
     - It can be set via the firmware=never alias.
     - It changes check-missing-firmware's behaviour:
        + It will still scan kernel logs for missing firmware files, and
          generate log lines accordingly.
        + It will not try to load firmware packages from the installation
          image, even if firmware packages are included (as that's the
          case for official installation images starting with Bookworm).
        + It will not ask whether to load firmware from removable media.
     - It changes install-firmware's behaviour:
        + It will not copy any firmware files into the installed system.
        + It will not try to install firmware packages based on modalias
          information.
  * Reinstate “mountmedia” and “mountmedia driver” calls, even if use
    cases haven't been clarified yet (See: #1029543); but skip them during
    the first iteration:
     - The “Load missing firmware from removable media?” question hasn't
       been asked yet, so that seems better consistency-wise.
     - If firmware is found in /firmware or /cdrom/firmware, which is
       likely now that installation images include packages from
       non-free-firmware, the first iteration might be sufficient and
       skipping those calls means an improved user experience (less
       waiting).

 -- Cyril Brulebois <email address hidden>  Mon, 30 Jan 2023 02:36:59 +0100
Superseded in sid-release
hw-detect (1.153) unstable; urgency=medium

  * Add initial support for non-free-firmware, following the 2022 General
    Resolution about non-free firmware:
     - Implement firmware lookup using Contents-firmware indices. Those
       are produced by debian-cd when including firmware packages onto
       installation images, and they make it possible to map firmware
       files requested by the kernel to firmware packages and the
       components they were found in. When performing a search in a
       directory that doesn't include such Contents-firmware index, the
       already-existing code is used as a fallback, checking the contents
       of each and every *.deb package in that directory; in that case,
       the component is deduced from the Section field of the package.
     - Add support for *.component files when installing firmware packages
       based on modalias information. Those are generated alongside the
       existing *.patterns files (built from DEP-11/AppStream metadata)
       by debian-cd when including firmware packages onto installation
       images, and make it possible to map firmware packages to the
       components they were found in.
     - Use the aforementioned mechanisms to establish a list of components
       from which firmware packages were installed, making it possible to
       enable the relevant apt-setup/$component parameters (among contrib,
       non-free, and non-free-firmware). This makes sure the package
       manager's configuration includes the right components, so that
       those firmware packages can be upgraded like any other regular
       packages.
     - The end results should be official installation images with
       packages only from main and non-free-firmware (without contrib or
       non-free which used to be present in some unofficial images
       including firmware packages), configuring the installed system with
       the main component and possibly the non-free-firmware one when some
       firmare packages are needed.
  * Add a special case for the usb module: when the module requesting
    firmware files is “usb”, search the USB bus using port and device
    information to find the underlying device and the module managing
    it. Using a Realtek-based Wi-Fi dongle connected over USB as an
    example: this makes it possible to trade “usb 4-1.5” found in dmesg
    for “rtl8192cu”. Instead of trying to unload/reload the usb and
    usbcore modules (which might not even be feasible), the relevant
    network module gets reloaded instead, which should make it request its
    firmware files again, and maybe find them if some firmware packages
    have just been installed. If the lookup fails, stick to “usb”; the
    existing link up/down dance implemented by upnics (see below) might be
    sufficient for firmware files to be requested again.
  * Tweak the upnics function, trying to stop it from killing any network
    configuration that might have been set up by users, manually or via
    preseed (with many thanks to Nicolas Dandrimont):
     - Historically, to make sure network modules request the firmware
       files they might require (this might not happen at the time the
       module is loaded), each interface is brought up and down.
     - Instead, only perform the link up/down dance for interfaces that
       aren't up already (working under the assumption that their being up
       is the result of user actions, as a previous upnics call would have
       left interfaces down) and that aren't associated with a master
       interface (that happens when bonding is configured).
  * Delete support for loading udeb firmware packages (*.udeb or *.ude
    depending on the filesystem), focus on loading regular deb firmware
    packages instead. Yes, such udeb firmware packages existed… in Etch!
  * Temporarily delete support for searching firmware on external media:
     - users have always struggled with preparing such media;
     - the lookup doesn't work sufficiently well;
     - and since non-free firmware can be included directly into official
       installation images, this feature should be much less useful
       anyway.
    A detailed rationale can be found in #1029543, feedback is welcome!

 -- Cyril Brulebois <email address hidden>  Tue, 24 Jan 2023 05:12:46 +0000
Superseded in sid-release
hw-detect (1.152) unstable; urgency=medium

  * Team upload

  [ Updated translations ]
  * Amharic (am.po) by Danial Behzadi
  * Asturian (ast.po) by Danial Behzadi
  * Bengali (bn.po) by Danial Behzadi
  * Japanese (ja.po) by Norimitsu SUGIMOTO

 -- Holger Wansing <email address hidden>  Sun, 01 Jan 2023 12:38:26 +0100
Superseded in sid-release
hw-detect (1.151) unstable; urgency=medium

  * Team upload

  * Revert template change in v1.148 (that changed /etc/pcmcia/ path into
    /etc/pcmciautils/), which was done by error. Closes: #1020535.

 -- Holger Wansing <email address hidden>  Sun, 09 Oct 2022 17:34:19 +0200
Superseded in sid-release
hw-detect (1.150) unstable; urgency=medium

  * Team upload

  [ Chris Hofstaedtler ]
  * Remove experimental dmraid support.

 -- Holger Wansing <email address hidden>  Thu, 04 Aug 2022 17:54:03 +0200
Superseded in sid-release
hw-detect (1.149) unstable; urgency=medium

  * Team upload

  [ Holger Wansing ]
  * Add missing changelog entry for 1.148

  [ Debian Janitor ]
  * Add missing ${misc:Depends} to Depends for hw-detect, ethdetect,
    disk-detect, driver-injection-disk-detect, archdetect.
  * Bump debhelper from deprecated 9 to 13.
  * Set debhelper-compat version in Build-Depends.
  * Remove constraints unnecessary since buster:
    + Build-Depends: Drop versioned constraint on dpkg-dev,
      libdebian-installer4-dev and po-debconf.
    + hw-detect: Drop versioned constraint on cdebconf-udeb, di-utils, rootskel
      and udpkg in Depends.
    + ethdetect: Drop versioned constraint on cdebconf-udeb, di-utils and
      rootskel in Depends.
    + disk-detect: Drop versioned constraint on cdebconf-udeb and di-utils in
      Depends.
    + driver-injection-disk-detect: Drop versioned constraint on cdebconf-udeb
      in Depends.

  [ Updated translations ]
  * Dutch (nl.po) by Frans Spiesschaert
  * Vietnamese (vi.po) by Trần Ngọc Quân
  * Simplified Chinese (zh_CN.po) by Wenbin Lv

 -- Holger Wansing <email address hidden>  Sun, 17 Jul 2022 16:33:50 +0200
Superseded in sid-release
hw-detect (1.148) unstable; urgency=medium

  * Team upload

  [ Frédéric Bonnard ]
  * install opal-prd package on OpenPOWER machines.

  [ Holger Wansing ]
  * Path /etc/pcmcia/ has been moved to /etc/pcmciautils/ (see #980271).
    Update the template accordingly.
    + Syncing translations.

 -- Holger Wansing <email address hidden>  Sun, 02 Jan 2022 17:02:34 +0100
Published in bullseye-release
Superseded in sid-release
hw-detect (1.147) unstable; urgency=medium

  * Add support for CHECK_MISSING_FIRMWARE=0 to hw-detect. This makes it
    possible for some callers (e.g. cdrom-detect, maybe iso-scan too) to
    avoid triggering firmware-related prompts when it's too early in the
    installation process to do anything about it (See: #991587, #991590).

 -- Cyril Brulebois <email address hidden>  Wed, 28 Jul 2021 09:05:05 +0200
Superseded in bullseye-release
Superseded in sid-release
hw-detect (1.146) unstable; urgency=medium

  * Make the install-firmware script check both /firmware (PXE) and
    /cdrom/firmware (ISO) for patterns extracted from DEP-11 metadata,
    like check-missing-firmware does.

 -- Cyril Brulebois <email address hidden>  Wed, 28 Jul 2021 00:46:22 +0200
Superseded in sid-release
hw-detect (1.145) unstable; urgency=medium

  * Drop firmware-map file and surrounding logic: it never went further
    than a proof-of-concept, and we're approaching the firmware problem
    differently now (see: #989863).
  * If /firmware/dep11 is present (which should be the case starting with
    D-I Bullseye RC 3, for firmware-enabled images), query the udev
    database, extract modalias information, and use the patterns available
    under that directory to figure out which firmware packages might be
    helpful. Copy the relevant /firmware/<package>_*.deb files under
    /var/cache/firmware, and let the existing code enable non-free in
    apt-setup and install those packages in /target (see: #989863).
  * Check the actual module behind a given driver, since there might be a
    slight mismatch between the name coming up in dmesg (e.g. rtw_8821ce)
    and the actual module name (e.g. rtw88_8821ce). With many thanks to
    Daniel Lewart for the original patch (Closes: #973733).
  * Uniquify module list earlier in check-missing-firmware, to avoid
    repeating n times the same module if it requests n firmware files
    (e.g. iwlwifi).
  * Finally stop looking into the obsolete /dev/.udev/firmware-missing and
    /run/udev/firmware-missing locations, which were obsoleted upstream
    (udev) in 2013. This only generates noise in the installer's syslog.
  * When resuming parsing dmesg from a timestamp, just mention the
    timestamp in the log instead of the actual pattern, for better
    readability.
  * Set udevdir to /lib/udev/rules.d (instead of /etc/udev/rules.d), to
    appease lintian (udev-rule-in-etc).
  * Ignore iwl-debug-yoyo.bin requested by iwlwifi as it seems to be about
    debugging, it doesn't seem actually required, and it's not packaged
    anyway (see: #969264, 966218).

 -- Cyril Brulebois <email address hidden>  Tue, 27 Jul 2021 02:26:23 +0200
Superseded in bullseye-release
Superseded in sid-release
hw-detect (1.144) unstable; urgency=medium

  * Team upload

  [ Updated translations ]
  * Arabic (ar.po) by Fahim Sabah

 -- Holger Wansing <email address hidden>  Sun, 30 May 2021 22:33:19 +0200
Superseded in sid-release
hw-detect (1.143) unstable; urgency=medium

  * Team upload

  [ Updated translations ]
  * Hindi (hi.po) by KushagraKarira
  * Tamil (ta.po) by Vasudevan Tirumurti
  * Traditional Chinese (zh_TW.po) by louies0623

 -- Holger Wansing <email address hidden>  Sat, 13 Mar 2021 19:19:38 +0100

Available diffs

Superseded in sid-release
hw-detect (1.142) unstable; urgency=medium

  * Team upload

  [ Updated translations ]
  * Greek (el.po) by Vangelis Skarmoutsos
  * Basque (eu.po) by Iñaki Larrañaga Murgoitio
  * Lithuanian (lt.po) by Kornelijus Tvarijanavičius
  * Punjabi (Gurmukhi) (pa.po) by Aman ALam

  [ New translations ]
  * Kabyle (kab.po) by Slimane Selyan Amiri
  * Occitan (oc.po) by Quentin PAGÈS

 -- Holger Wansing <email address hidden>  Wed, 04 Nov 2020 19:22:45 +0100

Available diffs

Superseded in sid-release
hw-detect (1.141) unstable; urgency=medium

  * Team upload

  [ Updated translations ]
  * French (fr.po) by Baptiste Jammet
  * Icelandic (is.po) by Sveinn í Felli
  * Polish (pl.po) by Bartosz Feński

 -- Holger Wansing <email address hidden>  Sun, 20 Sep 2020 22:24:07 +0200

Available diffs

Superseded in sid-release
hw-detect (1.140) unstable; urgency=medium

  * Team upload

  [ Updated translations ]
  * Hebrew (he.po) by Yaron Shahrabani
  * Dutch (nl.po) by Frans Spiesschaert
  * Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes

 -- Holger Wansing <email address hidden>  Sun, 10 May 2020 18:03:38 +0200
Superseded in sid-release
hw-detect (1.139) unstable; urgency=medium

  * Team upload

  [ Updated translations ]
  * Czech (cs.po) by Miroslav Kure

 -- Holger Wansing <email address hidden>  Sun, 02 Feb 2020 19:08:46 +0100
Superseded in sid-release
hw-detect (1.138) unstable; urgency=medium

  * Team upload

  [ Cyril Brulebois ]
  * Remove Christian Perrier from Uploaders, with many thanks for all
    his contributions over the years! (Closes: #927504)

  [ Raphaël Hertzog ]
  * Add finish-install.d/08hw-detect.sh to install virtualization related
    packages when virtualization is detected. (Closes: #782287)

  [ Holger Wansing ]
  * Add comment for translators, to keep main menu entry below a 55 columns
    limit. This updates all po|pot files.

  [ Updated translations ]
  * Arabic (ar.po) by ButterflyOfFire
  * Croatian (hr.po) by gogogogi
  * Portuguese (pt.po) by Miguel Figueiredo

 -- Holger Wansing <email address hidden>  Sat, 12 Oct 2019 23:20:41 +0200
Published in buster-release
Superseded in sid-release
hw-detect (1.137) unstable; urgency=medium
  * Team upload

  [ Updated translations ]
  * Ukrainian (uk.po) by Anton Gladky

 -- Holger Wansing <email address hidden>  Wed, 27 Mar 2019 21:56:08 +0100
Superseded in sid-release
hw-detect (1.136) unstable; urgency=medium
  * Team upload

  [ Updated translations ]
  * Vietnamese (vi.po) by Trần Ngọc Quân

 -- Holger Wansing <email address hidden>  Wed, 06 Mar 2019 22:16:49 +0100
Superseded in buster-release
Superseded in sid-release
hw-detect (1.135) unstable; urgency=medium
  * Team upload

  * Remove trailing whitespaces from changelog file, to fix lintian tag.
  * No longer use invalid 'modprobe -l' call, replace by 'modprobe -qn' to
    query available modules (Closes: #870448).

  [ Updated translations ]
  * Danish (da.po) by Joe Hansen
  * Finnish (fi.po) by Juhani Numminen

 -- Holger Wansing <email address hidden>  Sat, 09 Feb 2019 16:22:22 +0100
Superseded in buster-release
Superseded in sid-release
hw-detect (1.134) unstable; urgency=medium

  * Team upload

  [ Updated translations ]
  * Galician (gl.po) by mantinan
  * Croatian (hr.po) by Valentin Vidic
  * Marathi (mr.po) by Nayan Nakhare

 -- Holger Wansing <email address hidden>  Tue, 30 Oct 2018 18:30:45 +0100
Superseded in buster-release
Superseded in sid-release
hw-detect (1.133) unstable; urgency=medium

  [ Cyril Brulebois ]
  * Update Vcs-{Browser,Git} to point to salsa (alioth's replacement).

  [ Updated translations ]
  * Hebrew (he.po) by Yaron Shahrabani

 -- Holger Wansing <email address hidden>  Sat, 11 Aug 2018 23:11:08 +0200
Superseded in buster-release
Superseded in sid-release
hw-detect (1.132) unstable; urgency=medium

  [ Updated translations ]
  * Indonesian (id.po) by Andika Triwidada

 -- Christian Perrier <email address hidden>  Wed, 28 Mar 2018 07:26:39 +0200
Superseded in buster-release
Superseded in sid-release
hw-detect (1.131) unstable; urgency=medium

  [ Updated translations ]
  * Hebrew (he.po) by Yaron Shahrabani
  * Tajik (tg.po) by Victor Ibragimov

 -- Christian Perrier <email address hidden>  Thu, 15 Feb 2018 06:12:46 +0100
Superseded in buster-release
Superseded in sid-release
hw-detect (1.130) unstable; urgency=medium

  [ Updated translations ]
  * Persian (fa.po) by nima sahraneshin
  * Tajik (tg.po) by Victor Ibragimov

 -- Christian Perrier <email address hidden>  Thu, 01 Feb 2018 18:21:09 +0100
Superseded in buster-release
Superseded in sid-release
hw-detect (1.129) unstable; urgency=medium

  [ Updated translations ]
  * Panjabi (pa.po) by Aman ALam
  * Serbian (sr.po) by Filipovic Dragan

 -- Christian Perrier <email address hidden>  Fri, 12 Jan 2018 15:46:39 +0100
Superseded in buster-release
Superseded in sid-release
hw-detect (1.128) unstable; urgency=medium

  [ Updated translations ]
  * Esperanto (eo.po) by Felipe Castro
  * Simplified Chinese (zh_CN.po) by Boyuan Yang

 -- Christian Perrier <email address hidden>  Sun, 24 Dec 2017 09:52:01 +0100
Superseded in buster-release
Superseded in sid-release
hw-detect (1.127) unstable; urgency=medium

  [ Updated translations ]
  * Hungarian (hu.po) by Dr. Nagy Elemér Károly
  * Lithuanian (lt.po) by Rimas Kudelis
  * Swedish (sv.po) by Anders Jonsson

 -- Christian Perrier <email address hidden>  Thu, 30 Nov 2017 21:06:57 +0100
Superseded in sid-release
hw-detect (1.126) unstable; urgency=medium

  [ Updated translations ]
  * Greek (el.po) by Sotirios Vrachas
  * Estonian (et.po) by Kristjan Räts
  * Swedish (sv.po) by Anders Jonsson

 -- Christian Perrier <email address hidden>  Sat, 25 Nov 2017 09:10:09 +0100
Superseded in buster-release
Superseded in sid-release
hw-detect (1.125) unstable; urgency=medium

  [ Updated translations ]
  * Albanian (sq.po) by Redon Skikuli

 -- Christian Perrier <email address hidden>  Sun, 17 Sep 2017 08:13:26 +0200
Superseded in buster-release
Superseded in sid-release
hw-detect (1.124) unstable; urgency=medium

  [ Updated translations ]
  * Simplified Chinese (zh_CN.po) by Yangfl

 -- Christian Perrier <email address hidden>  Mon, 26 Jun 2017 12:24:24 +0200
Superseded in buster-release
Published in stretch-release
Superseded in sid-release
hw-detect (1.123) unstable; urgency=medium

  [ Mathieu Trudel-Lapierre ]
  * disk-detect.sh: multipath-tools now generates mpath devices names in the
    form 'mpath[a-z]+', rather than 'mpath[0-9]+' (Closes: #806713, #854565).
  * disk-detect.sh: run update-dev before probing for devices
    (Closes: #843895).

  [ Cyril Brulebois ]
  * Merge the changes above, with thanks to Mathieu Trudel-Lapierre,
    Hendrik Brueckner, and Allan Jacobsen; and apologies for the delay.

 -- Cyril Brulebois <email address hidden>  Fri, 10 Feb 2017 19:13:20 +0100
Superseded in sid-release
hw-detect (1.122) unstable; urgency=medium

  * disk-detect: Stop trying to load dm-emc, since this module is long
    gone: it seems to have been removed in v2.6.27-rc1! Thanks to Allan
    Jacobsen for the report (Closes: #852285).

 -- Cyril Brulebois <email address hidden>  Sat, 04 Feb 2017 01:09:36 +0100
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.121) unstable; urgency=medium

  [ Cyril Brulebois ]
  * Update firmware-map as of 2017-01-15.

 -- Christian Perrier <email address hidden>  Mon, 16 Jan 2017 07:11:05 +0100
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.120) unstable; urgency=medium

  [ Cyril Brulebois ]
  * Update firmware-map as of 2016-11-22.

 -- Christian Perrier <email address hidden>  Tue, 06 Dec 2016 05:56:51 +0100
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.119) unstable; urgency=medium

  [ Updated translations ]
  * Turkish (tr.po) by Mert Dirik

 -- Christian Perrier <email address hidden>  Sun, 14 Aug 2016 21:52:39 +0200
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.118) unstable; urgency=medium

  [ Aurelien Jarno ]
  * Stop trying to install libc6-i686 and libc6-sparcv9b optimized
    libraries as these packages are now gone.

  [ Cyril Brulebois ]
  * Introduce a build-firmware-map script, which makes it possible to
    build a firmware->package mapping. The resulting mapping can then be
    used to inform users of firmware packages they might be interested in
    instead of letting them perform a manual lookup.
  * Update Makefile to support a "firmware-map" target to refresh this
    mapping, and to ship the mapping as /usr/share/hw-detect/firmware-map
    in the hw-detect package.

 -- Christian Perrier <email address hidden>  Tue, 24 May 2016 08:58:00 +0200
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.117) unstable; urgency=medium

  * Team upload

  [ Hendrik Brueckner ]
  * Improve and split harddrive detection into DASD and SCSI dependency
    on s390x (Closes: #818586)

 -- Philipp Kern <email address hidden>  Sun, 03 Apr 2016 11:40:24 +0200
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.116) unstable; urgency=medium

  [ Colin Watson ]
  * Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.

 -- Christian Perrier <email address hidden>  Tue, 02 Feb 2016 07:04:13 +0100
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.115) unstable; urgency=medium

  [ Colin Watson ]
  * Compress devnames-static.gz using "gzip -n" (Lintian).

 -- Christian Perrier <email address hidden>  Sun, 17 Jan 2016 21:31:03 +0100
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.114) unstable; urgency=high

  * Fix a hang during ethdetect (Closes: #803769). Thanks, Karsten Merker!

 -- Cyril Brulebois <email address hidden>  Sat, 14 Nov 2015 16:34:33 +0100
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.113) unstable; urgency=medium

  [ Ben Hutchings ]
  * ethdetect: Don't look for Linux USB net drivers under drivers/usb
  * ethdetect: Use embedded module description for modules not listed in
    devnames-static.txt
  * ethdetect: Exclude PHY drivers from list of net drivers

 -- Christian Perrier <email address hidden>  Thu, 10 Sep 2015 07:06:55 +0200
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.112) unstable; urgency=medium

  [ Updated translations ]
  * Turkish (tr.po) by Mert Dirik

 -- Christian Perrier <email address hidden>  Mon, 10 Aug 2015 08:57:22 +0200
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.111) unstable; urgency=medium

  [ Updated translations ]
  * Turkish (tr.po) by Mert Dirik

 -- Christian Perrier <email address hidden>  Sat, 25 Jul 2015 18:48:50 +0200
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.110) unstable; urgency=medium

  [ Updated translations ]
  * Turkish (tr.po) by Mert Dirik

 -- Christian Perrier <email address hidden>  Mon, 22 Jun 2015 06:53:24 +0200
Superseded in stretch-release
Superseded in sid-release
hw-detect (1.109) unstable; urgency=medium

  * No longer install acpi acpid acpi-support-base as it duplicates
    functionality which is nowadays provided by systemd/logind.
    Thanks to Michael Biebl for the notice and patch.
    Closes: #783247

 -- Christian Perrier <email address hidden>  Tue, 28 Apr 2015 07:00:05 +0200
Superseded in stretch-release
Published in jessie-release
Superseded in sid-release
hw-detect (1.108) unstable; urgency=high


  * Make sure not to look at past lines in dmesg (Closes: #779546):
    - If user supplies firmware on a USB stick, missing firmware detection
      happens again, and if dmesg hasn't received enough lines to get rid of
      old “firmware: failed to load” entries, the situation looks like it
      hasn't improved.
    - To avoid such a loop, note the timestamp of the last dmesg line after
      having scanned for such lines, and in case missing firmware detection
      runs again, use this timestamp to filter out previous lines in case it's
      still present in the new dmesg output; or use the whole dmesg output if
      that timestamp has vanished.
    - Tested successfully on bare metal with iwlwifi.

 -- Cyril Brulebois <email address hidden>  Fri, 17 Apr 2015 19:24:22 +0200
Superseded in jessie-release
Superseded in sid-release
hw-detect (1.107) unstable; urgency=low


  [ Updated translations ]
  * Danish (da.po) by Joe Hansen

 -- Christian Perrier <email address hidden>  Sun, 08 Mar 2015 08:03:17 +0100
Superseded in jessie-release
Superseded in sid-release
hw-detect (1.106) unstable; urgency=low


  [ Petter Reinholdtsen ]
  * Add more logging in check-missing-firmware, to make debugging
    easier.

 -- Christian Perrier <email address hidden>  Wed, 22 Oct 2014 08:17:49 +0200
Superseded in sid-release
hw-detect (1.105) unstable; urgency=low


  [ Petter Reinholdtsen ]
  * Change check-missing-firmware to look in dmesg for firmware requests
    as the linux kernel and udev no longer tell us via
    /dev/.udev/firmware-missing and /run/udev/firmware-missing which
    firmware files are needed (Closes: #725714).

 -- Christian Perrier <email address hidden>  Thu, 16 Oct 2014 21:43:52 +0200
Superseded in jessie-release
Superseded in sid-release
hw-detect (1.104) unstable; urgency=low


  [ Updated translations ]
  * German (de.po) by Holger Wansing

 -- Christian Perrier <email address hidden>  Thu, 25 Sep 2014 07:05:53 +0200
Superseded in sid-release
hw-detect (1.103) unstable; urgency=low


  [ Petter Reinholdtsen ]
  * Enable hardening when building archdetect.

 -- Christian Perrier <email address hidden>  Mon, 15 Sep 2014 11:25:54 +0200
Superseded in sid-release
hw-detect (1.102) unstable; urgency=low


  * Revert the archdetect vs. archdetect-udeb change (Closes: #761135).
    Reasons include:
     - Disruptive changes are not welcome so late in the release cycle
       (especially when little to nothing has to be gained).
     - No tests have been performed, since debian-installer starts
       failing to build from source.
     - Reusing a package name for a different package-type is a recipe
       for disaster.

 -- Cyril Brulebois <email address hidden>  Thu, 11 Sep 2014 08:32:43 +0200
Superseded in sid-release
hw-detect (1.101) unstable; urgency=low


  * Upload to unstable.

 -- Petter Reinholdtsen <email address hidden>  Wed, 10 Sep 2014 00:03:14 +0200
Deleted in experimental-release (Reason: None provided.)
hw-detect (1.100.0.exp.1) experimental; urgency=low


  * Improve driver injection disk support.  Adjust
    driver-injection-disk.sh to also probe disks for OEMDRV label (LP:
    #1332187).  Patch from Kent Baxley and Ubuntu.
  * Move firmware installation code to pre-pkgsel.d.  Relocate hook to
    move firmware/injected drivers' .deb packages installation from
    post-base-installer.d stage to pre-pkgsel.d stage to make sure it
    is done after any injected drivers are installed in the
    pre-pkgsel.d step (LP: #1209287, LP: #1216043).  Patch from
    Dmitrijs Ledkovs and Ubuntu.
  * Correct email address for Bart Cornelis in changelog to avoid
    lintian error.
  * Introduce archdetect deb package and archdetect(1) manual page.
    This is useful to know what setting d-i uses for architecture.
    Rename udeb to archdetect-udeb providing archdetect for backward
    compatibility, and add new archdetect binary package.  Build with
    hardening flags to ensure binary is hardened.  Based on patch from
    Colin Watson and Ubuntu.

 -- Petter Reinholdtsen <email address hidden>  Tue, 09 Sep 2014 13:00:39 +0200
Superseded in sid-release
hw-detect (1.100) unstable; urgency=low


  [ Petter Reinholdtsen ]
  * Correct detection of Macs needing to blacklist snd-aoa
    modules. This should get sound working out of the box on iMac G5
    20 and others (Closes: #650588).  Patch from Risto Suominen and
    Ben Harris.
  * Remove code trying to install the libc6-sparcv9 package on sparc,
    as the package no longer exist since wheezy. (Closes: #505829).

 -- Petter Reinholdtsen <email address hidden>  Tue, 09 Sep 2014 10:27:24 +0200
Superseded in jessie-release
Superseded in sid-release
hw-detect (1.99) unstable; urgency=medium


  [ Updated translations ]
  * Bosnian (bs.po) by Amila Valjevčić
  * Hungarian (hu.po) by Judit Gyimesi
  * Simplified Chinese (zh_CN.po) by YunQiang Su

 -- Cyril Brulebois <email address hidden>  Fri, 14 Mar 2014 15:32:19 +0100
Superseded in jessie-release
Superseded in sid-release
hw-detect (1.98) unstable; urgency=low


  [ Updated translations ]
  * Tajik (tg.po) by Victor Ibragimov

 -- Christian Perrier <email address hidden>  Sat, 14 Sep 2013 15:15:28 +0200
Superseded in sid-release
hw-detect (1.97) unstable; urgency=low


  [ Colin Watson ]
  * Merge from Ubuntu:
    - Refer to /usr/share/common-licenses/GPL-2 in debian/copyright.
    - Load xenbus_probe_frontend if we're running under the Xen hypervisor
      (LP: #857662).
    - Redirect update-dev output to /dev/null, as it is in principle
      possible for it to write to stdout and that would interfere with
      debconf.

  [ Updated translations ]
  * Tajik (tg.po) by Victor Ibragimov

 -- Christian Perrier <email address hidden>  Sat, 07 Sep 2013 07:43:20 +0200
Superseded in jessie-release
Superseded in sid-release
hw-detect (1.95) unstable; urgency=low


  [ Updated translations ]
  * Tajik (tg.po) by Victor Ibragimov

 -- Christian Perrier <email address hidden>  Fri, 16 Aug 2013 12:49:51 +0200
Superseded in jessie-release
Superseded in sid-release
hw-detect (1.94) unstable; urgency=low


  [ Dmitrijs Ledkovs ]
  * Set debian source format to '3.0 (native)'.
  * Bump debhelper compat level to 9.
  * Set Vcs-* to canonical format.

 -- Christian Perrier <email address hidden>  Sat, 13 Jul 2013 14:10:15 +0200
Superseded in jessie-release
Superseded in sid-release
hw-detect (1.93) unstable; urgency=low


  [ Updated translations ]
  * Croatian (hr.po) by Tomislav Krznar

 -- Christian Perrier <email address hidden>  Fri, 17 May 2013 19:34:43 +0200
Superseded in jessie-release
Published in wheezy-release
Superseded in sid-release
hw-detect (1.92) unstable; urgency=low


  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach

 -- Christian Perrier <email address hidden>  Mon, 10 Dec 2012 22:08:28 +0100
Superseded in sid-release
hw-detect (1.91) unstable; urgency=low


  * Replace XC-Package-Type by Package-Type in debian/control
  * Add myself to Uploaders

  [ Updated translations ]
  * Asturian (ast.po) by ivarela
  * Galician (gl.po) by Jorge Barreiro

 -- Christian Perrier <email address hidden>  Sun, 14 Oct 2012 20:39:13 +0200
Superseded in wheezy-release
Superseded in sid-release
Superseded in wheezy-release
Superseded in sid-release
hw-detect (1.90) unstable; urgency=low


  [ Updated translations ]
  * French (fr.po) by Christian Perrier
  * Croatian (hr.po) by Tomislav Krznar

 -- Christian Perrier <email address hidden>  Thu, 26 Jul 2012 02:08:00 +0200
Superseded in wheezy-release
Superseded in sid-release
hw-detect (1.89) unstable; urgency=low


  * Team upload

  [ Colin Watson ]
  * check-missing-firmware.sh: Use 'readlink -f' rather than 'realpath',
    since this is one of only two places using realpath in d-i at the
    moment.

  [ Joey Hess ]
  * check-missing-firmware: Use udpkg to get the contents of debs,
    in order to support other compression methods than gz.

  [ Updated translations ]
  * Asturian (ast.po) by Mikel González
  * Bulgarian (bg.po) by Damyan Ivanov
  * Tibetan (bo.po) by Tennom
  * Welsh (cy.po) by Dafydd Tomos
  * Estonian (et.po) by Mattias Põldaru
  * Basque (eu.po) by Piarres Beobide
  * Galician (gl.po) by Jorge Barreiro
  * Indonesian (id.po) by Mahyuddin Susanto
  * Icelandic (is.po) by Sveinn í Felli
  * Kannada (kn.po) by Prabodh C P
  * Lithuanian (lt.po) by Rimas Kudelis
  * Latvian (lv.po) by Rūdolfs Mazurs
  * Macedonian (mk.po) by Arangel Angov
  * Panjabi (pa.po) by A S Alam
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)

 -- Christian Perrier <email address hidden>  Fri, 15 Jun 2012 07:21:09 +0200
Superseded in wheezy-release
Superseded in sid-release
hw-detect (1.88) unstable; urgency=low


  [ Milan Kupcevic ]
  * discover-mac-io.sh: Detect OHare, Heathrow/Paddington, and KeyLargo ATA
    controllers to support transition from formerly compiled-in ide-pmac driver
    to pata_macio module. Ref: #636269.

  [ Joey Hess ]
  * check-missing-firmware.sh: Add a special case for USB devices, for
    which the devpath provided from firmware.agent claims to be for the
    usbcore module. Search through subdirectories of the devpath to find
    the actual driver module for the USB hardware. Closes: #648631
    (Thanks, Brian Potkin, for testing the fix.)

 -- Joey Hess <email address hidden>  Thu, 17 Nov 2011 12:38:54 -0400
Superseded in wheezy-release
Superseded in sid-release
hw-detect (1.87) unstable; urgency=low
  [ Jurij Smakov ]  * check-missing-firmware.sh: support new missing firmware directory    location (/run/udev/firmware-missing) in addition to the old one. -- Jurij Smakov <email address hidden>  Thu, 23 Jun 2011 20:55:23 +0100
Superseded in wheezy-release
Published in squeeze-release
hw-detect (1.84+squeeze2) squeeze; urgency=low
  * No-changes upload to get rid of the .git directory in the source package. -- Julien Cristau <email address hidden>  Sat, 12 Mar 2011 11:44:49 +0100
175 of 92 results