diff options
author | Karel Kočí <cynerd@email.cz> | 2015-09-25 15:24:03 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-09-25 15:32:29 +0200 |
commit | f1bd89f141acb53333135c86940d1d1c0549b4bd (patch) | |
tree | db7ffdebebc0a1b0b6226029de2185630a68512a /tests/cyclictest/root/GNUmakefile | |
parent | 47669028715fd1319219862e12a4ad5698409a6b (diff) | |
download | linux-conf-perf-f1bd89f141acb53333135c86940d1d1c0549b4bd.tar.gz linux-conf-perf-f1bd89f141acb53333135c86940d1d1c0549b4bd.tar.bz2 linux-conf-perf-f1bd89f141acb53333135c86940d1d1c0549b4bd.zip |
Add bbb target for BeagleBone Black
Buildroot configuration is now generated from base configuration and
configuration defined by specified target. And initram is now build
automatically for test target and all target.
Diffstat (limited to 'tests/cyclictest/root/GNUmakefile')
-rw-r--r-- | tests/cyclictest/root/GNUmakefile | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/cyclictest/root/GNUmakefile b/tests/cyclictest/root/GNUmakefile index 7ad6850..3b45403 100644 --- a/tests/cyclictest/root/GNUmakefile +++ b/tests/cyclictest/root/GNUmakefile @@ -1,4 +1,5 @@ # Automatically generated by /home/wsh/students/kocikare/linux-conf-perf/buildroot/support/scripts/mkmakefile: don't edit +export SRCARCH=$(CONF_KERNEL_ARCH) lastword = $(word $(words $(1)),$(1)) makedir := $(dir $(call lastword,$(MAKEFILE_LIST))) @@ -10,11 +11,22 @@ MAKEFLAGS += --no-print-directory .PHONY: all $(MAKECMDGOALS) -all := $(filter-out Makefile,$(MAKECMDGOALS)) +all := $(filter-out Makefile .config,$(MAKECMDGOALS)) _all: $(MAKE) $(MAKEARGS) $(all) +-include ../../../.conf.mk + +../../../.conf.mk: + $(MAKE) -C ../../../ .conf.mk + +_all: .config +.config: config_base ../../../$(CONF_TEST_CONFIG_CYCLICTEST) + cp config_base .config + cat ../../../$(CONF_TEST_CONFIG_CYCLICTEST) >> .config + yes "" | make oldconfig + Makefile:; $(all): _all |