diff options
author | Karel Kočí <cynerd@email.cz> | 2015-07-24 10:29:21 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-07-24 10:29:21 +0200 |
commit | 774d1f1e287a9face4b9dda707c49c24fe62074e (patch) | |
tree | d9b62b1deab9d304b56617f24fef9d82c29cd193 /Makefile | |
parent | 2d887e3e5563ba478ff17e106f7a5c629880bcc3 (diff) | |
download | linux-conf-perf-774d1f1e287a9face4b9dda707c49c24fe62074e.tar.gz linux-conf-perf-774d1f1e287a9face4b9dda707c49c24fe62074e.tar.bz2 linux-conf-perf-774d1f1e287a9face4b9dda707c49c24fe62074e.zip |
Add dot_config target to root Makefile
allconfig is used for generating full configuration.
In default is this file expected in root project directory with name dot_config.
User should remove configuration options that should be measured.
So dot_config file should contains only configuration options with fixed value.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -40,6 +40,10 @@ mlinux: deflinux: ARCH=$(CONF_KERNEL_ARCH) $(MAKE) -C linux defconfig +dot_config: allconfig + cd linux && SRCARCH=$(CONF_KERNEL_ARCH) ARCH=$(CONF_KERNEL_ARCH) KERNELVERSION=$(CONF_KERNEL_ARCH) \ + ../scripts/allconfig/allconfig Kconfig .config ../$(CONF_DOT_CONFIG) + init: initialize initialize: parse_kconfig picosat scripts/initialize.py |