aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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