aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-04-26 10:52:45 +0200
committerKarel Kočí <cynerd@email.cz>2015-04-26 10:52:45 +0200
commit295254195ce053b027c02042db928e89fa078593 (patch)
tree6e81ffdc41913750d9307090e8eb019a82bad93a /Makefile
parent1f88ee3ca518bf5ee8b11f78d8dbc7b38428f4a7 (diff)
downloadlinux-conf-perf-295254195ce053b027c02042db928e89fa078593.tar.gz
linux-conf-perf-295254195ce053b027c02042db928e89fa078593.tar.bz2
linux-conf-perf-295254195ce053b027c02042db928e89fa078593.zip
Add target deflinux to root Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5ecbfe3..2747982 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,8 @@ help:
@echo " buildroot configuration."
@echo "mlinux - Calls 'make menuconfig' in linux folder. Use this for linux"
@echo " configuration."
+ @echo "deflinux - Executes 'make defconfig' in linux folder. This generates default"
+ @echo " linux configuration for architecture specified in conf.py"
@echo "test - Executes boot and benchmark test. You should use this before"
@echo " target run. This target is for testing if initial kernel"
@echo " configuration, buildroot configuration and benchmark are"
@@ -28,6 +30,9 @@ mbuildroot:
mlinux:
ARCH=$(SRCARCH) $(MAKE) -C linux menuconfig
+deflinux:
+ ARCH=$(SRCARCH) $(MAKE) -C linux defconfig
+
test: build/initram.gz
@ #TODO