|
@@ -33,17 +33,9 @@ silentoldconfig: $(obj)/conf
|
|
|
$(Q)mkdir -p include/generated
|
|
|
$< --$@ $(Kconfig)
|
|
|
|
|
|
-# if no path is given, then use src directory to find file
|
|
|
-ifdef LSMOD
|
|
|
-LSMOD_F := $(LSMOD)
|
|
|
-ifeq ($(findstring /,$(LSMOD)),)
|
|
|
- LSMOD_F := $(objtree)/$(LSMOD)
|
|
|
-endif
|
|
|
-endif
|
|
|
-
|
|
|
localmodconfig: $(obj)/streamline_config.pl $(obj)/conf
|
|
|
$(Q)mkdir -p include/generated
|
|
|
- $(Q)perl $< $(srctree) $(Kconfig) $(LSMOD_F) > .tmp.config
|
|
|
+ $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config
|
|
|
$(Q)if [ -f .config ]; then \
|
|
|
cmp -s .tmp.config .config || \
|
|
|
(mv -f .config .config.old.1; \
|
|
@@ -58,7 +50,7 @@ localmodconfig: $(obj)/streamline_config.pl $(obj)/conf
|
|
|
|
|
|
localyesconfig: $(obj)/streamline_config.pl $(obj)/conf
|
|
|
$(Q)mkdir -p include/generated
|
|
|
- $(Q)perl $< $(srctree) $(Kconfig) $(LSMOD_F) > .tmp.config
|
|
|
+ $(Q)perl $< $(srctree) $(Kconfig) > .tmp.config
|
|
|
$(Q)sed -i s/=m/=y/ .tmp.config
|
|
|
$(Q)if [ -f .config ]; then \
|
|
|
cmp -s .tmp.config .config || \
|