remove unneeded Kconfig.local handling
This commit is contained in:
parent
a834656fef
commit
9c5b5a54e2
1 changed files with 0 additions and 12 deletions
|
@ -17,17 +17,6 @@ let writeConfig = name : config: writeText name
|
|||
config
|
||||
));
|
||||
kconfigFile = writeConfig "kconfig" (config // checkedConfig);
|
||||
# KLUDGE FIXME. some symbols we need to enable in some configurations don't
|
||||
# have a prompt (!), so we can't turn them on just by adding FOO=y and make oldconfig
|
||||
#
|
||||
# (!) yes, that was my reaction too
|
||||
kconfigLocal = writeText "Kconfig.local" ''
|
||||
config LIMINIX
|
||||
prompt "Local symbols"
|
||||
bool
|
||||
default y
|
||||
select SOC_QCA955X
|
||||
'';
|
||||
checkedConfigFile = writeConfig "checked_kconfig" checkedConfig ;
|
||||
inherit lib; in
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -81,7 +70,6 @@ stdenv.mkDerivation rec {
|
|||
export KBUILD_OUTPUT=`pwd`
|
||||
cp ${kconfigFile} .config
|
||||
cp ${kconfigFile} .config.orig
|
||||
cp ${kconfigLocal} Kconfig.local
|
||||
make V=1 olddefconfig
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue