diff options
author | Karel Kočí <cynerd@email.cz> | 2015-04-26 10:52:45 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-04-26 10:52:45 +0200 |
commit | 295254195ce053b027c02042db928e89fa078593 (patch) | |
tree | 6e81ffdc41913750d9307090e8eb019a82bad93a /Makefile | |
parent | 1f88ee3ca518bf5ee8b11f78d8dbc7b38428f4a7 (diff) | |
download | linux-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-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |