Created
August 8, 2014 03:30
-
-
Save abraithwaite/90c17dbb45d0d6aa977a to your computer and use it in GitHub Desktop.
Deterministic Linux Builds
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export INSTALL_MOD_STRIP=-s | |
export KBUILD_BUILD_TIMESTAMP=0 | |
export KBUILD_BUILD_USER=root | |
export KBUILD_BUILD_HOST=localhost | |
make mrproper | |
make allnoconfig | |
make -j4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment