Unverified Commit 12475801 authored by Adam Joseph's avatar Adam Joseph Committed by GitHub
Browse files

Merge pull request #228018 from amjoseph-nixpkgs/pr/fix/224694

lib/systems: strip kernel to avoid reference cycles
parents 4d92ffb3 2458c94c
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -373,11 +373,20 @@ stdenv.mkDerivation ({

    # Remove reference to kmod
    sed -i Makefile -e 's|= ${buildPackages.kmod}/bin/depmod|= depmod|'
  ''
  # unfortunately linux/arch/mips/Makefile does not understand installkernel
  # and simply copies to $(INSTALL_PATH)/vmlinux-$(KERNELRELEASE)
  + lib.optionalString stdenv.hostPlatform.isMips ''
    mv $out/vmlinux-* $out/vmlinux || true
    mv $out/vmlinuz-* $out/vmlinuz || true
    mv $out/System.map-* $out/System.map
  '';

  preFixup = ''
    # Don't strip $dev/lib/modules/*/vmlinux
    stripDebugList="$(cd $dev && echo lib/modules/*/build/*/)"
  '' + lib.optionalString (stdenv.hostPlatform.isMips) ''
    $STRIP -s $out/vmlinux || true
  '';

  enableParallelBuilding = true;