3
0
Fork 0
forked from mirrors/nixpkgs

Disable IMA because of conflict with aufs

svn path=/nixpkgs/trunk/; revision=17051
This commit is contained in:
Michael Raskin 2009-09-11 13:50:40 +00:00
parent 491255bbb3
commit ec57ec6d6f

View file

@ -22,8 +22,20 @@ in
};
preConfigure = ''
killOption () {
sed -re "s/$1=[ym]/# $1 is not set" -i .config
}
setOptionMod () {
sed -re "s/# $1 is not set/$1=m" -i .config
}
setOptionYes () {
sed -re "s/# $1 is not set/$1=y" -i .config
}
make allmodconfig
killOption CONFIG_IMA
cp .config ${config}
'';
})