Commit e8d33596 authored by magicquark's avatar magicquark
Browse files

linuxPackages.rtl8812au: mark broken on kernel versions < 5.10 and > 6.14

- On Hydra, builds for kernel version  5_10, 5_15, 6_1, 6_6 and 6_12
  succeed, but the build for the latest latest kernel version 6_17 is
  failing.

- The upstream provider of the driver only supports kernel versions
  between version 5.10 and 6.14, inclusive. This is partly because a
  driver has been up-streamed into the kernel, so the package is not
  needed for recent drivers.

  [Reference](https://github.com/morrownr/8812au-20210820.)

- Because of this, mark the driver as broken on the relevant kernel
  versions.
parent 92ebba65
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -60,5 +60,6 @@ stdenv.mkDerivation {
    license = licenses.gpl2Only;
    platforms = platforms.linux;
    maintainers = with maintainers; [ moni ];
    broken = kernel.kernelOlder "5.10" || kernel.kernelAtLeast "6.15";
  };
}