Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
base: 7098bcac278a
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 29b84841d2a8
Choose a head ref
  • 4 commits
  • 2 files changed
  • 1 contributor

Commits on Jul 24, 2018

  1. kernel: Remove empty preUnpack

    dezgeg committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    e0ce4be View commit details
    Browse the repository at this point in the history
  2. kernel: Remove dead code

    It's set in the same phase
    dezgeg committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    c6ed851 View commit details
    Browse the repository at this point in the history
  3. kernel: Respect makeFlagsArray in more places

    It's used two lines above, so be consistent.
    dezgeg committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    4cec654 View commit details
    Browse the repository at this point in the history
  4. kernel: Reduce peak disk usage during build

    Since commit f620b1b, the build directory is located inside the
    source directory. Thus, the `cp -dpR` copies gigabytes worth of .o files
    only to be deleted later on when we trim all non-essential files from
    `$dev/lib/modules/${modDirVersion}/source/` thus causing a significant
    amount of wasted I/O and peak disk usage.
    
    As `cp` doesn't come with a `--exclude` flag, use rsync. And throw out
    the Documentation folder while at it.
    dezgeg committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    29b8484 View commit details
    Browse the repository at this point in the history