12 lines
175 B
Bash
12 lines
175 B
Bash
|
. $stdenv/setup
|
||
|
|
||
|
preBuild() {
|
||
|
kernelhash=$(ls $kernel/lib/modules)
|
||
|
echo $kernelhash
|
||
|
ln -s $kernel/lib/modules/$kernelhash/build linux
|
||
|
}
|
||
|
|
||
|
preBuild=preBuild
|
||
|
|
||
|
genericBuild
|