nixpkgs-suyu/pkgs/os-specific/linux/kernel/builder.sh
Armijn Hemel 30632d1655 install kernel in the store (whoops, forgot to install modules :S )
svn path=/nixpkgs/trunk/; revision=3183
2005-06-15 14:21:48 +00:00

12 lines
172 B
Bash

. $stdenv/setup
buildPhase() {
cp $config .config
echo "export INSTALL_PATH=$out" >> Makefile
export INSTALL_MOD_PATH=$out
make
}
buildPhase=buildPhase
genericBuild