forked from mirrors/nixpkgs
Disable IMA because of conflict with aufs
svn path=/nixpkgs/trunk/; revision=17051
This commit is contained in:
parent
491255bbb3
commit
ec57ec6d6f
|
@ -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}
|
||||
'';
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue